mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-29 20:16:42 +02:00
removed debug code
This commit is contained in:
parent
85363f6603
commit
132b043d68
1 changed files with 0 additions and 4 deletions
|
@ -28,12 +28,8 @@ Agent::Agent(const unsigned char* dataBuffer, int numBytes) :
|
||||||
}
|
}
|
||||||
|
|
||||||
void Agent::processDatagram(const QByteArray& dataByteArray, const HifiSockAddr& senderSockAddr) {
|
void Agent::processDatagram(const QByteArray& dataByteArray, const HifiSockAddr& senderSockAddr) {
|
||||||
qDebug() << "Agent::processDatagram()";
|
|
||||||
if (dataByteArray[0] == PACKET_TYPE_JURISDICTION) {
|
if (dataByteArray[0] == PACKET_TYPE_JURISDICTION) {
|
||||||
int headerBytes = numBytesForPacketHeader((const unsigned char*) dataByteArray.constData());
|
int headerBytes = numBytesForPacketHeader((const unsigned char*) dataByteArray.constData());
|
||||||
|
|
||||||
qDebug() << "Agent::processDatagram() PACKET_TYPE_JURISDICTION... dataByteArray[headerBytes]=" << (dataByteArray[headerBytes]);
|
|
||||||
|
|
||||||
// PACKET_TYPE_JURISDICTION, first byte is the node type...
|
// PACKET_TYPE_JURISDICTION, first byte is the node type...
|
||||||
switch (dataByteArray[headerBytes]) {
|
switch (dataByteArray[headerBytes]) {
|
||||||
case NODE_TYPE_VOXEL_SERVER:
|
case NODE_TYPE_VOXEL_SERVER:
|
||||||
|
|
Loading…
Reference in a new issue