You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
udp: Provide additional information on getaddrinfo failure
This commit is contained in:
@@ -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));
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user