summaryrefslogblamecommitdiff
path: root/external/construct/protocols/layer4/isup.py
blob: 8111b60b1d750881043501b70fca2829796716f1 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                                   
"""
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
)