summaryrefslogtreecommitdiffstats
path: root/scripts/stl/hlt/hlt_tcp_ranges.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/stl/hlt/hlt_tcp_ranges.py')
-rwxr-xr-xscripts/stl/hlt/hlt_tcp_ranges.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/scripts/stl/hlt/hlt_tcp_ranges.py b/scripts/stl/hlt/hlt_tcp_ranges.py
new file mode 100755
index 00000000..31edc61a
--- /dev/null
+++ b/scripts/stl/hlt/hlt_tcp_ranges.py
@@ -0,0 +1,26 @@
+from trex_stl_lib.trex_stl_hltapi import STLHltStream
+
+
+class STLS1(object):
+
+ def create_streams (self, direction = 0):
+ return [STLHltStream(tcp_src_port_mode = 'decrement',
+ tcp_src_port_count = 10,
+ tcp_src_port = 1234,
+ tcp_dst_port_mode = 'increment',
+ tcp_dst_port_count = 10,
+ tcp_dst_port = 1234,
+ name = 'test_tcp_ranges',
+ direction = direction,
+ ),
+ ]
+
+ def get_streams (self, direction = 0):
+ return self.create_streams(direction)
+
+# dynamic load - used for trex console or simulator
+def register():
+ return STLS1()
+
+
+