update it

This commit is contained in:
Sukchan Lee 2017-04-03 22:53:36 +09:00
parent 9d2e2d3319
commit c8bd136551
2 changed files with 3 additions and 5 deletions

View File

@ -18,7 +18,6 @@ extern "C" {
*/
typedef struct _gtp_xact_ctx_t {
c_uint32_t g_xact_id;
void *pool;
tm_service_t *tm_service;
c_uintptr_t event;
@ -51,10 +50,10 @@ CORE_DECLARE(status_t) gtp_xact_init(gtp_xact_ctx_t *context,
tm_service_t *tm_service, c_uintptr_t event);
CORE_DECLARE(status_t) gtp_xact_final(void);
CORE_DECLARE(gtp_xact_t *)gtp_xact_local_create(
gtp_xact_ctx_t *context, net_sock_t *sock, gtp_node_t *gnode);
CORE_DECLARE(gtp_xact_t *)gtp_xact_local_create(gtp_xact_ctx_t *context,
net_sock_t *sock, gtp_node_t *gnode);
CORE_DECLARE(gtp_xact_t *) gtp_xact_remote_create(gtp_xact_ctx_t *context,
net_sock_t *sock, gtp_node_t *gnode, c_uint32_t sqn);
net_sock_t *sock, gtp_node_t *gnode, c_uint32_t sqn);
CORE_DECLARE(status_t) gtp_xact_commit(
gtp_xact_t *xact, c_uint8_t type, gtp_message_t *gtp_message);

View File

@ -158,7 +158,6 @@ void mme_state_operational(mme_sm_t *s, event_t *e)
xact = gtp_xact_preprocess(&mme_self()->gtp_xact_ctx,
sock, gnode, &type, pkbuf);
rv = gtp_xact_receive(xact, &gtp_message, type, pkbuf);
if (rv != CORE_OK)
break;