diff options
author | Harald Welte <laforge@gnumonks.org> | 2019-08-16 12:22:29 +0200 |
---|---|---|
committer | laforge <laforge@osmocom.org> | 2019-12-09 10:54:30 +0000 |
commit | 49ddef610a003f1000422284bf31a653249cf09e (patch) | |
tree | e1234acf31e43886976baa9f3ca643f406472f59 /include/osmocom | |
parent | 278a6c8fcfc04084cd459a990ad93077b2a9cab0 (diff) |
gsup: Introduce OSMO_GSUP_NUM_VECTORS_REQ_IE
This is a bit of a hack, as we want to maintain binary compatibility
without breaking existing users of libosmocore. To do so, we use the
'num_auth_vectors' field in two ways now:
* In the existing use case as part of SEND_AUTH_INFO_RESPONSE, it
indicates the number of vectors stored in the 'auth_vectors' field
* In the new use case as part of SEND_AUTH_INFO_REQUEST, it indicates
the number of vectors actually requested by the MSC/SGSN/MME.
Change-Id: Iaecc47280f8ce54f3e3a888c1cfc160735483d0f
Diffstat (limited to 'include/osmocom')
-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 285bc0c6..56d7a309 100644 --- a/include/osmocom/gsm/gsup.h +++ b/include/osmocom/gsm/gsup.h @@ -107,6 +107,7 @@ enum osmo_gsup_iei { OSMO_GSUP_IMEI_IE = 0x50, OSMO_GSUP_IMEI_RESULT_IE = 0x51, + OSMO_GSUP_NUM_VECTORS_REQ_IE = 0x52, /* Inter-MSC handover related */ OSMO_GSUP_SOURCE_NAME_IE = 0x60, |