Changeset 9254 in orxonox.OLD for branches/proxy/src/lib/network/network_stream.h
- Timestamp:
- Jul 12, 2006, 1:56:38 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/proxy/src/lib/network/network_stream.h
r9252 r9254 50 50 inline bool isProxyServer() const { return (this->type == NET_PROXY_SERVER)? true:false; } 51 51 inline bool isClient() const { return (this->type == NET_CLIENT)? true:false; } 52 inline bool isActive() const { return this->bActive; }52 // inline bool isActive() const { return this->bActive; } 53 53 inline int getMaxConnections(){ return MAX_CONNECTIONS; } 54 54 … … 87 87 int type; //!< the type of this host (NET_CLIENT, NET_MASTER_SERVER,...) 88 88 int myHostId; //!< the host id of the localhost 89 bool bActive;//!< true if this host is active89 /* bool bActive; */ //!< true if this host is active 90 90 91 91 std::list<int> freeSocketSlots; //!< list of free sockets (to ensure not to resycle sockets)
Note: See TracChangeset
for help on using the changeset viewer.