Socket library and Config library restructuring, improvement to UDP socket reliability
This commit is contained in:
parent
97752f2c2d
commit
3d26741148
37 changed files with 151 additions and 110 deletions
|
@ -46,7 +46,7 @@ namespace Mist{
|
|||
streamName = opt["sink"].asString();
|
||||
if (!streamName.size()){streamName = opt["source"].asString();}
|
||||
Util::streamVariables(streamName, opt["source"].asString());
|
||||
Util::Config::streamName = opt["source"].asString() + "→" + streamName;
|
||||
Util::streamName = opt["source"].asString() + "→" + streamName;
|
||||
}
|
||||
bool needsLock(){return false;}
|
||||
bool isSingular(){return false;}
|
||||
|
|
|
@ -389,7 +389,7 @@ namespace Mist{
|
|||
streamName = opt["sink"].asString();
|
||||
if (!streamName.size()){streamName = opt["source"].asString();}
|
||||
Util::streamVariables(streamName, opt["source"].asString());
|
||||
Util::Config::streamName = opt["source"].asString() + "→" + streamName;
|
||||
Util::streamName = opt["source"].asString() + "→" + streamName;
|
||||
}
|
||||
|
||||
std::string EncodeOutputEBML::getTrackType(int tid){return M.getType(tid);}
|
||||
|
|
|
@ -227,7 +227,7 @@ namespace Mist{
|
|||
streamName = opt["sink"].asString();
|
||||
if (!streamName.size()){streamName = opt["source"].asString();}
|
||||
Util::streamVariables(streamName, opt["source"].asString());
|
||||
Util::Config::streamName = opt["source"].asString() + "→" + streamName;
|
||||
Util::streamName = opt["source"].asString() + "→" + streamName;
|
||||
preRun();
|
||||
};
|
||||
virtual bool needsLock(){return false;}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue