From 8898b74ac605224ff254e66308ef68a133360bf5 Mon Sep 17 00:00:00 2001
From: imarom <imarom@cisco.com>
Date: Thu, 2 Jun 2016 14:17:38 +0300
Subject: remove TCPDUMP run from scapy

---
 .../external_libs/scapy-2.3.1/python2/scapy/arch/linux.py | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

(limited to 'scripts/external_libs/scapy-2.3.1/python2')

diff --git a/scripts/external_libs/scapy-2.3.1/python2/scapy/arch/linux.py b/scripts/external_libs/scapy-2.3.1/python2/scapy/arch/linux.py
index 32f0a2d1..729ab3fd 100644
--- a/scripts/external_libs/scapy-2.3.1/python2/scapy/arch/linux.py
+++ b/scripts/external_libs/scapy-2.3.1/python2/scapy/arch/linux.py
@@ -69,13 +69,14 @@ RTF_REJECT = 0x0200
 
 LOOPBACK_NAME="lo"
 
-with os.popen("tcpdump -V 2> /dev/null") as _f:
-    if _f.close() >> 8 == 0x7f:
-        log_loading.warning("Failed to execute tcpdump. Check it is installed and in the PATH")
-        TCPDUMP=0
-    else:
-        TCPDUMP=1
-del(_f)
+#with os.popen("tcpdump -V 2> /dev/null") as _f:
+#    if _f.close() >> 8 == 0x7f:
+#        log_loading.warning("Failed to execute tcpdump. Check it is installed and in the PATH")
+#        TCPDUMP=0
+#    else:
+#        TCPDUMP=1
+#del(_f)
+TCPDUMP=0
     
 
 def get_if_raw_hwaddr(iff):
-- 
cgit