blob: 2f6264d9874fcdc33d991f4ae8d7dd55eadfb95b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
from trex_stl_lib.trex_stl_hltapi import STLHltStream
class STLS1(object):
'''
Eth/IPv6/UDP stream without VM, default values
'''
def get_streams (self, direction = 0, **kwargs):
return [STLHltStream(l3_protocol = 'ipv6',
l3_length = 150,
l4_protocol = 'udp',
direction = direction,
),
]
# dynamic load - used for trex console or simulator
def register():
return STLS1()
|