[Bug 248579] accept(2): IPv4 connections fail (IPv6 connections succeed) with dual IPv4/IPv6 TCP servers

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Tue Aug 11 05:43:41 UTC 2020


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=248579

Michael Tuexen <tuexen at freebsd.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |tuexen at freebsd.org

--- Comment #3 from Michael Tuexen <tuexen at freebsd.org> ---
(In reply to rec from comment #1)
Instead of changing a system wide setting you can also use the
IPPROTO_IPV6-level socket option IPV6_V6ONLY to allow handling IPv4 traffic
using the IPv6 socket by calling in make_listen():

int no = 0;
setsockopt(s, IPPROTO_IPV6, IPV6_V6ONLY, no, sizeof(int));

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.


More information about the freebsd-net mailing list