blob: 86851c99d819ff9d4f55988d1517f7286aace42b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
from trex_stl_lib.trex_stl_hltapi import STLHltStream
class STLS1(object):
'''
Default Eth/802.1Q/IP/TCP stream without VM
'''
def get_streams (self, direction = 0, **kwargs):
return STLHltStream(l2_encap = 'ethernet_ii_vlan',
l3_protocol = 'ipv4', l4_protocol = 'tcp',
direction = direction)
# dynamic load - used for trex console or simulator
def register():
return STLS1()
|