diff options
author | Martin Klozik <martinx.klozik@intel.com> | 2018-04-11 09:07:03 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-04-11 09:07:03 +0000 |
commit | 7e263087c47e471fff47f204e79d7fe21a56eaa9 (patch) | |
tree | e8f950b9aad97aa38bb728d06adb454ae7cf03e1 /tools/pkt_gen/xena | |
parent | a3e365e8b39e4e907870a8224a760591c7371130 (diff) | |
parent | e9ff0fdf355d26d0c171c6c1137c4beb12561233 (diff) |
Merge "trex: Add support for burst traffic type"
Diffstat (limited to 'tools/pkt_gen/xena')
-rwxr-xr-x | tools/pkt_gen/xena/xena.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/pkt_gen/xena/xena.py b/tools/pkt_gen/xena/xena.py index c8988b06..33864079 100755 --- a/tools/pkt_gen/xena/xena.py +++ b/tools/pkt_gen/xena/xena.py @@ -566,7 +566,7 @@ class Xena(ITrafficGenerator): self._xsocket.disconnect() self._xsocket = None - def send_burst_traffic(self, traffic=None, numpkts=100, duration=20): + def send_burst_traffic(self, traffic=None, duration=20): """Send a burst of traffic. See ITrafficGenerator for description @@ -577,7 +577,7 @@ class Xena(ITrafficGenerator): if traffic: self._params['traffic'] = merge_spec(self._params['traffic'], traffic) - self._start_traffic_api(numpkts) + self._start_traffic_api(traffic['burst_size']) return self._stop_api_traffic() def send_cont_traffic(self, traffic=None, duration=20): |