14 #define bswap_32(x) _byteswap_ulong(x) 15 using in_addr_t = in_addr;
17 #elif defined(__APPLE__) 20 #include <libkern/OSByteOrder.h> 21 #define bswap_32(x) OSSwapInt32(x) 22 #include <arpa/inet.h> 26 #include <arpa/inet.h> 44 IpAddress(uint32_t address_raw) : address_network_order_(address_raw) {}
51 uint32_t tmp = (a << 24) | (b << 16) | (c << 8) | (d);
73 if (inet_pton(AF_INET, ip_str.c_str(), &addr) != 1)
76 address_network_order_ = addr.S_un.S_addr;
78 address_network_order_ = addr;
88 res.resize(INET_ADDRSTRLEN);
89 inet_ntop(AF_INET, &address_network_order_, &res[0], INET_ADDRSTRLEN);
97 return bswap_32(address_network_order_);
104 return address_network_order_;
108 uint32_t address_network_order_{};
uint32_t getBigEndian() const
Returns the IP Address as a big endian (network order) uint32_t.
Definition: ip_address.hpp:103
static IpAddress fromLittleEndian(uint32_t raw)
Creates an IpAddress from a little endian uint32_t.
Definition: ip_address.hpp:58
bool setToString(const std::string &ip_str)
Sets the value of the current IpAddress to the value given in 'ip_str'.
Definition: ip_address.hpp:71
IpAddress(uint32_t address_raw)
Definition: ip_address.hpp:44
std::string toString() const
Returns a string representation of the IP address.
Definition: ip_address.hpp:86
static IpAddress fromBytes(uint8_t a, uint8_t b, uint8_t c, uint8_t d)
Creates an IpAddress from individual bytes.
Definition: ip_address.hpp:49
uint32_t getLittleEndian() const
Returns the IP Address as a little endian uint32_t.
Definition: ip_address.hpp:96
A simple wrapper class for IpAddress objects.
Definition: ip_address.hpp:36
IpAddress()=default
Creates IPv4 address 0.0.0.0.