open5gs/lib/fd/gx/gx_message.c
Sukchan Lee 46f85d9fc8 Volte QoS is basically derived by IMS instead of EPC.
If the QoS informaton is provided from IMS, we'll use WEBUI QoS value
2018-01-19 01:23:13 +09:00

18 lines
322 B
C

#define TRACE_MODULE _gx_message
#include "core_debug.h"
#include "core_pkbuf.h"
#include "gx_message.h"
void gx_message_free(gx_message_t *gx_message)
{
int i;
d_assert(gx_message, return,);
for (i = 0; i < gx_message->num_of_pcc_rule; i++)
{
PCC_RULE_FREE(&gx_message->pcc_rule[i]);
}
}