1 // Copyright (c) 2009-2012 The Bitcoin developers
2 // Distributed under the MIT/X11 software license, see the accompanying
3 // file license.txt or http://www.opensource.org/licenses/mit-license.php.
4 #ifndef BITCOIN_NETBASE_H
5 #define BITCOIN_NETBASE_H
11 #define _WIN32_WINNT 0x0501
16 #include <sys/types.h>
17 #include <sys/socket.h>
18 #include <arpa/inet.h>
24 #include <netinet/in.h>
27 #include "serialize.h"
30 extern int nConnectTimeout;
33 /** IP address (IPv6, or IPv4 using mapped IPv6 range (::FFFF:0:0/96)) */
37 unsigned char ip[16]; // in network byte order
41 CNetAddr(const struct in_addr& ipv4Addr);
42 explicit CNetAddr(const char *pszIp, bool fAllowLookup = false);
43 explicit CNetAddr(const std::string &strIp, bool fAllowLookup = false);
45 void SetIP(const CNetAddr& ip);
46 bool IsIPv4() const; // IPv4 mapped address (::FFFF:0:0/96, 0.0.0.0/0)
47 bool IsRFC1918() const; // IPv4 private networks (10.0.0.0/8, 192.168.0.0/16, 172.16.0.0/12)
48 bool IsRFC3849() const; // IPv6 documentation address (2001:0DB8::/32)
49 bool IsRFC3927() const; // IPv4 autoconfig (169.254.0.0/16)
50 bool IsRFC3964() const; // IPv6 6to4 tunneling (2002::/16)
51 bool IsRFC4193() const; // IPv6 unique local (FC00::/15)
52 bool IsRFC4380() const; // IPv6 Teredo tunneling (2001::/32)
53 bool IsRFC4843() const; // IPv6 ORCHID (2001:10::/28)
54 bool IsRFC4862() const; // IPv6 autoconfig (FE80::/64)
55 bool IsRFC6052() const; // IPv6 well-known prefix (64:FF9B::/96)
56 bool IsRFC6145() const; // IPv6 IPv4-translated address (::FFFF:0:0:0/96)
58 bool IsRoutable() const;
60 bool IsMulticast() const;
61 std::string ToString() const;
62 std::string ToStringIP() const;
63 int GetByte(int n) const;
64 int64 GetHash() const;
65 bool GetInAddr(struct in_addr* pipv4Addr) const;
66 std::vector<unsigned char> GetGroup() const;
70 CNetAddr(const struct in6_addr& pipv6Addr);
71 bool GetIn6Addr(struct in6_addr* pipv6Addr) const;
74 friend bool operator==(const CNetAddr& a, const CNetAddr& b);
75 friend bool operator!=(const CNetAddr& a, const CNetAddr& b);
76 friend bool operator<(const CNetAddr& a, const CNetAddr& b);
80 READWRITE(FLATDATA(ip));
84 /** A combination of a network address (CNetAddr) and a (TCP) port */
85 class CService : public CNetAddr
88 unsigned short port; // host order
92 CService(const CNetAddr& ip, unsigned short port);
93 CService(const struct in_addr& ipv4Addr, unsigned short port);
94 CService(const struct sockaddr_in& addr);
95 explicit CService(const char *pszIpPort, int portDefault, bool fAllowLookup = false);
96 explicit CService(const char *pszIpPort, bool fAllowLookup = false);
97 explicit CService(const std::string& strIpPort, int portDefault, bool fAllowLookup = false);
98 explicit CService(const std::string& strIpPort, bool fAllowLookup = false);
100 void SetPort(unsigned short portIn);
101 unsigned short GetPort() const;
102 bool GetSockAddr(struct sockaddr_in* paddr) const;
103 friend bool operator==(const CService& a, const CService& b);
104 friend bool operator!=(const CService& a, const CService& b);
105 friend bool operator<(const CService& a, const CService& b);
106 std::vector<unsigned char> GetKey() const;
107 std::string ToString() const;
108 std::string ToStringPort() const;
109 std::string ToStringIPPort() const;
113 CService(const struct in6_addr& ipv6Addr, unsigned short port);
114 bool GetSockAddr6(struct sockaddr_in6* paddr) const;
115 CService(const struct sockaddr_in6& addr);
120 CService* pthis = const_cast<CService*>(this);
121 READWRITE(FLATDATA(ip));
122 unsigned short portN = htons(port);
125 pthis->port = ntohs(portN);
129 bool LookupHost(const char *pszName, std::vector<CNetAddr>& vIP, int nMaxSolutions = 0, bool fAllowLookup = true);
130 bool LookupHostNumeric(const char *pszName, std::vector<CNetAddr>& vIP, int nMaxSolutions = 0);
131 bool Lookup(const char *pszName, CService& addr, int portDefault = 0, bool fAllowLookup = true);
132 bool Lookup(const char *pszName, std::vector<CService>& vAddr, int portDefault = 0, bool fAllowLookup = true, int nMaxSolutions = 0);
133 bool LookupNumeric(const char *pszName, CService& addr, int portDefault = 0);
134 bool ConnectSocket(const CService &addr, SOCKET& hSocketRet, int nTimeout = nConnectTimeout);
137 extern int fUseProxy;
138 extern CService addrProxy;