geneva/layers/raw_layer.py

10 lines
189 B
Python
Raw Normal View History

2020-06-24 14:20:51 +02:00
from layers.layer import Layer
class RawLayer(Layer):
"""
Defines an interface for the scapy Raw layer.
"""
name = "Raw"
protocol = Raw
_fields = []
fields = []