summaryrefslogtreecommitdiffstats
path: root/sys/netinet6/in6_pcb.c
diff options
context:
space:
mode:
authorshin <shin@FreeBSD.org>2000-04-01 22:35:47 +0000
committershin <shin@FreeBSD.org>2000-04-01 22:35:47 +0000
commit09037f119d2c35c390f84835c3d3c3cf94edebac (patch)
tree7ddb7387fe3b1afce957dd83bcb7a07caca09946 /sys/netinet6/in6_pcb.c
parent79ce44e00159f8824aacf50b6227f404788f59ad (diff)
downloadFreeBSD-src-09037f119d2c35c390f84835c3d3c3cf94edebac.zip
FreeBSD-src-09037f119d2c35c390f84835c3d3c3cf94edebac.tar.gz
Support per socket based IPv4 mapped IPv6 addr enable/disable control.
Submitted by: ume
Diffstat (limited to 'sys/netinet6/in6_pcb.c')
-rw-r--r--sys/netinet6/in6_pcb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet6/in6_pcb.c b/sys/netinet6/in6_pcb.c
index 341260a..73c169b 100644
--- a/sys/netinet6/in6_pcb.c
+++ b/sys/netinet6/in6_pcb.c
@@ -224,7 +224,7 @@ in6_pcbbind(inp, nam, p)
(so->so_cred->cr_uid !=
t->inp_socket->so_cred->cr_uid))
return (EADDRINUSE);
- if (ip6_mapped_addr_on != 0 &&
+ if ((inp->inp_flags & IN6P_BINDV6ONLY) == 0 &&
IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr)) {
struct sockaddr_in sin;
@@ -246,7 +246,7 @@ in6_pcbbind(inp, nam, p)
lport, wild);
if (t && (reuseport & t->inp_socket->so_options) == 0)
return(EADDRINUSE);
- if (ip6_mapped_addr_on != 0 &&
+ if ((inp->inp_flags & IN6P_BINDV6ONLY) == 0 &&
IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr)) {
struct sockaddr_in sin;
OpenPOWER on IntegriCloud