blob: 3dd46588d37257310c0a24cc347626b7447a7883 (
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
|
import os
from trex_stl_lib.api import *
# PCAP profile
class STLPcap(object):
def __init__ (self, pcap_file):
self.pcap_file = pcap_file
def get_streams (self, direction = 0, ipg_usec = 10.0, loop_count = 1, **kwargs):
profile = STLProfile.load_pcap(self.pcap_file, ipg_usec = ipg_usec, loop_count = loop_count)
return profile.get_streams()
# dynamic load - used for trex console or simulator
def register():
# get file relative to profile dir
return STLPcap(os.path.join(os.path.dirname(__file__), 'sample.pcap'))
|