Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 16, 2005, 1:19:27 PM (18 years ago)
Author:
snellen
Message:

synchronizeable updated, connection_monitor.h and connection_monitor.cc updated

File:
1 edited

Legend:

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

    r5550 r5581  
    77#define _CONNECTION_MONITOR_H
    88
     9#include "base_object.h"
    910#include "netdefs.h"
    10 //#include "networkstream.h"
    1111
    12 class ConnectionMonitor
     12class ConnectionMonitor : virtual public BaseObject
    1313{
    1414        public:
     
    1616                        ~ConnectionMonitor();
    1717
     18    void                processPacket(byte* packet);
     19
     20
    1821        private:
    1922
    20     void                processPacket();
     23
    2124    void                displayStatistic();
    22 
    23   //NetworkStream&      networkStream;
    2425
    2526    unsigned int        totalReceivedPackets;
     
    2728    unsigned int        packetSize;
    2829
     30    unsigned int        currentPacketID;
    2931    unsigned int        currentDatarate;
    3032    unsigned int        timeForLastFewPackets;
    31 
    3233
    3334};
Note: See TracChangeset for help on using the changeset viewer.