Fix RANAP SSN: it's 142, not 143

143 is actually the SSN for RNSAP. Wireshark displayed a RNSAP message type
and malformed packet warning until I fixed this to 142. Now I get the proper
RANAP and id-Paging reported.

There has been a reallocation for RANAP and RNSAP SSNs, though the old SSN for
RANAP is apparently 32 (seen in a pcap from a real 3G network). When I send 32
instead of 142, wireshark also decodes the message as valid RANAP.
This commit is contained in:
Neels Hofmeyr 2016-04-13 17:45:25 +02:00 committed by Harald Welte
parent 37d5a3afcd
commit 752b39e763
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ enum osmo_sccp_ssn {
OSMO_SCCP_SSN_RES_INTL = 0x0c,
OSMO_SCCP_SSN_BISDN = 0x0d,
OSMO_SCCP_SSN_TC_TEST = 0x0e,
OSMO_SCCP_SSN_RANAP = 143,
OSMO_SCCP_SSN_RANAP = 142,
};
struct osmo_sccp_gt {