open5gs/src/init.c

24 lines
316 B
C
Raw Normal View History

2017-02-02 11:34:37 +00:00
/**
* @file init.c
*/
/* Core library */
#include "core.h"
#define TRACE_MODULE _init
#include "core_debug.h"
#include <syslog.h>
status_t cellwire_initialize(char *config_path)
{
openlog("cellwire", 0, LOG_DAEMON);
srand(time(NULL)*getpid());
return CORE_OK;
}
void cellwire_terminate(void)
{
}