From 63d953d72ca6349513c0d9cef25bd035dc497412 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20SAILLANT?= <108685187+electron-rare@users.noreply.github.com> Date: Wed, 18 Feb 2026 15:41:43 +0100 Subject: [PATCH] Patch: include IPv6Address.h uniquement pour ESP32 (#ifdef ESP32) --- src/AsyncTCP.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/AsyncTCP.h b/src/AsyncTCP.h index 431785f..c1c4b8e 100644 --- a/src/AsyncTCP.h +++ b/src/AsyncTCP.h @@ -30,7 +30,9 @@ #include "IPAddress.h" #if ESP_IDF_VERSION_MAJOR < 5 - #include "IPv6Address.h" + #if defined(ESP32) +#include "IPv6Address.h" +#endif #endif #include "lwip/ip6_addr.h" #include "lwip/ip_addr.h"