|
|
|
|
@ -232,6 +232,8 @@ void Control::setOptions(yaml::Node& conf, const std::string cwCallsign, const s
|
|
|
|
|
m_trunk->m_noMessageAck = p25Protocol["noMessageAck"].as<bool>(true);
|
|
|
|
|
m_trunk->m_unitToUnitAvailCheck = p25Protocol["unitToUnitAvailCheck"].as<bool>(true);
|
|
|
|
|
|
|
|
|
|
m_trunk->m_sndcpChGrant = p25Protocol["sndcpGrant"].as<bool>(false);
|
|
|
|
|
|
|
|
|
|
yaml::Node control = p25Protocol["control"];
|
|
|
|
|
m_control = control["enable"].as<bool>(false);
|
|
|
|
|
if (m_control) {
|
|
|
|
|
@ -310,6 +312,8 @@ void Control::setOptions(yaml::Node& conf, const std::string cwCallsign, const s
|
|
|
|
|
LogInfo(" Verify Affiliation: %s", m_trunk->m_verifyAff ? "yes" : "no");
|
|
|
|
|
LogInfo(" Verify Registration: %s", m_trunk->m_verifyReg ? "yes" : "no");
|
|
|
|
|
|
|
|
|
|
LogInfo(" SNDCP Channel Grant: %s", m_trunk->m_sndcpChGrant ? "yes" : "no");
|
|
|
|
|
|
|
|
|
|
LogInfo(" No Status ACK: %s", m_trunk->m_noStatusAck ? "yes" : "no");
|
|
|
|
|
LogInfo(" No Message ACK: %s", m_trunk->m_noMessageAck ? "yes" : "no");
|
|
|
|
|
LogInfo(" Unit-to-Unit Availability Check: %s", m_trunk->m_unitToUnitAvailCheck ? "yes" : "no");
|
|
|
|
|
|