mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-09 21:51:36 +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
|
@ -79,6 +79,11 @@ int main(int argc, const char* argv[]) {
|
||||||
printf("Local Domain MODE!\n");
|
printf("Local Domain MODE!\n");
|
||||||
nodeList->setDomainIPToLocalhost();
|
nodeList->setDomainIPToLocalhost();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const char* domainIP = getCmdOption(argc, argv, "--domain");
|
||||||
|
if (domainIP) {
|
||||||
|
NodeList::getInstance()->setDomainHostname(domainIP);
|
||||||
|
}
|
||||||
|
|
||||||
ssize_t receivedBytes = 0;
|
ssize_t receivedBytes = 0;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue