diff options
author | Bill Fenner <fenner@FreeBSD.org> | 2000-03-04 23:57:39 +0000 |
---|---|---|
committer | Bill Fenner <fenner@FreeBSD.org> | 2000-03-04 23:57:39 +0000 |
commit | a107e2bc7a01003aa1885a21bdaa57c5e97f33c9 (patch) | |
tree | c78beb5754a66ef5a158cfaba3e80fdcca17646d /contrib/libpcap/gencode.c | |
parent | 65b66c5d72b9958e26295cdea55a4cb6450d7f68 (diff) | |
download | src-a107e2bc7a01003aa1885a21bdaa57c5e97f33c9.tar.gz src-a107e2bc7a01003aa1885a21bdaa57c5e97f33c9.zip |
Merge updated file for 0.5 release: handle "ip host foo" and
"ip6 host foo" when foo has both IP and IP6 addresses.
PR: bin/17083
Approved by: jkh
Notes
Notes:
svn path=/head/; revision=57763
Diffstat (limited to 'contrib/libpcap/gencode.c')
-rw-r--r-- | contrib/libpcap/gencode.c | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/contrib/libpcap/gencode.c b/contrib/libpcap/gencode.c index 11ee2831abf3..4a7c107bbca6 100644 --- a/contrib/libpcap/gencode.c +++ b/contrib/libpcap/gencode.c @@ -23,7 +23,7 @@ */ #ifndef lint static const char rcsid[] = - "@(#) $Header: /tcpdump/master/libpcap/gencode.c,v 1.100 1999/12/08 19:54:03 mcr Exp $ (LBL)"; + "@(#) $Header: /tcpdump/master/libpcap/gencode.c,v 1.100.2.1 2000/03/01 14:12:54 itojun Exp $ (LBL)"; #endif #include <sys/types.h> @@ -2089,15 +2089,21 @@ gen_scode(name, q) tproto = Q_IP; tproto6 = Q_IPV6; } - while (res) { + for (res = res0; res; res = res->ai_next) { switch (res->ai_family) { case AF_INET: + if (tproto == Q_IPV6) + continue; + sin = (struct sockaddr_in *) res->ai_addr; tmp = gen_host(ntohl(sin->sin_addr.s_addr), 0xffffffff, tproto, dir); break; case AF_INET6: + if (tproto6 == Q_IP) + continue; + sin6 = (struct sockaddr_in6 *) res->ai_addr; tmp = gen_host6(&sin6->sin6_addr, @@ -2107,10 +2113,14 @@ gen_scode(name, q) if (b) gen_or(b, tmp); b = tmp; - - res = res->ai_next; } freeaddrinfo(res0); + if (b == NULL) { + bpf_error("unknown host '%s'%s", name, + (proto == Q_DEFAULT) + ? "" + : " for specified address family"); + } return b; #endif /*INET6*/ } |