mirror of
https://github.com/overte-org/overte.git
synced 2025-04-08 16:55:06 +02:00
test for android figuring out about audio-mixer
This commit is contained in:
parent
998457665f
commit
8a69f0de61
2 changed files with 4 additions and 4 deletions
|
@ -864,10 +864,10 @@ void DomainServer::sendDomainListToNode(const SharedNodePointer& node, const Hif
|
|||
}
|
||||
});
|
||||
}
|
||||
|
||||
// always write the last broadcastPacket
|
||||
nodeList->writeDatagram(broadcastPacket, node, senderSockAddr);
|
||||
}
|
||||
|
||||
// always write the last broadcastPacket
|
||||
nodeList->writeDatagram(broadcastPacket, node, senderSockAddr);
|
||||
}
|
||||
|
||||
void DomainServer::readAvailableDatagrams() {
|
||||
|
|
|
@ -20,6 +20,7 @@ GVRInterface::GVRInterface(int argc, char* argv[]) :
|
|||
|
||||
connect(&nodeList->getNodeSocket(), &QUdpSocket::readyRead, this, &GVRInterface::processDatagrams);
|
||||
|
||||
nodeList->addNodeTypeToInterestSet(NodeType::AudioMixer);
|
||||
nodeList->getDomainHandler().setHostname("10.0.0.190");
|
||||
|
||||
QTimer* domainServerTimer = new QTimer(this);
|
||||
|
@ -42,7 +43,6 @@ void GVRInterface::processDatagrams() {
|
|||
nodeList->getNodeSocket().readDatagram(incomingPacket.data(), incomingPacket.size(),
|
||||
senderSockAddr.getAddressPointer(), senderSockAddr.getPortPointer());
|
||||
|
||||
qDebug() << "Processing a packet!";
|
||||
nodeList->processNodeData(senderSockAddr, incomingPacket);
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue