summaryrefslogtreecommitdiffstats
path: root/scripts/stl/hlt/hlt_vlan_default.py
blob: 8e50eef3076fd873dcef979111ee914b73f56a32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from trex_stl_lib.trex_stl_hltapi import STLHltStream


class STLS1(object):
    '''
    Default Eth/802.1Q/IP/TCP stream without VM
    '''

    def create_streams (self, direction = 0):

        return STLHltStream(l2_encap = 'ethernet_ii_vlan',
                            l3_protocol = 'ipv4', l4_protocol = 'tcp',
                            direction = direction)

    def get_streams (self, direction = 0):
        return self.create_streams(direction = direction)

# dynamic load - used for trex console or simulator
def register():
    return STLS1()