[dts] [PATCH V1] framework/packet: remove the set of conf.use_pcap

lihong lihongx.ma at intel.com
Tue Jun 4 00:22:02 CEST 2019


when set scapy conf.use_pcap=True,
in scapy 2.2 and 2.3, it will affect the sniff and rdpcap method,
it will use the libpcap to read packet.
in scapy 2.4, it will affect the sendp method, it will use module
in pcapy, so you should upgrade pcapy to 0.11.3 if you want to set
the conf.use_pcap to True.
But after try, find it is not necessary to set the conf.use_pcap to
True, it no effect to our cases. so remove the config in the file,
that we no need to do anything after upgrade scapy.

Signed-off-by: lihong <lihongx.ma at intel.com>
---
 framework/packet.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/framework/packet.py b/framework/packet.py
index 4d872fd..97344cd 100755
--- a/framework/packet.py
+++ b/framework/packet.py
@@ -45,7 +45,6 @@ from uuid import uuid4
 from settings import FOLDERS
 
 from scapy.config import conf
-conf.use_pcap = True
 
 import struct
 from socket import AF_INET6
-- 
2.7.4



More information about the dts mailing list