diff options
author | Yaroslav Brustinov <ybrustin@cisco.com> | 2016-02-28 18:04:50 +0200 |
---|---|---|
committer | Yaroslav Brustinov <ybrustin@cisco.com> | 2016-02-28 18:04:50 +0200 |
commit | a9c35eacd8caebe65e8c685f9285740b2764ea21 (patch) | |
tree | d748899dc05c0fd3e6e610ca2e2acfc9ae4f075f /scripts/stl/hlt/hlt_ipv6_default.py | |
parent | 0fd006c24926377eb975eeb8885c0b4ed71db546 (diff) |
hltapi: remove default for l3_protocol and l4_protocol, add several profiles
Diffstat (limited to 'scripts/stl/hlt/hlt_ipv6_default.py')
-rwxr-xr-x | scripts/stl/hlt/hlt_ipv6_default.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/scripts/stl/hlt/hlt_ipv6_default.py b/scripts/stl/hlt/hlt_ipv6_default.py new file mode 100755 index 00000000..4cc73d6a --- /dev/null +++ b/scripts/stl/hlt/hlt_ipv6_default.py @@ -0,0 +1,25 @@ +from trex_stl_lib.trex_stl_hltapi import STLHltStream + + +class STLS1(object): + ''' + Eth/IPv6/UDP stream without VM, default values + ''' + + def create_streams (self, direction = 0): + return [STLHltStream(l3_protocol = 'ipv6', + l3_length = 150, + l4_protocol = 'udp', + 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() + + + |