From cdcc62972d42f009f55e6aeb2ca5c60c3acd75eb Mon Sep 17 00:00:00 2001 From: Dan Klein Date: Wed, 26 Aug 2015 14:27:43 +0300 Subject: added dpkt package, initial stateless client implementation --- .../python_lib/dpkt-1.8.6.2/dpkt/udp.py | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 scripts/automation/trex_control_plane/python_lib/dpkt-1.8.6.2/dpkt/udp.py (limited to 'scripts/automation/trex_control_plane/python_lib/dpkt-1.8.6.2/dpkt/udp.py') diff --git a/scripts/automation/trex_control_plane/python_lib/dpkt-1.8.6.2/dpkt/udp.py b/scripts/automation/trex_control_plane/python_lib/dpkt-1.8.6.2/dpkt/udp.py deleted file mode 100644 index 41a00e78..00000000 --- a/scripts/automation/trex_control_plane/python_lib/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) - ) -- cgit 1.2.3-korg