Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 9400 in orxonox.OLD


Ignore:
Timestamp:
Jul 24, 2006, 8:53:52 AM (18 years ago)
Author:
patrick
Message:

tracing the unique id bug

Location:
branches/proxy/src/lib/network
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/proxy/src/lib/network/README.NETWORK

    r9397 r9400  
    1313
    1414
     15uniqueId:
     16uniqueId is an id (unique :D) for each synchronizeable to be identified in a network. the number space for uniqueIds goes from 0 to maxplayers - 1
     17
     18
    1519NetworkStream PeerInfo list: (peers)
    1620The network node with the offset 0 is always the server to which the client must connect to (in case there are connections to other hosts at the same time).
  • branches/proxy/src/lib/network/monitor/network_monitor.cc

    r9397 r9400  
    247247  // check if a proxy server has to activated
    248248
    249   this->debug();
     249//   this->debug();
    250250}
    251251
  • branches/proxy/src/lib/network/network_stream.cc

    r9399 r9400  
    724724      else
    725725        n = Converter::intToByteArray( sync.getUniqueID(), buf + offset, UDP_PACKET_SIZE - offset );
     726
     727      PRINTF(0)("unique id: %i\n", sync.getUniqueID());
    726728
    727729      assert( n == INTSIZE );
Note: See TracChangeset for help on using the changeset viewer.