aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAlexander Couzens <lynxis@fe80.eu>2019-09-16 02:44:58 +0200
committerlynxis lazus <lynxis@fe80.eu>2019-09-28 17:55:19 +0000
commita8f782502b48f685464a287c01306af225fa7ec5 (patch)
tree257add547060ea5cc2b5f7ed764d74718457ba87 /include
parent324bb5a11e1b944643585369e50884d8a91d0869 (diff)
sgsn: when receiving data PDU notify the Gb GMM fsm
When receiving a PDU, the GMM fsm will change to state MM_READY and will re-arm the T3314 Relates: OS#1941 Change-Id: I78f40762fb17bbd4a6f35608a793f8e5271e9b86
Diffstat (limited to 'include')
-rw-r--r--include/osmocom/sgsn/gprs_gb.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/osmocom/sgsn/gprs_gb.h b/include/osmocom/sgsn/gprs_gb.h
index 3bc367613..47f2a3184 100644
--- a/include/osmocom/sgsn/gprs_gb.h
+++ b/include/osmocom/sgsn/gprs_gb.h
@@ -3,7 +3,9 @@
#include <stdbool.h>
#include <osmocom/core/msgb.h>
-#include <osmocom/sgsn/gprs_rllc.h>
+#include <osmocom/sgsn/gprs_llc.h>
int gsm0408_gprs_rcvmsg_gb(struct msgb *msg, struct gprs_llc_llme *llme,
bool drop_cipherable);
+/* Has to be called whenever any PDU (signaling, data, ...) has been received */
+void gprs_gb_recv_pdu(struct sgsn_mm_ctx *mmctx);