summaryrefslogtreecommitdiffstats
path: root/scripts/external_libs
diff options
context:
space:
mode:
authorYaroslav Brustinov <ybrustin@cisco.com>2016-03-24 20:00:27 +0200
committerYaroslav Brustinov <ybrustin@cisco.com>2016-03-24 20:00:27 +0200
commit59f00264f39dfb95a62401776b4ed8c433682fa7 (patch)
tree96b5411f17faed9f62aa9e4722b29d767d502b1b /scripts/external_libs
parent4e8ce34a9ef6b8883cfed47f77c9b753e1cf4248 (diff)
gather stateful client to stf folder, create trex_client package
Diffstat (limited to 'scripts/external_libs')
-rw-r--r--scripts/external_libs/scapy-2.3.1/python2/scapy/data.py1
-rw-r--r--scripts/external_libs/scapy-2.3.1/python3/scapy/data.py1
2 files changed, 2 insertions, 0 deletions
diff --git a/scripts/external_libs/scapy-2.3.1/python2/scapy/data.py b/scripts/external_libs/scapy-2.3.1/python2/scapy/data.py
index de01cfc9..9c5bb6bd 100644
--- a/scripts/external_libs/scapy-2.3.1/python2/scapy/data.py
+++ b/scripts/external_libs/scapy-2.3.1/python2/scapy/data.py
@@ -105,6 +105,7 @@ def load_services(filename):
spaces = re.compile("[ \t]+|\n")
tdct=DADict(_name="%s-tcp"%filename)
udct=DADict(_name="%s-udp"%filename)
+ return tdct,udct
try:
f=open(filename)
for l in f:
diff --git a/scripts/external_libs/scapy-2.3.1/python3/scapy/data.py b/scripts/external_libs/scapy-2.3.1/python3/scapy/data.py
index fc92ebe2..2aded28a 100644
--- a/scripts/external_libs/scapy-2.3.1/python3/scapy/data.py
+++ b/scripts/external_libs/scapy-2.3.1/python3/scapy/data.py
@@ -105,6 +105,7 @@ def load_services(filename):
spaces = re.compile("[ \t]+|\n")
tdct=DADict(_name="%s-tcp"%filename)
udct=DADict(_name="%s-udp"%filename)
+ return tdct,udct
try:
f=open(filename)
for l in f: