mirror of https://github.com/arendst/Tasmota.git
ESP32 fix ``Ping`` (#17373)
This commit is contained in:
parent
9898cb0bed
commit
7e27945e5a
|
@ -20,6 +20,7 @@ All notable changes to this project will be documented in this file.
|
|||
- RCSwitch exception 0/6 on some protocols (#17285)
|
||||
- ESP32 exception 28 when RtcNtpServer is enabled on restart (#17338)
|
||||
- Analog MQ exception 28 on restart (#17271)
|
||||
- ESP32 fix ``Ping``
|
||||
|
||||
### Removed
|
||||
|
||||
|
|
|
@ -172,7 +172,7 @@ extern "C" {
|
|||
return 0; // don't eat the packet and ignore it
|
||||
}
|
||||
|
||||
if (pbuf_header( p, -PBUF_IP_HLEN)==0) {
|
||||
if (pbuf_header( p, -PBUF_TRANSPORT_HLEN)==0) {
|
||||
struct icmp_echo_hdr *iecho;
|
||||
iecho = (struct icmp_echo_hdr *)p->payload;
|
||||
|
||||
|
|
Loading…
Reference in New Issue