lynxis lazus has submitted this change. ( https://gerrit.osmocom.org/c/libosmocore/+/38125?usp=email )
Change subject: protocol: gsm 29.118: add SGSAP_SERV_IND_PAGING_TIMEOUT (osmocom specific) ......................................................................
protocol: gsm 29.118: add SGSAP_SERV_IND_PAGING_TIMEOUT (osmocom specific)
To simplify the code, extend the service indication to also indicate a paging timeout. The VLR is using this type to indicate paging timeouts or aborting paging in case the SGs state has been terminated.
Related: OS#6547 Change-Id: I58bfba50cb9c8aff2cd1cfe88d6467d4d2bd17cb --- M include/osmocom/gsm/protocol/gsm_29_118.h 1 file changed, 1 insertion(+), 0 deletions(-)
Approvals: pespin: Looks good to me, but someone else must approve laforge: Looks good to me, approved Jenkins Builder: Verified
diff --git a/include/osmocom/gsm/protocol/gsm_29_118.h b/include/osmocom/gsm/protocol/gsm_29_118.h index 1583588..0e5842f 100644 --- a/include/osmocom/gsm/protocol/gsm_29_118.h +++ b/include/osmocom/gsm/protocol/gsm_29_118.h @@ -116,6 +116,7 @@ enum sgsap_service_ind { SGSAP_SERV_IND_CS_CALL = 0x01, SGSAP_SERV_IND_SMS = 0x02, + SGSAP_SERV_IND_PAGING_TIMEOUT = 0xfe, /* Osmocom specific to drop the paging */ }; extern const struct value_string sgsap_service_ind_names[]; static inline const char *sgsap_service_ind_name(enum sgsap_service_ind si) {