classFrameType(packet.utils.Enum)
enum OpCode
classMPA(baseobj.BaseObj)
MPA object
Usage:
from packet.transport.mpa import MPA
x = MPA(pktt)
Object definition:
MPA(
[
# MPA Full Operation Phase
psize = int, # Length of ULPDU
pad = int, # Length of Padding bytes
crc = int, # CRC 32 check value
] | [
# Connection Setup
ftype = int, # Frame type
marker = int, # Marker usage required
use_crc = int, # CRC usage
reject = int, # Rejected connection
revision = int, # Revision of MPA
psize = int, # Size of private data
data = bytes, # Private data
]
)
Methodsdefinedhere:
---------------------
__init__(self,pktt)
Constructor
Initialize object's private data.
pktt: Packet trace object (packet.pktt.Pktt) so this layer has
access to the parent layers.