Re-introduce declaration of gsm0808_create_handover_request_ack()

In Change-Id Ia71542ea37d4fd2c9fb9b40357db7aeb111ec576, the old
declaration of gsm0808_create_handover_request_ack() was accidentially
removed from the gsm0808.h header file.  The actual function itself
(and the exported symbol) remained for backwards compatibility at
runtime, but removing the declaration from the header file resulted in
build failures across the board of all automatic tests.

Let's re-introduce the old declaration.

Change-Id: I9e96fa675fccca9ee9631caad7559dea3794d490
This commit is contained in:
Harald Welte 2019-05-06 10:31:35 +02:00
parent 73b943e88d
commit aa98c481fa
1 changed files with 4 additions and 0 deletions

View File

@ -194,6 +194,10 @@ struct gsm0808_handover_request {
};
struct msgb *gsm0808_create_handover_request(const struct gsm0808_handover_request *params);
struct msgb *gsm0808_create_handover_request_ack(const uint8_t *l3_info, uint8_t l3_info_len,
uint8_t chosen_channel, uint8_t chosen_encr_alg,
uint8_t chosen_speech_version);
struct gsm0808_handover_request_ack {
const uint8_t *l3_info;
uint8_t l3_info_len;