diff options
author | 2016-03-04 07:45:52 +0200 | |
---|---|---|
committer | 2016-03-04 07:45:52 +0200 | |
commit | 815c424d5f7939953af6b58bacbb8ce6e74e10e2 (patch) | |
tree | 19636a12fcba290f8dc8fb94e7b4b69fdd28de32 /scripts/stl/hlt/hlt_david4.py | |
parent | 126632f67323909502099b95d3f0bc66ab3b004c (diff) | |
parent | 3f35b73429cd15a76a658e9b8df3263dd7429917 (diff) |
v1.94
Diffstat (limited to 'scripts/stl/hlt/hlt_david4.py')
-rwxr-xr-x | scripts/stl/hlt/hlt_david4.py | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/scripts/stl/hlt/hlt_david4.py b/scripts/stl/hlt/hlt_david4.py index 10b5e866..2f88b329 100755 --- a/scripts/stl/hlt/hlt_david4.py +++ b/scripts/stl/hlt/hlt_david4.py @@ -10,14 +10,13 @@ class STLS1(object): MAC dst will have <mac_dst_count> number of incremental values ''' - def create_streams (self, direction = 0): + def get_streams (self, direction = 0): mac_dst_count = 10 mac_src_count = 10 pkts_per_burst = 10 intf_traffic_dst_ip = '48.0.0.1' intf_traffic_src_ip = '16.0.0.1' - - return STLHltStream( + stream = STLHltStream( #enable_auto_detect_instrumentation = 1, # not supported yet ip_dst_addr = intf_traffic_dst_ip, ip_dst_count = mac_src_count, @@ -44,9 +43,9 @@ class STLS1(object): #vlan_protocol_tag_id = '{8100 8100}', direction = direction, ) - - def get_streams (self, direction = 0): - return self.create_streams(direction) + #print stream.dump_to_profile() + #stream.dump_to_profile('stl/hlt/hlt_david4_gen.py') + return stream # dynamic load used for trex console or simulator def register(): |