Changeset 9515 in orxonox.OLD for branches/proxy/src/lib
- Timestamp:
- Jul 27, 2006, 6:15:09 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/proxy/src/lib/network/message_manager.cc
r9514 r9515 221 221 for ( std::list<NetworkMessage>::iterator it = incomingMessageQueue.begin(); it != incomingMessageQueue.end(); ) 222 222 { 223 PRINTF(0)(" MessageManager: got msg with type: %i\n", it->messageType);223 PRINTF(0)("<<< MessageManager: got msg with type: %i\n", it->messageType); 224 224 225 225 if ( (*(messageHandlerMap[it->messageType].cb))( it->messageType, it->data, it->length, messageHandlerMap[it->messageType].someData, it->number ) ) … … 327 327 void MessageManager::sendMessage( MessageType messageType, byte * data, int dataLength, RecieverType recieverType, int reciever, MessagePriority messagePriority ) 328 328 { 329 PRINTF(0)(" >>> MessageManager: sending msg with type: %i, recieverType: %i, reciever %i\n", messageType, recieverType, reciever); 330 329 331 // go through all outgoing message queues and add the message if its appropriate 330 332 for ( MessageQueue::iterator it = this->outgoingMessageQueue.begin(); it != this->outgoingMessageQueue.end(); it++ )
Note: See TracChangeset
for help on using the changeset viewer.