mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-09 17:58:45 +02:00
implement --domain in audio-mixer
This commit is contained in:
parent
7a24a56670
commit
5c83942842
1 changed files with 5 additions and 0 deletions
|
@ -80,6 +80,11 @@ int main(int argc, const char* argv[]) {
|
|||
nodeList->setDomainIPToLocalhost();
|
||||
}
|
||||
|
||||
const char* domainIP = getCmdOption(argc, argv, "--domain");
|
||||
if (domainIP) {
|
||||
NodeList::getInstance()->setDomainHostname(domainIP);
|
||||
}
|
||||
|
||||
ssize_t receivedBytes = 0;
|
||||
|
||||
nodeList->linkedDataCreateCallback = attachNewBufferToNode;
|
||||
|
|
Loading…
Reference in a new issue