summaryrefslogtreecommitdiffstats
path: root/scripts/stl/hlt/hlt_imix_default.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/stl/hlt/hlt_imix_default.py')
-rwxr-xr-xscripts/stl/hlt/hlt_imix_default.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/scripts/stl/hlt/hlt_imix_default.py b/scripts/stl/hlt/hlt_imix_default.py
new file mode 100755
index 00000000..607077b5
--- /dev/null
+++ b/scripts/stl/hlt/hlt_imix_default.py
@@ -0,0 +1,15 @@
+from trex_stl_lib.trex_stl_hltapi import STLHltStream
+
+
+class STLS1(object):
+
+ def get_streams (self, direction = 0, **kwargs):
+ return STLHltStream(length_mode = 'imix', rate_pps = 2,
+ l3_protocol = 'ipv4', l4_protocol = 'udp')
+
+# dynamic load - used for trex console or simulator
+def register():
+ return STLS1()
+
+
+