blob: 3ef7eaaaac39c43a101822b65ada0fea2fb76deb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
import os
import sys
import time
import json
import math
# update the import path to include the stateless client
root_path = os.path.dirname(os.path.abspath(__file__))
sys.path.insert(0, os.path.join(root_path, '../../automation/trex_control_plane/'))
sys.path.insert(0, os.path.join(root_path, '../../stl/'))
# aliasing
import common.trex_streams
from client_utils.scapy_packet_builder import *
import common.trex_stl_exceptions
import client.trex_stateless_client
import client.trex_stateless_sim
# client and errors
STLClient = client.trex_stateless_client.STLClient
STLError = common.trex_stl_exceptions.STLError
# streams
STLStream = common.trex_streams.STLStream
STLTXCont = common.trex_streams.STLTXCont
STLTXSingleBurst = common.trex_streams.STLTXSingleBurst
STLTXMultiBurst = common.trex_streams.STLTXMultiBurst
# packet builder
STLPktBuilder = CScapyTRexPktBuilder
# VM
STLVmFlowVar = CTRexVmDescFlowVar
STLVmWriteFlowVar = CTRexVmDescWrFlowVar
STLVmFixIpv4 = CTRexVmDescFixIpv4
# simulator
STLSim = client.trex_stateless_sim.STLSim
|