diff --git a/scapy/config.py b/scapy/config.py index 836de4683..119022d5a 100644 --- a/scapy/config.py +++ b/scapy/config.py @@ -372,7 +372,8 @@ extensions_paths: path or list of paths where extensions are to be looked for netcache = NetCache() load_layers = ["l2", "inet", "dhcp", "dns", "dot11", "gprs", "hsrp", "inet6", "ir", "isakmp", "l2tp", "mgcp", "mobileip", "netbios", "netflow", "ntp", "ppp", "radius", "rip", "rtp", - "sebek", "skinny", "smb", "snmp", "tftp", "x509", "bluetooth", "dhcp6", "llmnr", "sctp", "vrrp" ] + "sebek", "skinny", "smb", "snmp", "tftp", "x509", "bluetooth", "dhcp6", "llmnr", "sctp", "vrrp", + "ipsec" ] if not Conf.ipv6_enabled: diff --git a/scapy/layers/ipsec.py b/scapy/layers/ipsec.py index ac677ccbb..030291dca 100644 --- a/scapy/layers/ipsec.py +++ b/scapy/layers/ipsec.py @@ -53,7 +53,6 @@ from scapy.layers.inet import IP from scapy.layers.inet6 import IPv6, IPv6ExtHdrHopByHop, IPv6ExtHdrDestOpt, \ IPv6ExtHdrRouting -__all__ = ['AH', 'ESP', 'SecurityAssociation'] #------------------------------------------------------------------------------ class AH(Packet):