Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit2360d1c

Browse files
authored
Consistent netif->status_callback (#8676)
d-a-v/esp82xx-nonos-linklayer#62
1 parentbde8ef7 commit2360d1c

File tree

9 files changed

+9
-7
lines changed

9 files changed

+9
-7
lines changed

‎libraries/ESP8266mDNS/src/LEAmDNS.cpp‎

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -92,11 +92,13 @@ namespace MDNSImplementation
9292
LwipIntf::stateUpCB(
9393
[this](netif* intf)
9494
{
95-
(void)intf;
96-
DEBUG_EX_INFO(DEBUG_OUTPUT.printf_P(
97-
PSTR("[MDNSResponder] new Interface '%c%c' is UP! restarting\n"), intf->name[0],
98-
intf->name[1]));
99-
_restart();
95+
if (IPAddress(intf->ip_addr).isSet())
96+
{
97+
DEBUG_EX_INFO(DEBUG_OUTPUT.printf_P(
98+
PSTR("[MDNSResponder] new Interface '%c%c' is UP! restarting\n"),
99+
intf->name[0], intf->name[1]));
100+
_restart();
101+
}
100102
});
101103
DEBUG_EX_ERR(if (!bResult) {
102104
DEBUG_OUTPUT.printf_P(PSTR("[MDNSResponder] begin: FAILED for '%s'!\n"),

‎tools/sdk/lib/liblwip2-1460-feat.a‎

-14.6 KB
Binary file not shown.

‎tools/sdk/lib/liblwip2-1460.a‎

-7.05 KB
Binary file not shown.

‎tools/sdk/lib/liblwip2-536-feat.a‎

-14.7 KB
Binary file not shown.

‎tools/sdk/lib/liblwip2-536.a‎

-7.13 KB
Binary file not shown.

‎tools/sdk/lib/liblwip6-1460-feat.a‎

-9.54 KB
Binary file not shown.

‎tools/sdk/lib/liblwip6-536-feat.a‎

-9.61 KB
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// generated by makefiles/make-lwip2-hash
22
#ifndefLWIP_HASH_H
33
#defineLWIP_HASH_H
4-
#defineLWIP_HASH_STR "STABLE-2_1_3_RELEASE/glue:1.2-63-gb5def38"
4+
#defineLWIP_HASH_STR "STABLE-2_1_3_RELEASE/glue:1.2-65-g06164fb"
55
#endif// LWIP_HASH_H

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp