add support for sending unverified datagrams to nodes

This commit is contained in:
ZappoMan 2014-04-18 15:33:27 -07:00
parent 334f688e4e
commit c2bcb32804

View file

@ -221,7 +221,7 @@ void OctreeHeadlessViewer::queryOctree() {
int packetLength = endOfQueryPacket - queryPacket;
// make sure we still have an active socket
nodeList->writeDatagram(reinterpret_cast<const char*>(queryPacket), packetLength, node);
nodeList->writeUnverifiedDatagram(reinterpret_cast<const char*>(queryPacket), packetLength, node);
}
}
}