pespin has uploaded this change for review. (
https://gerrit.osmocom.org/c/libosmo-sigtran/+/42210?usp=email )
Change subject: tcap: Fix return code in tcap_as_rx_sccp_asp()
......................................................................
tcap: Fix return code in tcap_as_rx_sccp_asp()
That code path is not an error, simply the message is not TCAP.
Change-Id: I54c4a1bbaa8e107cf433cc898658a672c2b53c3c
---
M src/tcap_as_loadshare.c
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/libosmo-sigtran
refs/changes/10/42210/1
diff --git a/src/tcap_as_loadshare.c b/src/tcap_as_loadshare.c
index 9c969d3..ca0d209 100644
--- a/src/tcap_as_loadshare.c
+++ b/src/tcap_as_loadshare.c
@@ -286,7 +286,7 @@
/* TCAP uses only connectionless SCCP messages */
if (sua->hdr.msg_class != SUA_MSGC_CL && sua->hdr.msg_class !=
SUA_CL_CLDT)
- return -2;
+ return 0;
rc = sua_addr_parse(&calling_addr, sua, SUA_IEI_SRC_ADDR);
if (rc < 0) {
--
To view, visit https://gerrit.osmocom.org/c/libosmo-sigtran/+/42210?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newchange
Gerrit-Project: libosmo-sigtran
Gerrit-Branch: master
Gerrit-Change-Id: I54c4a1bbaa8e107cf433cc898658a672c2b53c3c
Gerrit-Change-Number: 42210
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <[email protected]>