laforge
/
openbts-osmo
Archived
1
0
Fork 0

Uncomment real BTS start/stop.

This commit is contained in:
Alexander Chemeris 2010-11-22 13:26:10 +03:00 committed by Thomas Tsou
parent a4cbf3bae3
commit 163290b60e
1 changed files with 2 additions and 2 deletions

View File

@ -269,7 +269,7 @@ int main(int argc, char *argv[])
gSetLogFile(gConfig.getStr("Log.FileName"));
}
// startBTS();
startBTS();
if (strcasecmp(gConfig.getStr("CLI.Type"),"TCP") == 0) {
ConnectionServerSocketTCP serverSock(gConfig.getNum("CLI.TCP.Port"),
@ -282,7 +282,7 @@ int main(int argc, char *argv[])
runCLI(&gParser);
}
// stopBTS();
stopBTS();
}