Skip to content

Commit

Permalink
Consistent netif->status_callback (#8676)
Browse files Browse the repository at this point in the history
  • Loading branch information
d-a-v committed Oct 31, 2022
1 parent bde8ef7 commit 2360d1c
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 7 deletions.
12 changes: 7 additions & 5 deletions libraries/ESP8266mDNS/src/LEAmDNS.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -92,11 +92,13 @@ namespace MDNSImplementation
LwipIntf::stateUpCB(
[this](netif* intf)
{
(void)intf;
DEBUG_EX_INFO(DEBUG_OUTPUT.printf_P(
PSTR("[MDNSResponder] new Interface '%c%c' is UP! restarting\n"), intf->name[0],
intf->name[1]));
_restart();
if (IPAddress(intf->ip_addr).isSet())
{
DEBUG_EX_INFO(DEBUG_OUTPUT.printf_P(
PSTR("[MDNSResponder] new Interface '%c%c' is UP! restarting\n"),
intf->name[0], intf->name[1]));
_restart();
}
});
DEBUG_EX_ERR(if (!bResult) {
DEBUG_OUTPUT.printf_P(PSTR("[MDNSResponder] begin: FAILED for '%s'!\n"),
Expand Down
Binary file modified tools/sdk/lib/liblwip2-1460-feat.a
Binary file not shown.
Binary file modified tools/sdk/lib/liblwip2-1460.a
Binary file not shown.
Binary file modified tools/sdk/lib/liblwip2-536-feat.a
Binary file not shown.
Binary file modified tools/sdk/lib/liblwip2-536.a
Binary file not shown.
Binary file modified tools/sdk/lib/liblwip6-1460-feat.a
Binary file not shown.
Binary file modified tools/sdk/lib/liblwip6-536-feat.a
Binary file not shown.
2 changes: 1 addition & 1 deletion tools/sdk/lwip2/include/lwip-git-hash.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// generated by makefiles/make-lwip2-hash
#ifndef LWIP_HASH_H
#define LWIP_HASH_H
#define LWIP_HASH_STR "STABLE-2_1_3_RELEASE/glue:1.2-63-gb5def38"
#define LWIP_HASH_STR "STABLE-2_1_3_RELEASE/glue:1.2-65-g06164fb"
#endif // LWIP_HASH_H

0 comments on commit 2360d1c

Please sign in to comment.