Changeset 9583 in orxonox.OLD for branches/proxy/src/lib/network/monitor
- Timestamp:
- Jul 28, 2006, 10:07:15 PM (18 years ago)
- Location:
- branches/proxy/src/lib/network/monitor
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/proxy/src/lib/network/monitor/network_monitor.h
r9494 r9583 76 76 77 77 inline const std::list<NetworkNode*>& getNodeList() const { return this->nodeList; }; 78 inline PeerInfo* getPeerByUserId( int userId) { this->localNode->getPeerByUserId(userId); } 78 79 79 80 void toggleGUI(); -
branches/proxy/src/lib/network/monitor/network_node.cc
r9582 r9583 154 154 * @return the peer info of this node NULL if nothing found 155 155 */ 156 PeerInfo* NetworkNode::get NodeByUserId( int userId)156 PeerInfo* NetworkNode::getPeerByUserId( int userId) 157 157 { 158 158 // look through the master server lists -
branches/proxy/src/lib/network/monitor/network_node.h
r9582 r9583 46 46 inline std::list<PeerInfo*> getClient() const { return this->clientList; } 47 47 48 PeerInfo* get NodeByUserId( int userId);48 PeerInfo* getPeerByUserId( int userId); 49 49 50 50 /** @returns the number of players */
Note: See TracChangeset
for help on using the changeset viewer.