Changeset 9273 in orxonox.OLD for branches/proxy/src/lib
- Timestamp:
- Jul 13, 2006, 8:58:57 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/proxy/src/lib/network/network_monitor.h
r9272 r9273 17 17 namespace OrxGui { class GLGuiBox; }; 18 18 19 //!< a class representing a node in the network (this can be a MASTER_SERVER, PROXY_SERVER or a CLIENT 20 class NetworkNode 21 { 22 public: 23 NetworkNode() {} 24 ~NetworkNode() {} 25 26 27 private: 28 int nodeType; //!< the type of the node 29 30 std::list<PeerInfo*> clientList; //!< list of all clients in the network 31 std::list<PeerInfo*> proxyServerList; //!< list of all proxy servers in the network 32 std::list<PeerInfo*> masterServerList; //!< list of all master servers in the network (should be 1!! :D) 33 34 }; 35 36 //!< a class that monitors the whole network. it tries to gather all informations its able to from the network 19 37 class NetworkMonitor : public Synchronizeable 20 38 { … … 44 62 std::list<PeerInfo*> masterServerList; //!< list of all master servers in the network (should be 1!! :D) 45 63 64 46 65 OrxGui::GLGuiBox* box; 47 66
Note: See TracChangeset
for help on using the changeset viewer.