From 42f4780fa9ce3b0691b0ec900065c0c57945d285 Mon Sep 17 00:00:00 2001 From: Eriks Dobelis Date: Thu, 23 Nov 2017 20:34:48 +0200 Subject: [PATCH] Temporary removing can from default loaded layers due to #205 and doing a minor release 0.23 --- scapy/config.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scapy/config.py b/scapy/config.py index 4058f78..88c324f 100644 --- a/scapy/config.py +++ b/scapy/config.py @@ -380,7 +380,7 @@ class Conf(ConfClass): 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", - "ipsec", "can" ] + "ipsec" ] if not Conf.ipv6_enabled: log_scapy.warning("IPv6 support disabled in Python. Cannot load scapy IPv6 layers.") diff --git a/setup.py b/setup.py index 86db441..d791ebf 100755 --- a/setup.py +++ b/setup.py @@ -46,7 +46,7 @@ def make_ezipfile(base_name, base_dir, verbose=0, dry_run=0, **kwargs): setup( name = 'scapy-python3', - version = '0.22', + version = '0.23', packages=['scapy','scapy/arch', 'scapy/arch/windows', 'scapy/layers','scapy/asn1','scapy/tools','scapy/modules', 'scapy/crypto', 'scapy/contrib'], scripts = SCRIPTS, data_files = [('share/man/man1', ["doc/scapy.1.gz"])],