blob: 7f712f27950c8cf9e300ec771fd81d5df6f8145f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
"""
Message Transport Part 3 (SS7 protocol stack)
(untested)
"""
from construct import *
mtp3_header = BitStruct("mtp3_header",
Nibble("service_indicator"),
Nibble("subservice"),
)
|