blob: 66b18459629301f5038e2810f0c902877f2bb016 [file] [log] [blame]
Chetan Gaonkercfcce782016-05-10 10:10:42 -07001#
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 Gaonker3ff8eae2016-04-12 14:50:26 -070016import os,sys
17from utilities import Utilities, utilities
18from scapy.all import *
19
20#log.setLevel('INFO')
21class 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
36main = MAIN()