summaryrefslogtreecommitdiffstats
path: root/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_port.py
diff options
context:
space:
mode:
authorimarom <imarom@cisco.com>2017-01-26 17:26:00 +0200
committerimarom <imarom@cisco.com>2017-01-26 17:34:28 +0200
commitacf815dbf67d7a3be8fefd84eea1d25465f71136 (patch)
tree6d6b68dd250cdc910c6aa51858532b1844dae868 /scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_port.py
parent3689edf311778c8cb921db61f293db6cd43a9b14 (diff)
code review - few cleanups
Signed-off-by: imarom <imarom@cisco.com>
Diffstat (limited to 'scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_port.py')
-rw-r--r--scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_port.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_port.py b/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_port.py
index 31d752af..1ef3a8ff 100644
--- a/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_port.py
+++ b/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_port.py
@@ -492,22 +492,6 @@ class Port(object):
return self.ok()
- @owned
- def start_capture (self, pcap_filename, mode, limit):
-
- if mode != 'tx' and not self.is_service_mode_on():
- return self.err('port service mode must be enabled for performing RX capturing. Please enable service mode')
-
- params = {"handler": self.handler,
- "port_id": self.port_id,
- "mode": mode,
- "limit": limit}
-
- rc = self.transmit("start_capture", params)
- if rc.bad():
- return self.err(rc.err())
-
- return self.ok()
@writeable
def set_l2_mode (self, dst_mac):