Review at https://gerrit.osmocom.org/2296
SCCP SCOC: Ensure user primitive msgb->l2h always poinst to tail
In case there is no user data in a CONNECT.conf primitive (or other CO
primitives), we must make sure that msgb->l2h = msgb->tail so that the
SCCP User can use msgb_l2len(msg) == 0 as indicator to verify if user
data is present or not.
Change-Id: Ie512fe063391e3a634097f555b9b0089d2981de9
---
M src/sccp_scoc.c
1 file changed, 1 insertion(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmo-sccp refs/changes/96/2296/1
diff --git a/src/sccp_scoc.c b/src/sccp_scoc.c
index b05e071..4bf340d 100644
--- a/src/sccp_scoc.c
+++ b/src/sccp_scoc.c
@@ -609,6 +609,7 @@
prim = (struct osmo_scu_prim *) msgb_put(upmsg, sizeof(*prim));
osmo_prim_init(&prim->oph, SCCP_SAP_USER,
primitive, operation, upmsg);
+ upmsg->l2h = upmsg->tail;
return prim;
}
--
To view, visit https://gerrit.osmocom.org/2296
To unsubscribe, visit https://gerrit.osmocom.org/settings
Gerrit-MessageType: newchange
Gerrit-Change-Id: Ie512fe063391e3a634097f555b9b0089d2981de9
Gerrit-PatchSet: 1
Gerrit-Project: libosmo-sccp
Gerrit-Branch: master
Gerrit-Owner: Harald Welte <[email protected]>