Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
oai
openairinterface5G
Commits
b9cf840a
Commit
b9cf840a
authored
Dec 28, 2015
by
Xenofon Foukas
Browse files
Created callback mechanism for destruction of protocol messages sent by the agent
parent
0bea0aaf
Changes
3
Hide whitespace changes
Inline
Side-by-side
openair2/ENB_APP/enb_agent_common.c
View file @
b9cf840a
...
...
@@ -134,7 +134,7 @@ int enb_agent_hello(uint32_t xid, const void *params, Protocol__ProgranMessage *
}
int
enb_agent_destroy_hello
_message
(
Protocol__ProgranMessage
*
msg
)
{
int
enb_agent_destroy_hello
(
Protocol__ProgranMessage
*
msg
)
{
if
(
msg
->
msg_case
!=
PROTOCOL__PROGRAN_MESSAGE__MSG_HELLO_MSG
)
goto
error
;
...
...
openair2/ENB_APP/enb_agent_common.h
View file @
b9cf840a
...
...
@@ -53,6 +53,10 @@ typedef int (*enb_agent_message_decoded_callback)(
Protocol__ProgranMessage
**
msg
);
typedef
int
(
*
enb_agent_message_destruction_callback
)(
Protocol__ProgranMessage
*
msg
);
typedef
int32_t
err_code_t
;
int
enb_agent_serialize_message
(
Protocol__ProgranMessage
*
msg
,
void
**
buf
,
int
*
size
);
...
...
openair2/ENB_APP/enb_agent_handler.c
View file @
b9cf840a
...
...
@@ -50,6 +50,15 @@ enb_agent_message_decoded_callback messages_callback[][3] = {
};
enb_agent_message_destruction_callback
message_destruction_callback
[]
=
{
enb_agent_destroy_hello
,
enb_agent_destroy_echo_request
,
enb_agent_destroy_echo_reply
,
0
,
/*No stats request message is created in the agent. No need for a callback*/
enb_agent_mac_destroy_stats_reply
,
};
static
const
char
*
enb_agent_direction2String
[]
=
{
""
,
/* not_set */
"originating message"
,
/* originating message */
...
...
@@ -114,7 +123,7 @@ void * enb_agent_send_message(uint32_t xid,
// free the msg --> later keep this in the data struct and just update the values
//TODO call proper destroy function
// enb_agent_mac_destroy_stats_reply
(msg);
err_code
=
((
*
message_destruction_callback
[
msg
->
msg_case
-
1
])
(
msg
)
)
;
DevAssert
(
buffer
!=
NULL
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment