From b990f47275bb5a1b87da8231194d603ad5c74078 Mon Sep 17 00:00:00 2001 From: Lionel Gauthier <lionel.gauthier@eurecom.fr> Date: Tue, 18 Mar 2014 17:33:12 +0000 Subject: [PATCH] Added UDP GTPV1U git-svn-id: http://svn.eurecom.fr/openair4G/trunk@5189 818b1a75-f10b-46b9-bf7c-635c3b92a50f --- openair2/UTIL/LOG/log.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/openair2/UTIL/LOG/log.c b/openair2/UTIL/LOG/log.c index 13784417fd..d01f4f6d91 100755 --- a/openair2/UTIL/LOG/log.c +++ b/openair2/UTIL/LOG/log.c @@ -276,6 +276,22 @@ int logInit (void) g_log->log_component[OCM].filelog = 0; g_log->log_component[OCM].filelog_name = "/tmp/ocm.log"; + g_log->log_component[UDP_].name = "UDP"; + g_log->log_component[UDP_].level = LOG_EMERG; + g_log->log_component[UDP_].flag = LOG_FULL; + g_log->log_component[UDP_].interval = 1; + g_log->log_component[UDP_].fd = 0; + g_log->log_component[UDP_].filelog = 0; + g_log->log_component[UDP_].filelog_name = ""; + + g_log->log_component[GTPU].name = "GTPV1U"; + g_log->log_component[GTPU].level = LOG_EMERG; + g_log->log_component[GTPU].flag = LOG_FULL; + g_log->log_component[GTPU].interval = 1; + g_log->log_component[GTPU].fd = 0; + g_log->log_component[GTPU].filelog = 0; + g_log->log_component[GTPU].filelog_name = ""; + g_log->log_component[S1AP].name = "S1AP"; g_log->log_component[S1AP].level = LOG_EMERG; g_log->log_component[S1AP].flag = LOG_FULL; -- GitLab