aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMax <msuraev@sysmocom.de>2018-11-05 14:59:54 +0100
committerMax <msuraev@sysmocom.de>2018-11-06 17:25:57 +0000
commitfa3b48227796e66d9dd05a53ff4b3062b2c19b46 (patch)
tree815c489c9b466c2e3ee9ead15633ad0c9afdf00e
parent5a7b465b09a5446dba32961801cd392ca6617e7b (diff)
Fix deprecation warning in gsm0808_test
Use gsm0808_create_layer3_2() directly instead of deprecated wrapper. Change-Id: I44772666c929dfd94d25953379cf51b371ce202c
-rw-r--r--tests/gsm0808/gsm0808_test.c16
1 files changed, 12 insertions, 4 deletions
diff --git a/tests/gsm0808/gsm0808_test.c b/tests/gsm0808/gsm0808_test.c
index 7111db9b..671b8399 100644
--- a/tests/gsm0808/gsm0808_test.c
+++ b/tests/gsm0808/gsm0808_test.c
@@ -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);