blob: 2a36481041e765a59e0cd0534be6c67d1a227eb8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
from trex_stl_lib.api import *
import os
# stream from pcap file. continues pps 10 in sec
CP = os.path.join(os.path.dirname(__file__))
class STLS1(object):
def get_streams (self, direction = 0, **kwargs):
return [STLStream(packet = STLPktBuilder(pkt = os.path.join(CP, "yaml/udp_64B_no_crc.pcap")),
mode = STLTXCont(pps=10)) ] #rate continues, could be STLTXSingleBurst,STLTXMultiBurst
# dynamic load - used for trex console or simulator
def register():
return STLS1()
|