Skip to content

Commit bf0e70b

Browse files
committed
t Merge remote-tracking branch 'upstream/master' into rsarwad_handle_s8_contexts
Signed-off-by: rashmi <[email protected]>
2 parents e4f6b39 + 790162f commit bf0e70b

File tree

4 files changed

+2
-8
lines changed

4 files changed

+2
-8
lines changed

lte/gateway/c/oai/include/spgw_types.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ typedef struct mme_sgw_tunnel_s {
8383
// AGW-wide state for SGW task
8484
typedef struct sgw_state_s {
8585
teid_t tunnel_id;
86-
uint32_t gtpv1u_teid;
86+
teid_t gtpv1u_teid;
8787
struct in_addr sgw_ip_address_S1u_S12_S4_up;
8888
hash_table_ts_t* imsi_ue_context_htbl;
8989
} sgw_state_t;

lte/gateway/c/oai/oai_mme/CMakeLists.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,7 @@ if ( NOT EMBEDDED_SGW )
5656
target_link_libraries(mme
5757
LIB_GTPV2C TASK_UDP)
5858
else ( EMBEDDED_SGW )
59-
target_link_libraries(mme TASK_SGW)
60-
target_link_libraries(mme TASK_SGW_S8)
59+
target_link_libraries(mme TASK_SGW TASK_SGW_S8)
6160
endif ( NOT EMBEDDED_SGW )
6261

6362
if ( NOT S6A_OVER_GRPC )

lte/gateway/c/oai/tasks/sgw_s8/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ set (SGW_S8_SRC
2323
)
2424
add_library(TASK_SGW_S8 ${SGW_S8_SRC})
2525

26-
2726
target_link_libraries(TASK_SGW_S8
2827
COMMON
2928
LIB_BSTR LIB_HASHTABLE

lte/gateway/c/oai/tasks/sgw_s8/sgw_s8_task.c

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,6 @@ static int handle_message(zloop_t* loop, zsock_t* reader, void* arg) {
7373
imsi64_t imsi64 = itti_get_associated_imsi(received_message_p);
7474

7575
switch (ITTI_MSG_ID(received_message_p)) {
76-
case MESSAGE_TEST: {
77-
OAI_FPRINTF_INFO("TASK_SGW_S8 received MESSAGE_TEST\n");
78-
} break;
79-
8076
case TERMINATE_MESSAGE: {
8177
itti_free_msg_content(received_message_p);
8278
zframe_destroy(&msg_frame);

0 commit comments

Comments
 (0)