Loading src/server.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -306,7 +306,7 @@ void p3::clientHandler::handle_status() { auto l = phone.get_status_dump(); for (auto v : l) { connection.send(p3::protocol::TEXT, "p3" + v.first + "='" + v.second + "'"); connection.send(p3::protocol::TEXT, "p3" + v.first + "=" + v.second); } connection.send(p3::protocol::ENDTEXT, "End Status"); Loading src/sipphone.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -204,7 +204,7 @@ void p3::sipphone::handle_incoming_call(int pjid) { } pj::CallOpParam o; if (always_busy || (get_call_count() < 1 && conf.get_bool("phone:busy_on_busy"))) { if (always_busy || (get_call_count() > 1 && conf.get_bool("phone:busy_on_busy"))) { o.statusCode = PJSIP_SC_BUSY_HERE; c->hangup(o); } else { Loading Loading
src/server.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -306,7 +306,7 @@ void p3::clientHandler::handle_status() { auto l = phone.get_status_dump(); for (auto v : l) { connection.send(p3::protocol::TEXT, "p3" + v.first + "='" + v.second + "'"); connection.send(p3::protocol::TEXT, "p3" + v.first + "=" + v.second); } connection.send(p3::protocol::ENDTEXT, "End Status"); Loading
src/sipphone.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -204,7 +204,7 @@ void p3::sipphone::handle_incoming_call(int pjid) { } pj::CallOpParam o; if (always_busy || (get_call_count() < 1 && conf.get_bool("phone:busy_on_busy"))) { if (always_busy || (get_call_count() > 1 && conf.get_bool("phone:busy_on_busy"))) { o.statusCode = PJSIP_SC_BUSY_HERE; c->hangup(o); } else { Loading