mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 12:33:27 +02:00
remove debug for isControl
This commit is contained in:
parent
7c87ee3a72
commit
50b80c3c20
1 changed files with 0 additions and 2 deletions
|
@ -139,8 +139,6 @@ void Socket::readPendingDatagrams() {
|
||||||
// check if this was a control packet or a data packet
|
// check if this was a control packet or a data packet
|
||||||
bool isControlPacket = *buffer & CONTROL_BIT_MASK;
|
bool isControlPacket = *buffer & CONTROL_BIT_MASK;
|
||||||
|
|
||||||
qDebug() << "IS CONTROL" << isControlPacket;
|
|
||||||
|
|
||||||
if (isControlPacket) {
|
if (isControlPacket) {
|
||||||
// setup a control packet from the data we just read
|
// setup a control packet from the data we just read
|
||||||
auto controlPacket = ControlPacket::fromReceivedPacket(std::move(buffer), packetSizeWithHeader, senderSockAddr);
|
auto controlPacket = ControlPacket::fromReceivedPacket(std::move(buffer), packetSizeWithHeader, senderSockAddr);
|
||||||
|
|
Loading…
Reference in a new issue