Skip to content
Snippets Groups Projects
Commit 4a9ee8b9 authored by Dirk Loss's avatar Dirk Loss
Browse files

Fixed more imports in arch.windows.__init__py

parent 5326e6c4
No related branches found
No related tags found
No related merge requests found
...@@ -3,14 +3,16 @@ ...@@ -3,14 +3,16 @@
## Copyright (C) Philippe Biondi <phil@secdev.org> ## Copyright (C) Philippe Biondi <phil@secdev.org>
## This program is published under a GPLv2 license ## This program is published under a GPLv2 license
import os,re,sys,socket import os,re,sys,socket,time
from glob import glob from glob import glob
from scapy.config import conf,ConfClass from scapy.config import conf,ConfClass
from scapy.error import Scapy_Exception,log_loading,log_runtime from scapy.error import Scapy_Exception,log_loading,log_runtime
from scapy.utils import atol from scapy.utils import atol, inet_aton, inet_ntoa, PcapReader
from scapy.base_classes import Gen,Net from scapy.base_classes import Gen, Net, SetGen
import scapy.plist as plist import scapy.plist as plist
from scapy.sendrecv import debug from scapy.sendrecv import debug, srp1
from scapy.layers.l2 import Ether, ARP
from scapy.data import MTU, ETHER_BROADCAST, ETH_P_ARP
conf.use_pcap = 1 conf.use_pcap = 1
conf.use_dnet = 1 conf.use_dnet = 1
...@@ -18,6 +20,7 @@ from scapy.arch import pcapdnet ...@@ -18,6 +20,7 @@ from scapy.arch import pcapdnet
from scapy.arch.pcapdnet import * from scapy.arch.pcapdnet import *
LOOPBACK_NAME="lo0" LOOPBACK_NAME="lo0"
WINDOWS = True
def _where(filename, dirs=[], env="PATH"): def _where(filename, dirs=[], env="PATH"):
......
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