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.
17 lines
313 B
17 lines
313 B
# see LICENSE
|
|
SEVENBIT_SIZE = 160
|
|
EIGHTBIT_SIZE = 140
|
|
UCS2_SIZE = 70
|
|
SEVENBIT_MP_SIZE = SEVENBIT_SIZE - 7
|
|
EIGHTBIT_MP_SIZE = EIGHTBIT_SIZE - 6
|
|
UCS2_MP_SIZE = UCS2_SIZE - 3
|
|
|
|
# address type
|
|
UNKNOWN = 0
|
|
INTERNATIONAL = 1
|
|
NATIONAL = 2
|
|
NETWORK_SPECIFIC = 3
|
|
SUBSCRIBER = 4
|
|
ALPHANUMERIC = 5
|
|
ABBREVIATED = 6
|
|
RESERVED = 7
|