Changeset 5607 in orxonox.OLD for branches/network
- Timestamp:
- Nov 16, 2005, 3:44:05 PM (19 years ago)
- Location:
- branches/network/src/lib/network
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/network/src/lib/network/network_stream.cc
r5604 r5607 34 34 35 35 /* initialize the references */ 36 this->networkSockets = NULL;36 this->networkSockets = new NetworkSocket(); 37 37 this->synchronizeables = NULL; 38 this->connectionMonitor = new ConnectionMonitor(); 39 38 40 } 39 41 -
branches/network/src/lib/network/network_stream.h
r5604 r5607 26 26 private: 27 27 //NetworkProtocol* networkProtocol; 28 NetworkSocket* networkSockets; 28 NetworkSocket* networkSockets; 29 ConnectionMonitor* connectionMonitor; 29 30 tList<Synchronizeable>* synchronizeables; 31 30 32 }; 31 33 #endif /* _NETWORK_STREAM */
Note: See TracChangeset
for help on using the changeset viewer.