Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/proxy/src/lib/network/peer_info.h @ 9290

Last change on this file since 9290 was 9290, checked in by patrick, 18 years ago

working with max connections

File size: 940 bytes
Line 
1/*!
2 * @file peer_info.h
3 *  implementation a peer info
4 */
5
6#ifndef _PEER_INFO_H
7#define _PEER_INFO_H
8
9#include "server_socket.h"
10#include "handshake.h"
11#include "monitor/connection_monitor.h"
12
13#include <string>
14
15//!< this structure contains informations about the network node
16class PeerInfo
17{
18  public:
19    PeerInfo();
20
21    void clear();
22
23
24    inline bool isMasterServer() { return this->nodeType == NET_MASTER_SERVER; }
25    inline bool isProxyServer() { return this->nodeType == NET_PROXY_SERVER; }
26    inline bool isClient() { return this->nodeType == NET_CLIENT; }
27
28    std::string getNodeTypeString();
29
30
31  public:
32    int                 userId;
33    int                 nodeType;
34    IPaddress           ip;
35
36    NetworkSocket *     socket;
37    Handshake *         handshake;
38    ConnectionMonitor * connectionMonitor;
39
40    int                 lastAckedState;
41    int                 lastRecvedState;
42};
43
44
45
46#endif /* _PEER_INFO_H */
Note: See TracBrowser for help on using the repository browser.