Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/proxy/src/lib/network/ip.h @ 9334

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

work of the day in one commit:D

  • switched whole network framework to ip sturcture
  • extended ip structrue a little bit
  • reimplemented the disconnection/reconnection algorithm
  • synchronizeable ip bug discovered and solved
File size: 1.6 KB
Line 
1
2/*!
3 * @file ip.h
4 *
5 * @brief the ip class is used to transform strings to ip's and backwards
6 * it can also be used to
7 */
8
9#ifndef __IP_H__
10#define __IP_H__
11
12#include "netdefs.h"
13#include <string>
14
15
16
17//! A class to handle time itself
18class IP
19{
20  public:
21    /// CONSTRUCTORS
22    IP();
23    IP(int ip, int port);
24    IP(const std::string& ip, bool resolve = true);
25    IP(const std::string& ip, int port = -1, bool resolve = true);
26    IP(const IPaddress& ip);
27    IP(const IP& ip);
28
29    /// OPERATORS
30    const IP& operator=(const IP& ip);
31    const IP& operator=(const IPaddress& ip);
32    bool operator==(const IP& ip);
33    bool operator!=(const IP& up);
34
35    /// RETRIVEAL
36    /** @returns the IP */
37    int ip() const { return this->_ip; };
38    /** @returns the Port */
39    short port() const { return this->_port; };
40    inline IPaddress getSDLNotation() { IPaddress sdlIP; sdlIP.host = this->_ip; sdlIP.port = this->_port; return sdlIP; }
41
42    int ipPart(unsigned int part) const;
43    std::string ipString() const;
44
45    void debug() const;
46
47  public:
48    /// SETUP
49    static IP stringToIP(const std::string& ip, int port = -1, bool resolve = true);
50
51    static std::string ipToString(const IPaddress& ipaddr);
52    static std::string ipToString(int ip, int port = -1);
53
54    static void setDefaultPort(short defaultPort);
55    static short defaultPort(short defaultPort) { return IP::_defaultPort; };
56
57  private:
58    int           _ip;           //!< The IP in int form.
59    short         _port;         //!< The Port number of the IP
60
61    static short  _defaultPort;  //!< Default Port
62};
63
64#endif /* __IP_H__ */
Note: See TracBrowser for help on using the repository browser.