Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 23, 2005, 5:30:22 PM (18 years ago)
Author:
rennerc
Message:

converter: added functions for strings
network_protocol: length and id are now int
network_game_manager: fixed some more bugs :D
skybox: is loaded on client corectly now :)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/network/src/lib/network/network_stream.cc

    r6256 r6273  
    215215  for (SynchronizeableList::iterator it = synchronizeables.begin(); it!=synchronizeables.end(); it++)
    216216  {
    217     if ( (*it)!=NULL && (*it)->getOwner() == myHostId )
     217    if ( (*it)!=NULL /*&& (*it)->getOwner() == myHostId*/ )
    218218    {
    219219      do {
     
    276276          continue;
    277277
    278         PRINTF(5)("read %d bytes from socket\n", dataLength);
    279278        header = networkProtocol->extractHeader(upBuffer, dataLength);
    280279        dataLength -= sizeof(header);
     280
     281        PRINTF(0)("read %d bytes from socket uniqueID = %d\n", dataLength, header.synchronizeableID);
    281282
    282283        if ( dataLength != header.length )
Note: See TracChangeset for help on using the changeset viewer.