summaryrefslogtreecommitdiffstats
path: root/scripts/external_libs/scapy-python3-0.18/scapy/contrib/ppi_cace.py
diff options
context:
space:
mode:
authorimarom <imarom@cisco.com>2016-03-21 16:03:47 +0200
committerimarom <imarom@cisco.com>2016-03-21 16:03:47 +0200
commitb89efa188810bf95a9d245e69e2961b5721c3b0f (patch)
tree454273ac6c4ae972ebb8a2c86b893296970b4fa9 /scripts/external_libs/scapy-python3-0.18/scapy/contrib/ppi_cace.py
parentf72c6df9d2e9998ae1f3529d729ab7930b35785a (diff)
scapy python 2/3
Diffstat (limited to 'scripts/external_libs/scapy-python3-0.18/scapy/contrib/ppi_cace.py')
-rw-r--r--scripts/external_libs/scapy-python3-0.18/scapy/contrib/ppi_cace.py87
1 files changed, 0 insertions, 87 deletions
diff --git a/scripts/external_libs/scapy-python3-0.18/scapy/contrib/ppi_cace.py b/scripts/external_libs/scapy-python3-0.18/scapy/contrib/ppi_cace.py
deleted file mode 100644
index ba2c4abf..00000000
--- a/scripts/external_libs/scapy-python3-0.18/scapy/contrib/ppi_cace.py
+++ /dev/null
@@ -1,87 +0,0 @@
-## This file is (hopefully) part of Scapy
-## See http://www.secdev.org/projects/scapy for more informations
-## <jellch@harris.com>
-## This program is published under a GPLv2 license
-
-# scapy.contrib.description = PPI CACE
-# scapy.contrib.status = loads
-
-"""
-CACE PPI types
-"""
-import logging,struct
-from scapy.config import conf
-from scapy.packet import *
-from scapy.fields import *
-from scapy.layers.l2 import Ether
-from scapy.layers.dot11 import Dot11
-from scapy.contrib.ppi import *
-
-PPI_DOT11COMMON = 2
-PPI_DOT11NMAC = 3
-PPI_DOT11NMACPHY = 4
-PPI_SPECTRUMMAP = 5
-PPI_PROCESSINFO = 6
-PPI_CAPTUREINFO = 7
-PPI_AGGREGATION = 8
-PPI_DOT3 = 9
-
-# PPI 802.11 Common Field Header Fields
-class dBmByteField(Field):
- def __init__(self, name, default):
- Field.__init__(self, name, default, "b")
- def i2repr(self, pkt, val):
- if (val != None):
- val = "%4d dBm" % val
- return val
-
-class PPITSFTField(LELongField):
- def i2h(self, pkt, val):
- flags = 0
- if (pkt):
- flags = pkt.getfieldval("Pkt_Flags")
- if not flags:
- flags = 0
- if (flags & 0x02):
- scale = 1e-3
- else:
- scale = 1e-6
- tout = scale * float(val)
- return tout
- def h2i(self, pkt, val):
- scale = 1e6
- if pkt:
- flags = pkt.getfieldval("Pkt_Flags")
- if flags:
- if (flags & 0x02):
- scale = 1e3
- tout = int((scale * val) + 0.5)
- return tout
-
-_PPIDot11CommonChFlags = ['','','','','Turbo','CCK','OFDM','2GHz','5GHz',
- 'PassiveOnly','Dynamic CCK-OFDM','GSFK']
-
-_PPIDot11CommonPktFlags = ['FCS','TSFT_ms','FCS_Invalid','PHY_Error']
-
-# PPI 802.11 Common Field Header
-class Dot11Common(Packet):
- name = "PPI 802.11-Common"
- fields_desc = [ LEShortField('pfh_type',PPI_DOT11COMMON),
- LEShortField('pfh_length', 20),
- PPITSFTField('TSF_Timer', 0),
- FlagsField('Pkt_Flags',0, -16, _PPIDot11CommonPktFlags),
- LEShortField('Rate',0),
- LEShortField('Ch_Freq',0),
- FlagsField('Ch_Flags', 0, -16, _PPIDot11CommonChFlags),
- ByteField('FHSS_Hop',0),
- ByteField('FHSS_Pat',0),
- dBmByteField('Antsignal',-128),
- dBmByteField('Antnoise',-128)]
-
- def extract_padding(self, p):
- return "",p
-#Hopefully other CACE defined types will be added here.
-
-#Add the dot11common layer to the PPI array
-addPPIType(PPI_DOT11COMMON, Dot11Common)
-