mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-05 23:37:22 +00:00
mme_ue_remove() if detach request is switch-off
This commit is contained in:
parent
131fb3ac79
commit
d8f23bed1a
4 changed files with 29 additions and 11 deletions
|
|
@ -1012,7 +1012,9 @@ status_t tests1ap_build_pdn_disconnectivity_request(
|
|||
"000d40380000"
|
||||
"0500000005c08000 0108000800030001 00001a000b0a2732 423c53040206d206"
|
||||
"006440080055f501 0019d01000434006 0055f5011022",
|
||||
"",
|
||||
"000d40380000"
|
||||
"0500000005c08000 0108000800030001 00001a000b0a271a 776620040206d206"
|
||||
"006440080055f501 0019d01000434006 0055f5011022",
|
||||
"",
|
||||
|
||||
"",
|
||||
|
|
@ -1026,7 +1028,7 @@ status_t tests1ap_build_pdn_disconnectivity_request(
|
|||
};
|
||||
c_uint16_t len[TESTS1AP_MAX_MESSAGE] = {
|
||||
60,
|
||||
0,
|
||||
60,
|
||||
0,
|
||||
|
||||
0,
|
||||
|
|
@ -1350,7 +1352,9 @@ status_t tests1ap_build_deactivate_bearer_accept(
|
|||
"000d40370000"
|
||||
"0500000005c00000 0001000800030001 00001a000a0927a9 a1b2bd057200ce00"
|
||||
"6440080055f50100 19d0100043400600 55f5011022",
|
||||
"",
|
||||
"000d40370000"
|
||||
"0500000005c00000 0001000800030001 00001a000a09275a af43d9056200ce00"
|
||||
"6440080055f50100 19d0100043400600 55f5011022",
|
||||
|
||||
"",
|
||||
"",
|
||||
|
|
@ -1364,7 +1368,7 @@ status_t tests1ap_build_deactivate_bearer_accept(
|
|||
c_uint16_t len[TESTS1AP_MAX_MESSAGE] = {
|
||||
59,
|
||||
59,
|
||||
0,
|
||||
59,
|
||||
|
||||
0,
|
||||
0,
|
||||
|
|
|
|||
|
|
@ -306,7 +306,7 @@ static void volte_test1(abts_case *tc, void *data)
|
|||
|
||||
core_sleep(time_from_msec(300));
|
||||
|
||||
/* Deactivate EPS bearer context accept */
|
||||
/* Send Deactivate EPS bearer context accept */
|
||||
rv = tests1ap_build_deactivate_bearer_accept(&sendbuf, msgindex+1);
|
||||
ABTS_INT_EQUAL(tc, CORE_OK, rv);
|
||||
rv = tests1ap_enb_send(sock, sendbuf);
|
||||
|
|
@ -314,9 +314,8 @@ static void volte_test1(abts_case *tc, void *data)
|
|||
|
||||
core_sleep(time_from_msec(300));
|
||||
|
||||
#if 0
|
||||
/* Send PDN disconnectivity request */
|
||||
rv = tests1ap_build_pdn_disconnectivity_request(&sendbuf, msgindex);
|
||||
rv = tests1ap_build_pdn_disconnectivity_request(&sendbuf, msgindex+1);
|
||||
ABTS_INT_EQUAL(tc, CORE_OK, rv);
|
||||
rv = tests1ap_enb_send(sock, sendbuf);
|
||||
ABTS_INT_EQUAL(tc, CORE_OK, rv);
|
||||
|
|
@ -334,14 +333,17 @@ static void volte_test1(abts_case *tc, void *data)
|
|||
rv = tests1ap_enb_send(sock, sendbuf);
|
||||
ABTS_INT_EQUAL(tc, CORE_OK, rv);
|
||||
|
||||
/* Deactivate EPS bearer context accept */
|
||||
rv = tests1ap_build_deactivate_bearer_accept(&sendbuf, msgindex);
|
||||
core_sleep(time_from_msec(300));
|
||||
|
||||
/* Send Deactivate EPS bearer context accept */
|
||||
rv = tests1ap_build_deactivate_bearer_accept(&sendbuf, msgindex+2);
|
||||
ABTS_INT_EQUAL(tc, CORE_OK, rv);
|
||||
rv = tests1ap_enb_send(sock, sendbuf);
|
||||
ABTS_INT_EQUAL(tc, CORE_OK, rv);
|
||||
|
||||
core_sleep(time_from_msec(300));
|
||||
|
||||
#if 0
|
||||
/* Send INVALID PDN Connectivity Request */
|
||||
rv = tests1ap_build_pdn_connectivity_request(&sendbuf, msgindex+1);
|
||||
ABTS_INT_EQUAL(tc, CORE_OK, rv);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue