Fix deprecation warning in gsm0808_test

Use gsm0808_create_layer3_2() directly instead of deprecated wrapper.

Change-Id: I44772666c929dfd94d25953379cf51b371ce202c
This commit is contained in:
Max 2018-11-05 14:59:54 +01:00
parent 5a7b465b09
commit fa3b482277
1 changed files with 12 additions and 4 deletions

View File

@ -102,7 +102,16 @@ static void test_create_layer3_aoip()
0xef, 0xcd, GSM0808_SCT_FR2 | 0xa0, 0x9f,
GSM0808_SCT_CSD | 0x90, 0xc0
};
struct osmo_cell_global_id cgi = {
.lai = {
.plmn = {
.mcc = 0x2244,
.mnc = 0x1122,
},
.lac = 0x3366,
},
.cell_identity = 0x4488,
};
struct msgb *msg, *in_msg;
struct gsm0808_speech_codec_list sc_list;
printf("Testing creating Layer3 (AoIP)\n");
@ -113,9 +122,8 @@ static void test_create_layer3_aoip()
in_msg->l3h = in_msg->data;
msgb_v_put(in_msg, 0x23);
msg =
gsm0808_create_layer3_aoip(in_msg, 0x1122, 0x2244, 0x3366, 0x4488,
&sc_list);
msg = gsm0808_create_layer3_2(in_msg, &cgi, &sc_list);
VERIFY(msg, res, ARRAY_SIZE(res));
msgb_free(msg);