Changeset 9276 in orxonox.OLD for branches/proxy/src/lib/network/monitor
- Timestamp:
- Jul 13, 2006, 9:56:47 PM (19 years ago)
- Location:
- branches/proxy/src/lib/network/monitor
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/proxy/src/lib/network/monitor/network_monitor.cc
r9275 r9276 20 20 21 21 #include "network_monitor.h" 22 #include "network_node.h" 23 22 24 23 25 SHELL_COMMAND(showGUI, NetworkMonitor, showGUI); -
branches/proxy/src/lib/network/monitor/network_monitor.h
r9275 r9276 14 14 class NetworkStream; 15 15 class PeerInfo; 16 class NetworkNode; 16 17 17 18 namespace OrxGui { class GLGuiBox; }; 18 19 19 //!< a class representing a node in the network (this can be a MASTER_SERVER, PROXY_SERVER or a CLIENT20 class NetworkNode21 {22 public:23 NetworkNode() {}24 ~NetworkNode() {}25 20 26 27 private:28 int nodeType; //!< the type of the node29 30 std::list<PeerInfo*> clientList; //!< list of all clients in the network31 std::list<PeerInfo*> proxyServerList; //!< list of all proxy servers in the network32 std::list<PeerInfo*> masterServerList; //!< list of all master servers in the network (should be 1!! :D)33 34 };35 21 36 22 //!< a class that monitors the whole network. it tries to gather all informations its able to from the network
Note: See TracChangeset
for help on using the changeset viewer.