mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 09:44:21 +02:00
added more debugging
This commit is contained in:
parent
3ba9c8c30e
commit
1c580551bb
1 changed files with 4 additions and 0 deletions
|
@ -32,6 +32,10 @@ bool ReceivedPacketProcessor::process() {
|
|||
}
|
||||
while (_packets.size() > 0) {
|
||||
NetworkPacket& packet = _packets.front();
|
||||
|
||||
printf("ReceivedPacketProcessor::process() calling processPacket() NetworkPacket=%p packet.getData()=%p packet.getLength()=%ld\n",
|
||||
&packet, packet.getData(), packet.getLength() );
|
||||
|
||||
processPacket(packet.getAddress(), packet.getData(), packet.getLength());
|
||||
|
||||
lock();
|
||||
|
|
Loading…
Reference in a new issue