diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-07-30 11:31:08 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-07-30 11:31:17 +0200 |
commit | 15ca3ab82531e907c810674fc2c79e5e0b522c74 (patch) | |
tree | fcb7ced9de8b9c9aff1b51971b4775c7c348b4f8 /libavformat | |
parent | c7d17179571daa875083e2fe72c498ae47772d75 (diff) | |
parent | 3357bccc5cb31795f248cd72dc480025f3075a5b (diff) | |
download | ffmpeg-15ca3ab82531e907c810674fc2c79e5e0b522c74.tar.gz |
Merge commit '3357bccc5cb31795f248cd72dc480025f3075a5b'
* commit '3357bccc5cb31795f248cd72dc480025f3075a5b':
udp: Allow specifying multicast include/blocks as host names as well
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/udp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/udp.c b/libavformat/udp.c index 744b9906c7..033438869a 100644 --- a/libavformat/udp.c +++ b/libavformat/udp.c @@ -237,7 +237,7 @@ static int udp_set_multicast_sources(int sockfd, struct sockaddr *addr, int level = addr->sa_family == AF_INET ? IPPROTO_IP : IPPROTO_IPV6; struct addrinfo *sourceaddr = udp_resolve_host(sources[i], 0, SOCK_DGRAM, AF_UNSPEC, - AI_NUMERICHOST); + 0); if (!sourceaddr) return AVERROR(ENOENT); @@ -267,7 +267,7 @@ static int udp_set_multicast_sources(int sockfd, struct sockaddr *addr, struct ip_mreq_source mreqs; struct addrinfo *sourceaddr = udp_resolve_host(sources[i], 0, SOCK_DGRAM, AF_UNSPEC, - AI_NUMERICHOST); + 0); if (!sourceaddr) return AVERROR(ENOENT); if (sourceaddr->ai_addr->sa_family != AF_INET) { |