aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2022-02-23 14:25:22 +0100
committerneels <nhofmeyr@sysmocom.de>2022-02-28 11:04:08 +0000
commita25a6dca25d0d36e07f82c5e3bc75ccaad379f32 (patch)
treeb2da638d3cc468f61f029e783451204aa91ae69f /include
parenta6d1ef0d6048cf59cdd154a3452681ad65141859 (diff)
BSSAP: HO Request Ack: add missing Codec List (BSS Supported)
Diffstat (limited to 'include')
-rw-r--r--include/osmocom/gsm/gsm0808.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/osmocom/gsm/gsm0808.h b/include/osmocom/gsm/gsm0808.h
index c79da6a4..b4c78032 100644
--- a/include/osmocom/gsm/gsm0808.h
+++ b/include/osmocom/gsm/gsm0808.h
@@ -246,8 +246,12 @@ struct gsm0808_handover_request_ack {
const struct sockaddr_storage *aoip_transport_layer;
+ bool more_items; /*!< set this to true iff any fields below are used */
+
+ struct gsm0808_speech_codec_list codec_list_bss_supported; /*< omit when .len == 0 */
+
/* more items are defined in the spec and may be added later */
- bool more_items; /*!< always set this to false */
+ bool more_items2; /*!< always set this to false */
};
struct msgb *gsm0808_create_handover_request_ack2(const struct gsm0808_handover_request_ack *params);