11#if defined(USE_ESP32) || defined(USE_LIBRETINY) || USE_ARDUINO_VERSION_CODE > VERSION_CODE(3, 0, 0)
12#include <lwip/ip_addr.h>
24#define ipaddr_aton(x, y) inet_aton((x), (y))
27#if USE_ESP32_FRAMEWORK_ARDUINO
28#define arduino_ns Arduino_h
30#define arduino_ns arduino
44static constexpr size_t IP_ADDRESS_BUFFER_SIZE = 40;
51 this->
ip_addr_.s_addr = htonl((first << 24) | (
second << 16) | (third << 8) | fourth);
58 return const_cast<char *
>(inet_ntop(AF_INET, &
ip_addr_, buf, IP_ADDRESS_BUFFER_SIZE));
70#if USE_ESP32 && LWIP_IPV6
75 IPAddress(
const arduino_ns::IPAddress &other_ip) { ip_addr_set_ip4_u32(&
ip_addr_, other_ip); }
79 memcpy((
void *) &
ip_addr_, (
void *) other_ip,
sizeof(ip6_addr_t));
87 memcpy((
void *) &
ip_addr_.u_addr.ip6, (
void *) other_ip,
sizeof(esp_ip6_addr_t));
92 memcpy((
void *) &
ip_addr_, (
void *) other_ip,
sizeof(esp_ip4_addr_t));
101 memcpy((
void *) &
ip_addr_, (
void *) &other_ip->u_addr.ip4,
sizeof(
ip_addr_));
104 operator esp_ip_addr_t()
const {
113 operator esp_ip4_addr_t()
const {
116 memcpy((
void *) &tmp, (
void *) &
ip_addr_.u_addr.ip4,
sizeof(esp_ip4_addr_t));
130 operator arduino_ns::IPAddress()
const {
return ip_addr_get_ip4_u32(&
ip_addr_); }
139 char *
str_to(
char *buf)
const {
return ipaddr_ntoa_r(&
ip_addr_, buf, IP_ADDRESS_BUFFER_SIZE); }
145 (((u8_t *) (&
ip_addr_.u_addr.ip4))[3]) += increase;
147 (((u8_t *) (&
ip_addr_.addr))[3]) += increase;
std::array< IPAddress, 5 > IPAddresses
Providing packet encoding functions for exchanging data with a remote host.
std::string str_lower_case(const std::string &str)
Convert the string to lower case.
bool is_multicast() const
IPAddress(const char *in_address)
IPAddress(ip6_addr_t *other_ip)
bool operator!=(const IPAddress &other) const
bool operator==(const IPAddress &other) const
char * str_to(char *buf) const
Write IP address to buffer. Buffer must be at least IP_ADDRESS_BUFFER_SIZE bytes.
IPAddress(esp_ip_addr_t *other_ip)
IPAddress(const ip_addr_t *other_ip)
IPAddress(esp_ip6_addr_t *other_ip)
IPAddress(uint8_t first, uint8_t second, uint8_t third, uint8_t fourth)
IPAddress & operator+=(uint8_t increase)
IPAddress(esp_ip4_addr_t *other_ip)
IPAddress(ip4_addr_t *other_ip)
IPAddress(const std::string &in_address)
IPAddress(const arduino_ns::IPAddress &other_ip)