You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
psrGROUP/env/Lib/site-packages/construct/protocols/layer4/isup.py

16 lines
283 B

"""
ISDN User Part (SS7 protocol stack)
"""
from construct import *
isup_header = Struct("isup_header",
Bytes("routing_label", 5),
UBInt16("cic"),
UBInt8("message_type"),
# mandatory fixed parameters
# mandatory variable parameters
# optional parameters
)