diff options
Diffstat (limited to 'scripts/stl/pcap.py')
-rw-r--r-- | scripts/stl/pcap.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/scripts/stl/pcap.py b/scripts/stl/pcap.py new file mode 100644 index 00000000..3dd46588 --- /dev/null +++ b/scripts/stl/pcap.py @@ -0,0 +1,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')) + + + |