Commit 12b14382 authored by Luca Barbato's avatar Luca Barbato

udp: Provide additional information on getaddrinfo failure

parent 34af7813
......@@ -192,7 +192,9 @@ static struct addrinfo *udp_resolve_host(URLContext *h,
hints.ai_flags = flags;
if ((error = getaddrinfo(node, service, &hints, &res))) {
res = NULL;
av_log(h, AV_LOG_ERROR, "udp_resolve_host: %s\n",
av_log(h, AV_LOG_ERROR, "getaddrinfo(%s, %s): %s\n",
node ? node : "unknown",
service ? service : "unknown",
gai_strerror(error));
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment