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