pespin has uploaded this change for review. (
https://gerrit.osmocom.org/c/libosmocore/+/34185 )
Change subject: lapdm: Update public lapdm_msg_ctx upon CCCH data ind
......................................................................
lapdm: Update public lapdm_msg_ctx upon CCCH data ind
This allows uses accessing the updated fields such as fn from the l3_cb
when receiving a msg from CCCH, eg: "le->datalink[DL_SAPI0].mctx.fn;"
Change-Id: Icabc3759c47b0f7cfe61f1b7a96f08f36714262e
---
M src/gsm/lapdm.c
1 file changed, 14 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmocore refs/changes/85/34185/1
diff --git a/src/gsm/lapdm.c b/src/gsm/lapdm.c
index e96e218..9f795c6 100644
--- a/src/gsm/lapdm.c
+++ b/src/gsm/lapdm.c
@@ -857,6 +857,8 @@
case LAPDm_FMT_Bter:
/* fall-through */
case LAPDm_FMT_Bbis:
+ /* Update context so that users can read fields like fn: */
+ memcpy(&mctx.dl->mctx, &mctx, sizeof(mctx.dl->mctx));
/* directly pass up to layer3 */
msg->l3h = msg->l2h;
msgb_pull_to_l3(msg);
--
To view, visit
https://gerrit.osmocom.org/c/libosmocore/+/34185
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Change-Id: Icabc3759c47b0f7cfe61f1b7a96f08f36714262e
Gerrit-Change-Number: 34185
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: newchange