Commit 7a3aaca1 authored by Robert Schmidt's avatar Robert Schmidt

Print warning if RFSIMULATOR environment variable is used

parent 710bfdbf
...@@ -312,6 +312,9 @@ static void rfsimulator_readconfig(rfsimulator_state_t *rfsimulator) { ...@@ -312,6 +312,9 @@ static void rfsimulator_readconfig(rfsimulator_state_t *rfsimulator) {
/* for compatibility keep environment variable usage */ /* for compatibility keep environment variable usage */
if ( getenv("RFSIMULATOR") != NULL ) { if ( getenv("RFSIMULATOR") != NULL ) {
rfsimulator->ip=getenv("RFSIMULATOR"); rfsimulator->ip=getenv("RFSIMULATOR");
LOG_W(HW, "The RFSIMULATOR environment variable is deprecated and support will be removed in the future. Instead, add parameter --rfsimulator.serveraddr %s to set the server address. Note: the default is \"server\"; for the gNB/eNB, you don't have to set any configuration.\n", rfsimulator->ip);
LOG_I(HW, "Remove RFSIMULATOR environment variable to get rid of this message and the sleep.\n");
sleep(10);
} }
if ( strncasecmp(rfsimulator->ip,"enb",3) == 0 || if ( strncasecmp(rfsimulator->ip,"enb",3) == 0 ||
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment