From 717873eac7e4f5cb29d346c6a53af497fd3ec3f9 Mon Sep 17 00:00:00 2001 From: Barbudor Date: Tue, 30 Jan 2024 18:45:54 +0100 Subject: [PATCH] enforce TLL255 on ESP8266 (#20616) --- lib/lib_div/esp-knx-ip-0.5.2/src/esp-knx-ip-send.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/lib_div/esp-knx-ip-0.5.2/src/esp-knx-ip-send.cpp b/lib/lib_div/esp-knx-ip-0.5.2/src/esp-knx-ip-send.cpp index 9a805fb2b..25f1b9a48 100644 --- a/lib/lib_div/esp-knx-ip-0.5.2/src/esp-knx-ip-send.cpp +++ b/lib/lib_div/esp-knx-ip-0.5.2/src/esp-knx-ip-send.cpp @@ -78,7 +78,7 @@ void ESPKNXIP::send(address_t const &receiver, knx_command_type_t ct, uint8_t da #endif #ifdef ESP8266 - udp.beginPacketMulticast(MULTICAST_IP, MULTICAST_PORT, WiFi.localIP()); + udp.beginPacketMulticast(MULTICAST_IP, MULTICAST_PORT, WiFi.localIP(), 255); #else if (0 == udp.beginMulticastPacket()) { udp.beginMulticast(MULTICAST_IP, MULTICAST_PORT);