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 | |
---|
10 | #ifndef __IP_H__ |
---|
11 | #define __IP_H__ |
---|
12 | |
---|
13 | #include <string> |
---|
14 | |
---|
15 | #include "netdefs.h" |
---|
16 | |
---|
17 | |
---|
18 | //! A class to handle time itself |
---|
19 | class IP |
---|
20 | { |
---|
21 | public: |
---|
22 | /// CONSTRUCTORS |
---|
23 | IP(); |
---|
24 | IP(const std::string& ip, int port = -1, bool resolve = true); |
---|
25 | IP(int ip, int port); |
---|
26 | IP(const IPaddress& ip); |
---|
27 | IP(const IP& ip); |
---|
28 | |
---|
29 | /// OPERATORS |
---|
30 | const IP& operator=(const IP& ip); |
---|
31 | bool operator==(const IP& ip); |
---|
32 | |
---|
33 | /// RETRIEAL |
---|
34 | /** @returns the IP */ |
---|
35 | int ip() const { return this->_ip; }; |
---|
36 | /** @returns the Port */ |
---|
37 | short port() const { return this->_port; }; |
---|
38 | |
---|
39 | int ipPart(unsigned int part) const; |
---|
40 | std::string ipString() const; |
---|
41 | |
---|
42 | public: |
---|
43 | |
---|
44 | /// SETUP |
---|
45 | static IP stringToIP(const std::string& ip, int port = -1, bool resolve = true); |
---|
46 | |
---|
47 | |
---|
48 | static std::string ipToString(const IPaddress& ipaddr); |
---|
49 | static std::string ipToString(int ip, int port = -1); |
---|
50 | |
---|
51 | private: |
---|
52 | int _ip; //!< The IP in int form. |
---|
53 | short _port; //!< The Port number of the IP |
---|
54 | |
---|
55 | }; |
---|
56 | |
---|
57 | #endif /* __IP_H__ */ |
---|
Note: See
TracBrowser
for help on using the repository browser.