aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocom
diff options
context:
space:
mode:
authorAlexander Couzens <lynxis@fe80.eu>2018-09-18 18:16:53 +0200
committerlynxis lazus <lynxis@fe80.eu>2018-09-19 10:31:02 +0000
commit9739067373394fc1f8edc17c2294c7415cd95f8a (patch)
tree51cda4091a46aadf0dabed23d7731ed71d07eb7e /include/osmocom
parentb62653a635f46b7e95378a8ce96dc1ecaee34149 (diff)
gprs_sgsn.h: fix wrong type of re-attempts
The GMM ctx->gmm_att_req.auth_reattempt is used to track multiple UTMS re-sync attempt of a MS. Change-Id: I708226cec9e131dcda4234f42ed3689f4f6750e8 Fixes: f7198d7dbb84 ("gprs_gmm: introduce a GMM Attach Request FSM") Fixes: OS#3556
Diffstat (limited to 'include/osmocom')
-rw-r--r--include/osmocom/sgsn/gprs_sgsn.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/osmocom/sgsn/gprs_sgsn.h b/include/osmocom/sgsn/gprs_sgsn.h
index a5ca959a4..2fbc0b6ab 100644
--- a/include/osmocom/sgsn/gprs_sgsn.h
+++ b/include/osmocom/sgsn/gprs_sgsn.h
@@ -176,7 +176,7 @@ struct sgsn_mm_ctx {
* the fsm needs to compare it against old to decide what to do */
struct msgb *attach_req;
uint32_t id_type;
- bool auth_reattempt;
+ unsigned int auth_reattempt; /* tracking UMTS resync auth attempts */
} gmm_att_req;
/* VLR number */
uint32_t new_sgsn_addr;