11 #if defined(USE_ESP_IDF) || defined(USE_LIBRETINY) || USE_ARDUINO_VERSION_CODE > VERSION_CODE(3, 0, 0) 12 #include <lwip/ip_addr.h> 17 #include <IPAddress.h> 21 #include <arpa/inet.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 37 #include <esp_netif.h> 48 this->
ip_addr_.s_addr = htonl((first << 24) | (second << 16) | (third << 8) | fourth);
55 IP_ADDR4(&
ip_addr_, first, second, third, fourth);
61 #if USE_ESP32 && LWIP_IPV6 62 ip_addr_.type = IPADDR_TYPE_V4;
66 IPAddress(
const arduino_ns::IPAddress &other_ip) { ip_addr_set_ip4_u32(&
ip_addr_, other_ip); }
70 memcpy((
void *) &
ip_addr_, (
void *) other_ip,
sizeof(ip6_addr_t));
71 ip_addr_.type = IPADDR_TYPE_V6;
78 memcpy((
void *) &
ip_addr_.u_addr.ip6, (
void *) other_ip,
sizeof(esp_ip6_addr_t));
82 IPAddress(esp_ip4_addr_t *other_ip) { memcpy((
void *) &
ip_addr_, (
void *) other_ip,
sizeof(esp_ip4_addr_t)); }
85 memcpy((
void *) &
ip_addr_, (
void *) other_ip,
sizeof(ip_addr_));
87 memcpy((
void *) &ip_addr_, (
void *) &other_ip->u_addr.ip4,
sizeof(ip_addr_));
90 operator esp_ip_addr_t()
const {
93 memcpy((
void *) &tmp, (
void *) &
ip_addr_,
sizeof(ip_addr_));
95 memcpy((
void *) &tmp.u_addr.ip4, (
void *) &ip_addr_,
sizeof(ip_addr_));
99 operator esp_ip4_addr_t()
const {
102 memcpy((
void *) &tmp, (
void *) &
ip_addr_.u_addr.ip4,
sizeof(esp_ip4_addr_t));
104 memcpy((
void *) &tmp, (
void *) &
ip_addr_,
sizeof(ip_addr_));
116 operator arduino_ns::IPAddress()
const {
return ip_addr_get_ip4_u32(&
ip_addr_); }
128 (((u8_t *) (&
ip_addr_.u_addr.ip4))[3]) += increase;
130 (((u8_t *) (&
ip_addr_.addr))[3]) += increase;
IPAddress(esp_ip6_addr_t *other_ip)
IPAddress(esp_ip4_addr_t *other_ip)
IPAddress & operator+=(uint8_t increase)
bool operator==(const IPAddress &other) const
IPAddress(esp_ip_addr_t *other_ip)
IPAddress(const ip_addr_t *other_ip)
IPAddress(const arduino_ns::IPAddress &other_ip)
IPAddress(ip4_addr_t *other_ip)
IPAddress(const std::string &in_address)
std::string str_lower_case(const std::string &str)
Convert the string to lower case.
IPAddress(uint8_t first, uint8_t second, uint8_t third, uint8_t fourth)
std::array< IPAddress, 5 > IPAddresses
IPAddress(ip6_addr_t *other_ip)
Implementation of SPI Controller mode.
bool operator!=(const IPAddress &other) const