Skip to content

Commit 17a4315

Browse files
jukkarkartben
authored andcommitted
net: mdns_responder: Print return value if error in socket call
If socket call fails when mdns_responder creates listeners, then print the return value to make it easier to figure out what is wrong. Typically one needs to increase the size of CONFIG_ZVFS_OPEN_MAX if errno is ENFILE. Signed-off-by: Jukka Rissanen <[email protected]>
1 parent 725c0eb commit 17a4315

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

subsys/net/lib/dns/mdns_responder.c

+4-5
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,6 @@ static int get_socket(sa_family_t family)
237237
ret = zsock_socket(family, SOCK_DGRAM, IPPROTO_UDP);
238238
if (ret < 0) {
239239
ret = -errno;
240-
NET_DBG("Cannot get socket (%d)", ret);
241240
}
242241

243242
return ret;
@@ -1344,9 +1343,9 @@ static int init_listener(void)
13441343

13451344
v6 = get_socket(AF_INET6);
13461345
if (v6 < 0) {
1347-
NET_ERR("Cannot get %s socket (%d %s interfaces). Max sockets is %d",
1346+
NET_ERR("Cannot get %s socket (%d %s interfaces). Max sockets is %d (%d)",
13481347
"IPv6", MAX_IPV6_IFACE_COUNT,
1349-
"IPv6", CONFIG_NET_MAX_CONTEXTS);
1348+
"IPv6", CONFIG_NET_MAX_CONTEXTS, v6);
13501349
continue;
13511350
}
13521351

@@ -1441,9 +1440,9 @@ static int init_listener(void)
14411440

14421441
v4 = get_socket(AF_INET);
14431442
if (v4 < 0) {
1444-
NET_ERR("Cannot get %s socket (%d %s interfaces). Max sockets is %d",
1443+
NET_ERR("Cannot get %s socket (%d %s interfaces). Max sockets is %d (%d)",
14451444
"IPv4", MAX_IPV4_IFACE_COUNT,
1446-
"IPv4", CONFIG_NET_MAX_CONTEXTS);
1445+
"IPv4", CONFIG_NET_MAX_CONTEXTS, v4);
14471446
continue;
14481447
}
14491448

0 commit comments

Comments
 (0)