diff options
Diffstat (limited to 'net-analyzer/scapy/files')
-rw-r--r-- | net-analyzer/scapy/files/ethertypes | 37 | ||||
-rw-r--r-- | net-analyzer/scapy/files/scapy-1.1.1-config-file.patch | 13 |
2 files changed, 0 insertions, 50 deletions
diff --git a/net-analyzer/scapy/files/ethertypes b/net-analyzer/scapy/files/ethertypes deleted file mode 100644 index 5e700f663987..000000000000 --- a/net-analyzer/scapy/files/ethertypes +++ /dev/null @@ -1,37 +0,0 @@ -# -# Ethernet frame types -# This file describes some of the various Ethernet -# protocol types that are used on Ethernet networks. -# -# This list could be found on: -# http://www.iana.org/assignments/ethernet-numbers -# -# <name> <hexnumber> <alias1>...<alias35> #Comment -# -IPv4 0800 ip ip4 # Internet IP (IPv4) -X25 0805 -ARP 0806 ether-arp # -FR_ARP 0808 # Frame Relay ARP [RFC1701] -BPQ 08FF # G8BPQ AX.25 Ethernet Packet -DEC 6000 # DEC Assigned proto -DNA_DL 6001 # DEC DNA Dump/Load -DNA_RC 6002 # DEC DNA Remote Console -DNA_RT 6003 # DEC DNA Routing -LAT 6004 # DEC LAT -DIAG 6005 # DEC Diagnostics -CUST 6006 # DEC Customer use -SCA 6007 # DEC Systems Comms Arch -TEB 6558 # Trans Ether Bridging [RFC1701] -RAW_FR 6559 # Raw Frame Relay [RFC1701] -AARP 80F3 # Appletalk AARP -ATALK 809B # Appletalk -802_1Q 8100 8021q 1q 802.1q dot1q # 802.1Q Virtual LAN tagged frame -IPX 8137 # Novell IPX -NetBEUI 8191 # NetBEUI -IPv6 86DD ip6 # IP version 6 -PPP 880B # PPP -ATMMPOA 884C # MultiProtocol over ATM -PPP_DISC 8863 # PPPoE discovery messages -PPP_SES 8864 # PPPoE session messages -ATMFATE 8884 # Frame-based ATM Transport over Ethernet -LOOP 9000 loopback # loop proto diff --git a/net-analyzer/scapy/files/scapy-1.1.1-config-file.patch b/net-analyzer/scapy/files/scapy-1.1.1-config-file.patch deleted file mode 100644 index ac38942b52e5..000000000000 --- a/net-analyzer/scapy/files/scapy-1.1.1-config-file.patch +++ /dev/null @@ -1,13 +0,0 @@ -http://hg.secdev.org/scapy/rev/443b35c8c6de - -Fixed startup config file reading problem when scapy is used as a library - ---- scapy.py.orig 2008-01-30 19:47:55.000000000 +0300 -+++ scapy.py 2008-01-30 19:48:42.000000000 +0300 -@@ -12190,4 +12190,5 @@ - if __name__ == "__main__": - interact() - else: -- read_config_file(DEFAULT_CONFIG_FILE) -+ if DEFAULT_CONFIG_FILE: -+ read_config_file(DEFAULT_CONFIG_FILE) |