Mercurial > libavformat.hg
changeset 2161:06c4f61b5b33 libavformat
Remove unused static function.
author | diego |
---|---|
date | Tue, 12 Jun 2007 07:59:34 +0000 |
parents | 8c9464575611 |
children | f0b9505b7b8b |
files | udp.c |
diffstat | 1 files changed, 0 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/udp.c Sun Jun 10 20:35:01 2007 +0000 +++ b/udp.c Tue Jun 12 07:59:34 2007 +0000 @@ -46,14 +46,6 @@ #ifdef CONFIG_IPV6 -static int udp_ipv6_is_multicast_address(const struct sockaddr *addr) { - if (addr->sa_family == AF_INET) - return IN_MULTICAST(ntohl(((struct sockaddr_in *)addr)->sin_addr.s_addr)); - if (addr->sa_family == AF_INET6) - return IN6_IS_ADDR_MULTICAST(&((struct sockaddr_in6 *)addr)->sin6_addr); - return -1; -} - static int udp_ipv6_set_multicast_ttl(int sockfd, int mcastTTL, struct sockaddr *addr) { if (addr->sa_family == AF_INET) { if (setsockopt(sockfd, IPPROTO_IP, IP_MULTICAST_TTL, &mcastTTL, sizeof(mcastTTL)) < 0) {