本文整理汇总了Python中error.Scapy_Exception方法的典型用法代码示例。如果您正苦于以下问题:Python error.Scapy_Exception方法的具体用法?Python error.Scapy_Exception怎么用?Python error.Scapy_Exception使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类error
的用法示例。
在下文中一共展示了error.Scapy_Exception方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: make_route
# 需要导入模块: import error [as 别名]
# 或者: from error import Scapy_Exception [as 别名]
def make_route(self, host=None, net=None, gw=None, dev=None):
if host is not None:
thenet,msk = host,32
elif net is not None:
thenet,msk = net.split("/")
msk = int(msk)
else:
raise Scapy_Exception("make_route: Incorrect parameters. You should specify a host or a net")
if gw is None:
gw="0.0.0.0"
if dev is None:
if gw:
nhop = gw
else:
nhop = thenet
dev,ifaddr,x = self.route(nhop)
else:
ifaddr = get_if_addr(dev)
return (atol(thenet), itom(msk), gw, dev, ifaddr)
示例2: __init__
# 需要导入模块: import error [as 别名]
# 或者: from error import Scapy_Exception [as 别名]
def __init__(self, filename):
self.filename = filename
try:
self.f = gzip.open(filename,"rb")
magic = self.f.read(4)
except IOError:
self.f = open(filename,"rb")
magic = self.f.read(4)
if magic == "\xa1\xb2\xc3\xd4": #big endian
self.endian = ">"
elif magic == "\xd4\xc3\xb2\xa1": #little endian
self.endian = "<"
else:
raise Scapy_Exception("Not a pcap capture file (bad magic)")
hdr = self.f.read(20)
if len(hdr)<20:
raise Scapy_Exception("Invalid pcap file (too short)")
vermaj,vermin,tz,sig,snaplen,linktype = struct.unpack(self.endian+"HHIIII",hdr)
self.linktype = linktype
示例3: add_payload
# 需要导入模块: import error [as 别名]
# 或者: from error import Scapy_Exception [as 别名]
def add_payload(self, payload):
raise Scapy_Exception("Can't add payload to NoPayload instance")
示例4: fragment
# 需要导入模块: import error [as 别名]
# 或者: from error import Scapy_Exception [as 别名]
def fragment(self, *args, **kargs):
raise Scapy_Exception("cannot fragment this packet")
示例5: sprintf
# 需要导入模块: import error [as 别名]
# 或者: from error import Scapy_Exception [as 别名]
def sprintf(self, fmt, relax):
if relax:
return "??"
else:
raise Scapy_Exception("Format not found [%s]"%fmt)