Mercurial > libavformat.hg
diff udp.c @ 5575:d40a7e8259ff libavformat
Rename a function which is no longer ipv6-specific. Patch by Martin Storsj
<$firstname () $firstname st>.
author | rbultje |
---|---|
date | Fri, 22 Jan 2010 16:10:08 +0000 |
parents | 9934ca658946 |
children | 1a89eae96a27 |
line wrap: on
line diff
--- a/udp.c Fri Jan 22 16:04:15 2010 +0000 +++ b/udp.c Fri Jan 22 16:10:08 2010 +0000 @@ -135,7 +135,7 @@ return 0; } -static struct addrinfo* udp_ipv6_resolve_host(const char *hostname, int port, int type, int family, int flags) { +static struct addrinfo* udp_resolve_host(const char *hostname, int port, int type, int family, int flags) { struct addrinfo hints, *res = 0; int error; char sport[16]; @@ -153,7 +153,7 @@ hints.ai_family = family; hints.ai_flags = flags; if ((error = getaddrinfo(node, service, &hints, &res))) { - av_log(NULL, AV_LOG_ERROR, "udp_ipv6_resolve_host: %s\n", gai_strerror(error)); + av_log(NULL, AV_LOG_ERROR, "udp_resolve_host: %s\n", gai_strerror(error)); } return res; @@ -163,7 +163,7 @@ struct addrinfo *res0; int addr_len; - res0 = udp_ipv6_resolve_host(hostname, port, SOCK_DGRAM, AF_UNSPEC, 0); + res0 = udp_resolve_host(hostname, port, SOCK_DGRAM, AF_UNSPEC, 0); if (res0 == 0) return AVERROR(EIO); memcpy(addr, res0->ai_addr, res0->ai_addrlen); addr_len = res0->ai_addrlen; @@ -194,7 +194,7 @@ if (((struct sockaddr *) &s->dest_addr)->sa_family) family = ((struct sockaddr *) &s->dest_addr)->sa_family; - res0 = udp_ipv6_resolve_host(0, s->local_port, SOCK_DGRAM, family, AI_PASSIVE); + res0 = udp_resolve_host(0, s->local_port, SOCK_DGRAM, family, AI_PASSIVE); if (res0 == 0) goto fail; for (res = res0; res; res=res->ai_next) {