OXIESEC PANEL
- Current Dir:
/
/
usr
/
lib
/
python3
/
dist-packages
/
twisted
/
pair
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
03/31/2022 06:22:38 AM
rwxr-xr-x
📄
__init__.py
631 bytes
09/08/2017 10:38:36 AM
rw-r--r--
📁
__pycache__
-
03/31/2022 06:22:39 AM
rwxr-xr-x
📄
ethernet.py
1.66 KB
09/08/2017 10:38:36 AM
rw-r--r--
📄
ip.py
2.53 KB
09/08/2017 10:38:36 AM
rw-r--r--
📄
raw.py
811 bytes
09/08/2017 10:38:36 AM
rw-r--r--
📄
rawudp.py
1.77 KB
09/08/2017 10:38:36 AM
rw-r--r--
📁
test
-
03/31/2022 06:22:38 AM
rwxr-xr-x
📄
testing.py
16.9 KB
09/08/2017 10:38:36 AM
rw-r--r--
📄
tuntap.py
12.24 KB
09/08/2017 10:38:36 AM
rw-r--r--
Editing: raw.py
Close
# Copyright (c) Twisted Matrix Laboratories. # See LICENSE for details. """ Interface definitions for working with raw packets """ from zope.interface import Interface class IRawDatagramProtocol(Interface): """ An interface for protocols such as UDP, ICMP and TCP. """ def addProto(): """ Add a protocol on top of this one. """ def datagramReceived(): """ An IP datagram has been received. Parse and process it. """ class IRawPacketProtocol(Interface): """ An interface for low-level protocols such as IP and ARP. """ def addProto(): """ Add a protocol on top of this one. """ def datagramReceived(): """ An IP datagram has been received. Parse and process it. """