Correct default P25 porsts and add Daemon config variable

This commit is contained in:
Doug McLain
2020-06-24 02:14:16 -04:00
parent 278160c31a
commit c6566f9c84
2 changed files with 5 additions and 2 deletions
+2
View File
@@ -203,6 +203,8 @@ bool CConf::read()
m_p25LocalPort = (unsigned int)::atoi(value);
else if (::strcmp(key, "TGListFile") == 0)
m_p25TGListFile = value;
else if (::strcmp(key, "Daemon") == 0)
m_daemon = ::atoi(value) == 1;
else if (::strcmp(key, "Debug") == 0)
m_p25NetworkDebug = ::atoi(value) == 1;
}