mirror of https://github.com/secdev/scapy.git
- Deprecated display() method (for all objects). Use show() instead.
This commit is contained in:
parent
5b6a137e73
commit
432808196b
19
scapy.py
19
scapy.py
|
@ -21,6 +21,9 @@
|
||||||
|
|
||||||
#
|
#
|
||||||
# $Log: scapy.py,v $
|
# $Log: scapy.py,v $
|
||||||
|
# Revision 0.9.17.49 2005/03/14 12:52:41 pbi
|
||||||
|
# - Deprecated display() method (for all objects). Use show() instead.
|
||||||
|
#
|
||||||
# Revision 0.9.17.48 2005/03/14 12:48:29 pbi
|
# Revision 0.9.17.48 2005/03/14 12:48:29 pbi
|
||||||
# - Modified PacketField to stop at Padding instead of Raw
|
# - Modified PacketField to stop at Padding instead of Raw
|
||||||
# - Added PacketLenField
|
# - Added PacketLenField
|
||||||
|
@ -603,7 +606,7 @@
|
||||||
|
|
||||||
from __future__ import generators
|
from __future__ import generators
|
||||||
|
|
||||||
RCSID="$Id: scapy.py,v 0.9.17.48 2005/03/14 12:48:29 pbi Exp $"
|
RCSID="$Id: scapy.py,v 0.9.17.49 2005/03/14 12:52:41 pbi Exp $"
|
||||||
|
|
||||||
VERSION = RCSID.split()[2]+"beta"
|
VERSION = RCSID.split()[2]+"beta"
|
||||||
|
|
||||||
|
@ -1446,7 +1449,9 @@ class PacketList:
|
||||||
def nsummary(self):
|
def nsummary(self):
|
||||||
for i in range(len(self.res)):
|
for i in range(len(self.res)):
|
||||||
print "%04i %s" % (i,self.elt2sum(self.res[i]))
|
print "%04i %s" % (i,self.elt2sum(self.res[i]))
|
||||||
def display(self):
|
def display(self): # Deprecated. Use show()
|
||||||
|
self.show()
|
||||||
|
def show(self):
|
||||||
self.nsummary()
|
self.nsummary()
|
||||||
|
|
||||||
def filter(self, func):
|
def filter(self, func):
|
||||||
|
@ -1504,7 +1509,9 @@ class TracerouteResult(SndRcvAns):
|
||||||
self.hloc = None
|
self.hloc = None
|
||||||
self.nloc = None
|
self.nloc = None
|
||||||
|
|
||||||
def display(self):
|
def display(self): # Deprecated. Use show()
|
||||||
|
self.show()
|
||||||
|
def show(self):
|
||||||
|
|
||||||
return self.make_table(lambda x: x[0].sprintf("%IP.dst%:{TCP:tcp%TCP.dport%}{UDP:udp%UDP.dport%}{ICMP:ICMP}"),
|
return self.make_table(lambda x: x[0].sprintf("%IP.dst%:{TCP:tcp%TCP.dport%}{UDP:udp%UDP.dport%}{ICMP:ICMP}"),
|
||||||
lambda x: x[0].ttl,
|
lambda x: x[0].ttl,
|
||||||
|
@ -2865,7 +2872,9 @@ class Packet(Gen):
|
||||||
return self.payload.getlayer(cls)
|
return self.payload.getlayer(cls)
|
||||||
|
|
||||||
|
|
||||||
def display(self, lvl=0):
|
def display(self,*args,**kargs): # Deprecated. Use show()
|
||||||
|
self.show(*args,**kargs)
|
||||||
|
def show(self, lvl=0):
|
||||||
print "---[ %s ]---" % self.name
|
print "---[ %s ]---" % self.name
|
||||||
for f in self.fields_desc:
|
for f in self.fields_desc:
|
||||||
print "%s%-10s= %s" % (" "*lvl, f.name, f.i2repr(self,self.__getattr__(f)))
|
print "%s%-10s= %s" % (" "*lvl, f.name, f.i2repr(self,self.__getattr__(f)))
|
||||||
|
@ -3036,7 +3045,7 @@ class NoPayload(Packet,object):
|
||||||
return 0
|
return 0
|
||||||
def getlayer(self, cls):
|
def getlayer(self, cls):
|
||||||
return None
|
return None
|
||||||
def display(self, lvl=0):
|
def show(self, lvl=0):
|
||||||
pass
|
pass
|
||||||
def sprintf(self, fmt, relax):
|
def sprintf(self, fmt, relax):
|
||||||
if relax:
|
if relax:
|
||||||
|
|
Loading…
Reference in New Issue