Fixes config util for nonsection applications, attempt to fix DDV_Controller process spawning.
This commit is contained in:
parent
66b2e8cbc8
commit
96af25e562
2 changed files with 16 additions and 8 deletions
|
@ -261,7 +261,7 @@ void CheckProtocols(Json::Value & p){
|
|||
if (connports["HTTP"] != tmp){Util::Procs::Stop("HTTP");}
|
||||
connports["HTTP"] = tmp;
|
||||
if (!Util::Procs::isActive("HTTP")){
|
||||
Util::Procs::Start("HTTP", std::string("DDV_Conn_HTTP -p ")+tmp);
|
||||
Util::Procs::Start("HTTP", std::string("DDV_Conn_HTTP -n -p ")+tmp);
|
||||
}
|
||||
}
|
||||
if (jit.memberName() == std::string("RTMP")){
|
||||
|
@ -270,7 +270,7 @@ void CheckProtocols(Json::Value & p){
|
|||
if (connports["RTMP"] != tmp){Util::Procs::Stop("RTMP");}
|
||||
connports["RTMP"] = tmp;
|
||||
if (!Util::Procs::isActive("RTMP")){
|
||||
Util::Procs::Start("RTMP", std::string("DDV_Conn_RTMP -p ")+tmp);
|
||||
Util::Procs::Start("RTMP", std::string("DDV_Conn_RTMP -n -p ")+tmp);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue