Changeset 9268 in orxonox.OLD for branches/proxy/src/lib/network/network_stream.h
- Timestamp:
- Jul 13, 2006, 11:32:48 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/proxy/src/lib/network/network_stream.h
r9255 r9268 22 22 class ServerSocket; 23 23 class NetworkGameManager; 24 class NetworkMonitor; 24 25 25 26 … … 66 67 67 68 private: 69 68 70 inline SynchronizeableList::const_iterator getSyncBegin(){ return synchronizeables.begin(); } 69 71 inline SynchronizeableList::const_iterator getSyncEnd(){ return synchronizeables.end(); } 70 72 inline PeerInfo & getPeerInfo( int userId ) { return peers[userId]; } 71 73 void cleanUpOldSyncList(); 72 74 int getSyncCount(); 73 75 74 76 void updateConnectionList(); 77 75 78 void handleHandshakes(); 76 79 void handleUpstream( int tick ); 77 80 void handleDownstream(int tick ); 78 81 void handleNewClient( int userId ); 79 void cleanUpOldSyncList(); 82 80 83 81 84 void writeToNewDict( byte * data, int length, bool upstream ); … … 91 94 int currentState; //!< current state id 92 95 96 NetworkMonitor* networkMonitor; //!< the network monitor 93 97 NetworkGameManager* networkGameManager; //!< reference to the network game manager 94 98 ServerSocket* serverSocket; //!< the listening socket of the server
Note: See TracChangeset
for help on using the changeset viewer.