Skip to content
Snippets Groups Projects
Commit 1d736051 authored by Pierre LALET's avatar Pierre LALET
Browse files

Remove some wildcard imports

parent 65b7e62c
No related branches found
No related tags found
No related merge requests found
...@@ -10,11 +10,15 @@ PPP (Point to Point Protocol) ...@@ -10,11 +10,15 @@ PPP (Point to Point Protocol)
""" """
import struct import struct
from scapy.packet import * from scapy.packet import Packet, bind_layers
from scapy.layers.l2 import * from scapy.layers.l2 import Ether, CookedLinux
from scapy.layers.inet import * from scapy.layers.inet import IP
from scapy.layers.inet6 import IPv6 from scapy.layers.inet6 import IPv6
from scapy.fields import * from scapy.fields import BitField, ByteEnumField, ByteField, \
ConditionalField, FieldLenField, IPField, PacketListField, \
ShortEnumField, ShortField, StrFixedLenField, StrLenField, XByteField, \
XShortField
class PPPoE(Packet): class PPPoE(Packet):
name = "PPP over Ethernet" name = "PPP over Ethernet"
......
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