Changeset 6994 in orxonox.OLD for trunk/src/lib/network
- Timestamp:
- Feb 2, 2006, 11:57:54 PM (19 years ago)
- Location:
- trunk/src/lib/network
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/network/network_game_manager.cc
r6985 r6994 539 539 PRINTF(0)("Fabricated %s with id %d\n", s->getClassName(), s->getUniqueID()); 540 540 541 // HACK: hack to prevent collision541 //TODO HACK: hack to prevent collision 542 542 if ( b->isA(CL_WORLD_ENTITY) && !b->isA(CL_PLAYABLE) ) 543 543 { … … 551 551 } 552 552 } 553 /// HACK this is only for network multiplayer games.553 ///TODO HACK this is only for network multiplayer games. 554 554 if( b->isA(CL_SPACE_SHIP)) 555 555 { -
trunk/src/lib/network/network_socket.cc
r6959 r6994 444 444 if (blen>maxLength) 445 445 { 446 PRINTF(1)("Buffersize is too small (%d) for packet (%d) \n", maxLength, blen);446 PRINTF(1)("Buffersize is too small (%d) for packet (%d).\n", maxLength, blen); 447 447 assert(false); 448 448 return 0; -
trunk/src/lib/network/network_socket.h
r6981 r6994 8 8 #define _NETWORK_SOCKET 9 9 10 // HACK else gdb will not work on server10 //TODO HACK else gdb will not work on server 11 11 #define DONTEXITTHREADS 12 12
Note: See TracChangeset
for help on using the changeset viewer.