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/layer3/mtp3.py

13 lines
192 B

"""
Message Transport Part 3 (SS7 protocol stack)
(untested)
"""
from construct import *
mtp3_header = BitStruct("mtp3_header",
Nibble("service_indicator"),
Nibble("subservice"),
)