remove debug for isControl

This commit is contained in:
Stephen Birarda 2015-07-29 17:39:16 -07:00
parent 7c87ee3a72
commit 50b80c3c20

View file

@ -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);