11#if defined(USE_ESP_IDF) || 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
48 this->
ip_addr_.s_addr = htonl((first << 24) | (
second << 16) | (third << 8) | fourth);
62#if USE_ESP32 && LWIP_IPV6
67 IPAddress(
const arduino_ns::IPAddress &other_ip) { ip_addr_set_ip4_u32(&
ip_addr_, other_ip); }
71 memcpy((
void *) &
ip_addr_, (
void *) other_ip,
sizeof(ip6_addr_t));
79 memcpy((
void *) &
ip_addr_.u_addr.ip6, (
void *) other_ip,
sizeof(esp_ip6_addr_t));
83 IPAddress(esp_ip4_addr_t *other_ip) { memcpy((
void *) &
ip_addr_, (
void *) other_ip,
sizeof(esp_ip4_addr_t)); }
88 memcpy((
void *) &
ip_addr_, (
void *) &other_ip->u_addr.ip4,
sizeof(
ip_addr_));
91 operator esp_ip_addr_t()
const {
100 operator esp_ip4_addr_t()
const {
103 memcpy((
void *) &tmp, (
void *) &
ip_addr_.u_addr.ip4,
sizeof(esp_ip4_addr_t));
117 operator arduino_ns::IPAddress()
const {
return ip_addr_get_ip4_u32(&
ip_addr_); }
130 (((u8_t *) (&
ip_addr_.u_addr.ip4))[3]) += increase;
132 (((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.
IPAddress(ip6_addr_t *other_ip)
bool operator!=(const IPAddress &other) const
bool operator==(const IPAddress &other) const
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)