Skip to content
Snippets Groups Projects
Commit 50209bda authored by Phil's avatar Phil
Browse files

Added layer registration to conf.layers

parent 88683fc3
No related branches found
No related tags found
No related merge requests found
......@@ -91,6 +91,15 @@ class Num2Layer:
return "\n".join(y for x,y in lst)
class LayersList(list):
def __repr__(self):
s=[]
for l in self:
s.append("%-20s: %s" % (l.__name__,l.name))
return "\n".join(s)
def register(self, layer):
self.append(layer)
class Conf(ConfClass):
......@@ -124,6 +133,7 @@ extensions_paths: path or list of paths where extensions are to be looked for
session = ""
stealth = "not implemented"
iface = get_working_if()
layers = LayersList()
checkIPID = 0
checkIPsrc = 1
checkIPaddr = 1
......
import re,time,itertools,os,random,socket
from fields import *
from config import conf
################
......@@ -118,6 +119,7 @@ class Packet_metaclass(type):
newcls = super(Packet_metaclass, cls).__new__(cls, name, bases, dct)
for f in newcls.fields_desc:
f.register_owner(newcls)
conf.layers.register(newcls)
return newcls
def __getattr__(self, attr):
for k in self.fields_desc:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment