diff options
author | Harald Welte <laforge@gnumonks.org> | 2016-05-06 11:18:15 +0200 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2016-05-06 11:22:05 +0200 |
commit | 766da8687741340135b637aa593886b7345b8ddc (patch) | |
tree | 6213e33028fecc10032a04c3264f26a0e137f4d5 /include | |
parent | 48dc1a5a64041e53e7cf7ae39758ed92aecbb6a3 (diff) |
GSUP: Add support for RAND in SendAuthInfo.req
In the autentication re-sync case, we need not only the AUTS from
the MS/UE, but also the RAND that we sent as part of the failed
authentication challenge.
Diffstat (limited to 'include')
-rw-r--r-- | include/osmocom/gsm/gsup.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/osmocom/gsm/gsup.h b/include/osmocom/gsm/gsup.h index 523c15d4..660ffd48 100644 --- a/include/osmocom/gsm/gsup.h +++ b/include/osmocom/gsm/gsup.h @@ -138,6 +138,7 @@ struct osmo_gsup_message { const uint8_t *hlr_enc; size_t hlr_enc_len; const uint8_t *auts; + const uint8_t *rand; enum osmo_gsup_cn_domain cn_domain; }; |