diff options
Diffstat (limited to 'scripts/external_libs/dpkt-1.8.6/dpkt/udp.py')
-rw-r--r-- | scripts/external_libs/dpkt-1.8.6/dpkt/udp.py | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/scripts/external_libs/dpkt-1.8.6/dpkt/udp.py b/scripts/external_libs/dpkt-1.8.6/dpkt/udp.py deleted file mode 100644 index 0fd6334b..00000000 --- a/scripts/external_libs/dpkt-1.8.6/dpkt/udp.py +++ /dev/null @@ -1,15 +0,0 @@ -# $Id: udp.py 23 2006-11-08 15:45:33Z dugsong $ - -"""User Datagram Protocol.""" - -import dpkt - -UDP_PORT_MAX = 65535 - -class UDP(dpkt.Packet): - __hdr__ = ( - ('sport', 'H', 0xdead), - ('dport', 'H', 0), - ('ulen', 'H', 8), - ('sum', 'H', 0) - ) |