Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
Nodemcu Firmware
Commits
cd53865c
"docs/modules/wifi.md" did not exist on "2c553583ea7d6b7a0f6524668b0869960c0a1db2"
Unverified
Commit
cd53865c
authored
Jul 08, 2020
by
Marcel Stör
Committed by
GitHub
Jul 08, 2020
Browse files
Bump ESP-IDF to 3.3.2 LTS (#3196)
parent
04e01fd4
Changes
2
Show whitespace changes
Inline
Side-by-side
components/modules/net.c
View file @
cd53865c
...
...
@@ -978,13 +978,13 @@ static int net_getdnsserver( lua_State* L ) {
// ip_addr_t ipaddr;
// dns_getserver(numdns,&ipaddr);
// Bug fix by @md5crypt https://github.com/nodemcu/nodemcu-firmware/pull/500
ip_addr_t
ipaddr
=
dns_getserver
(
numdns
);
const
ip_addr_t
*
ipaddr
=
dns_getserver
(
numdns
);
if
(
ip_addr_isany
(
&
ipaddr
)
)
{
if
(
ip_addr_isany
(
ipaddr
)
)
{
lua_pushnil
(
L
);
}
else
{
char
temp
[
IP_STR_SZ
];
ipstr
(
temp
,
&
ipaddr
);
ipstr
(
temp
,
ipaddr
);
lua_pushstring
(
L
,
temp
);
}
...
...
esp32-esp-idf
@
9e70825d
Compare
143d26aa
...
9e70825d
Subproject commit
143d26aa49df524e10fb8e41a71d12e731b9b71d
Subproject commit
9e70825d1e1cbf7988cf36981774300066580ea7
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment