Chetan Gaonker | cfcce78 | 2016-05-10 10:10:42 -0700 | [diff] [blame] | 1 | # |
| 2 | # Copyright 2016-present Ciena Corporation |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | # |
Chetan Gaonker | 3ff8eae | 2016-04-12 14:50:26 -0700 | [diff] [blame] | 16 | import os,sys |
| 17 | from utilities import Utilities, utilities |
| 18 | from scapy.all import * |
| 19 | |
| 20 | #log.setLevel('INFO') |
| 21 | class MAIN(object): |
| 22 | def __init__(self): |
| 23 | global utilities |
| 24 | self.log = log |
| 25 | self.logdir = os.getenv('HOME') |
| 26 | self.logHeader = '' |
| 27 | self.utilities = utilities |
| 28 | self.TRUE = True |
| 29 | self.FALSE = False |
| 30 | self.EXPERIMENTAL_MODE = self.FALSE |
| 31 | |
| 32 | def cleanup(self): pass |
| 33 | |
| 34 | def exit(self): pass |
| 35 | |
| 36 | main = MAIN() |