⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 socketaddress.h

📁 本人收集整理的一份c/c++跨平台网络库
💻 H
字号:
#ifndef UTILS_BASE_SOCKETADDRESS_H_#define UTILS_BASE_SOCKETADDRESS_H_#include <string>#include <vector>#include "basictypes.h"struct sockaddr_in;#undef SetPortnamespace utils_base {// Records an IP address and port, which are 32 and 16 bit integers,// respectively, both in <b>host byte-order</b>.class SocketAddress {public:  // Creates a missing / unknown address.  SocketAddress();  // Creates the address with the given host and port.  If use_dns is true,  // the hostname will be immediately resolved to an IP (which may block for  // several seconds if DNS is not available).  Alternately, set use_dns to  // false, and then call Resolve() to complete resolution later, or use  // SetResolvedIP to set the IP explictly.  SocketAddress(const std::string& hostname, int port = 0, bool use_dns = true);  // Creates the address with the given IP and port.  SocketAddress(uint32 ip, int port);  // Creates a copy of the given address.  SocketAddress(const SocketAddress& addr);  // Resets to missing / unknown address.  void Clear();  // Replaces our address with the given one.  SocketAddress& operator =(const SocketAddress& addr);  // Changes the IP of this address to the given one, and clears the hostname.  void SetIP(uint32 ip);  // Changes the hostname of this address to the given one.  // Calls Resolve and returns the result.  bool SetIP(const std::string& hostname, bool use_dns = true);  // Sets the IP address while retaining the hostname.  Useful for bypassing  // DNS for a pre-resolved IP.  void SetResolvedIP(uint32 ip);  // Changes the port of this address to the given one.  void SetPort(int port);  // Returns the IP address.  uint32 ip() const;  // Returns the port part of this address.  uint16 port() const;  // Returns the hostname  const std::string& hostname() const { return hostname_; };  // Returns the IP address in dotted form.  std::string IPAsString() const;  // Returns the port as a string  std::string PortAsString() const;  // Returns a display version of the IP/port.  std::string ToString() const;  // Determines whether this represents a missing / any address.  bool IsAny() const;  // Synomym for missing / any.  bool IsNil() const { return IsAny(); }  // Determines whether the IP address refers to the local host, i.e. within  // the range 127.0.0.0/8.  bool IsLocalIP() const;  // Determines whether the IP address is in one of the private ranges:  // 127.0.0.0/8 10.0.0.0/8 192.168.0.0/16 172.16.0.0/12.  bool IsPrivateIP() const;  // Determines whether the hostname has been resolved to an IP  bool IsUnresolved() const;  // Attempt to resolve a hostname to IP address.  // Returns false if resolution is required but failed.  // 'force' will cause re-resolution of hostname.  //   bool Resolve(bool force = false, bool use_dns = true);  // Determines whether this address is identical to the given one.  bool operator ==(const SocketAddress& addr) const;  inline bool operator !=(const SocketAddress& addr) const {    return !this->operator ==(addr);  }  // Compares based on IP and then port.  bool operator <(const SocketAddress& addr) const;  // Determines whether this address has the same IP as the one given.  bool EqualIPs(const SocketAddress& addr) const;  // Deteremines whether this address has the same port as the one given.  bool EqualPorts(const SocketAddress& addr) const;  // Hashes this address into a small number.  size_t Hash() const;  // Returns the size of this address when written.  size_t Size_() const;  // Writes this address into the given buffer.  void Write_(char* buf, int len) const;  // Reads this address from the given buffer.  void Read_(const char* buf, int len);  // Convert to and from sockaddr_in  void ToSockAddr(sockaddr_in* saddr) const;  void FromSockAddr(const sockaddr_in& saddr);  // Converts the IP address given in compact form into dotted form.  static std::string IPToString(uint32 ip);  // Converts the IP address given in dotted form into compact form.  // Without 'use_dns', only dotted names (A.B.C.D) are resolved.  static uint32 StringToIP(const std::string& str, bool use_dns = true);  // Get local machine's hostname  static std::string GetHostname();  // Get a list of the local machine's ip addresses  static bool GetLocalIPs(std::vector<uint32>& ips);private:  std::string hostname_;  uint32 ip_;  uint16 port_;};} // namespace utils_base#endif // UTILS_BASE_SOCKETADDRESS_H_

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -