Skip to content
Snippets Groups Projects
Commit fa299812 authored by Pierre Lalet's avatar Pierre Lalet
Browse files

Merge pull request #129 from guedou/SCAPY_USE_PCAPDNET

Introducing the SCAPY_USE_PCAPDNET environment variable
parents bd4bf540 2a15dfbf
No related branches found
No related tags found
No related merge requests found
......@@ -363,8 +363,8 @@ extensions_paths: path or list of paths where extensions are to be looked for
resolve = Resolve()
noenum = Resolve()
emph = Emphasize()
use_pcap = False
use_dnet = False
use_pcap = os.getenv("SCAPY_USE_PCAPDNET", "").lower().startswith("y")
use_dnet = os.getenv("SCAPY_USE_PCAPDNET", "").lower().startswith("y")
use_winpcapy = False
ipv6_enabled = socket.has_ipv6
ethertypes = ETHER_TYPES
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment