aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-04-13 17:45:25 +0200
committerHarald Welte <laforge@gnumonks.org>2016-04-16 13:15:59 +0200
commit752b39e7638192a24cda990f2400b7f2fc690625 (patch)
treecd198a74c6333f2b22721b6a05d10c066b4df6b8 /include
parent37d5a3afcddc251aa2e23066ebf7a14ab0fbe688 (diff)
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.
Diffstat (limited to 'include')
-rw-r--r--include/osmocom/sigtran/sccp_sap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/osmocom/sigtran/sccp_sap.h b/include/osmocom/sigtran/sccp_sap.h
index 5696b47..15aa840 100644
--- a/include/osmocom/sigtran/sccp_sap.h
+++ b/include/osmocom/sigtran/sccp_sap.h
@@ -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 {