Sends ErrorIndication if S1 context has already been removed (#29)

This commit is contained in:
Sukchan Lee 2018-03-14 17:24:04 +09:00
parent bb844434f2
commit 5d21ae4071
3 changed files with 3 additions and 3 deletions

View File

@ -277,7 +277,7 @@ void mme_state_operational(fsm_t *s, event_t *e)
* older S1(enb_ue_t) context */
if (ECM_CONNECTED(mme_ue))
{
#if IMPLICIT_S1_RELEASE
#if 1 /* IMPLICIT_S1_RELEASE */
/* Implcit S1 release */
d_warn("Implicit S1 release");
d_warn(" ENB_UE_S1AP_ID[%d] MME_UE_S1AP_ID[%d]",

View File

@ -195,7 +195,7 @@ void s1ap_handle_initial_ue_message(mme_enb_t *enb, s1ap_message_t *message)
* older S1(enb_ue_t) context */
if (ECM_CONNECTED(mme_ue))
{
#if IMPLICIT_S1_RELEASE
#if 1 /* IMPLICIT_S1_RELEASE */
/* Implcit S1 release */
d_warn("Implicit S1 release");
d_warn(" ENB_UE_S1AP_ID[%d] MME_UE_S1AP_ID[%d]",

View File

@ -315,7 +315,7 @@ static void attach_test1(abts_case *tc, void *data)
ABTS_INT_EQUAL(tc, CORE_OK, rv);
pkbuf_free(recvbuf);
#if IMPLICIT_S1_RELEASE
#if 1 /* IMPLICIT_S1_RELEASE */
/* Send UE Context Release Request */
rv = tests1ap_build_ue_context_release_request(&sendbuf, msgindex);
ABTS_INT_EQUAL(tc, CORE_OK, rv);