Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5798 in orxonox.OLD for branches/network/src/lib/network


Ignore:
Timestamp:
Nov 27, 2005, 5:52:32 PM (19 years ago)
Author:
patrick
Message:

network: testing env. got segfault in the code

Location:
branches/network/src/lib/network
Files:
5 edited

Legend:

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

    r5749 r5798  
    128128void ConnectionMonitor::displayStatistic()
    129129{
    130   PRINT(0)("============================================\n");
    131   PRINT(0)("Connection Monitor Network Statistics:\n");
    132   PRINT(0)("Total received packets:",totalReceivedPackets);
    133   PRINT(0)("Average datarate :\n",averageDatarate);
    134   PRINT(0)("Total lost packets:",totalLostPackets);
    135   PRINT(0)("Packetloss [%] :\n",totalPacketloss);
    136 
    137   PRINT(0)("Current datarate :\n",currentDatarate);
    138   PRINT(0)("Delays of the last few packets :\n");
    139   for(int i=1 ;i <= packetToAverage-1;i++)
    140     PRINT(0)("%i ",lastFewDelays[i]);
    141 
    142   PRINT(0)("============================================\n");
     130//   PRINT(0)("============================================\n");
     131//   PRINT(0)("Connection Monitor Network Statistics:\n");
     132//   PRINT(0)("Total received packets:",totalReceivedPackets);
     133//   PRINT(0)("Average datarate :\n",averageDatarate);
     134//   PRINT(0)("Total lost packets:",totalLostPackets);
     135//   PRINT(0)("Packetloss [%] :\n",totalPacketloss);
     136//
     137//   PRINT(0)("Current datarate :\n",currentDatarate);
     138//   PRINT(0)("Delays of the last few packets :\n");
     139//   for(int i=1 ;i <= packetToAverage-1;i++)
     140//     PRINT(0)("%i ",lastFewDelays[i]);
     141//
     142//   PRINT(0)("============================================\n");
    143143
    144144}
  • branches/network/src/lib/network/network_manager.cc

    r5649 r5798  
    167167    while( stream)
    168168    {
     169      printf("NetworkManager::synchronize ");
     170      if(stream->isServer()) printf("Server\n"); else printf("Client\n");
    169171      stream->processData();
    170172      stream = (NetworkStream*)(iterator->nextElement());
  • branches/network/src/lib/network/network_socket.cc

    r5752 r5798  
    218218  memcpy(outgoingBuffer + outgoingBufferLength, data, nbytes);
    219219  outgoingBufferLength += nbytes;
    220 
     220 
    221221  SDL_mutexV(outgoingBufferMutex);
    222222
  • branches/network/src/lib/network/network_stream.cc

    r5747 r5798  
    121121
    122122  /* first of all read  data from networkSocket*/
    123   while(ret == 0)
    124123  ret = this->networkSocket->readBlock((byte*)upBuffer, PACKAGE_SIZE + sizeof(Header));
    125124  /* error checking: data read? */
  • branches/network/src/lib/network/network_stream.h

    r5741 r5798  
    2626  void init();
    2727 
     28  inline bool isServer() { return (this->type == NET_SERVER)? true:false; }
    2829  virtual void processData();
    2930
     
    3536   Synchronizeable*         synchronizeables;
    3637   NetworkSocket* networkSocket;
     38   int                    type;
    3739};
    3840#endif /* _NETWORK_STREAM */
Note: See TracChangeset for help on using the changeset viewer.