summaryrefslogtreecommitdiffstats
path: root/scripts/stl/udp_1pkt_pcap_relative_path.py
blob: 91b32d0fbd64d43f739e0fed6de0c6a68e396d56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from trex_stl_lib.api import *

# stream from pcap file. continues pps 10 in sec 
# path_relative_to_profile = True

class STLS1(object):

    def get_streams (self, direction = 0):
        return [STLStream(packet = STLPktBuilder(pkt ="yaml/udp_64B_no_crc.pcap",
                                                 path_relative_to_profile = True), # path relative to profile and not to loader path
                         mode = STLTXCont(pps=10)) ] #rate continues, could be STLTXSingleBurst,STLTXMultiBurst


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