>>> Thu, 10 Jan 2002 02:10:18 +0900,
>>> JINMEI Tatuya <[EMAIL PROTECTED]> said:
jinmei> FreeBSD 4.4-RELEASE has a partial support to disable this feature by
jinmei> the IPV6_V6ONLY option, which, as far as I know, is not included in
jinmei> FreeBSD 4.3. If you do not want to accept an IPv4 conn
> On Wed, 9 Jan 2002 10:41:10 +0100 (MET),
> Stephane Carrez <[EMAIL PROTECTED]> said:
> Assuming that the server accepting socket is AF_INET6, you should do
> the following on the socket:
> int on;
> on = 1;
> setsockopt(fd, IPPROTO_IPV6, IPV6_BINDV6ONLY,
>
> On Tue, 08 Jan 2002 17:57:00 +,
> "June Carey" <[EMAIL PROTECTED]> said:
> END OF CLIENT/SERVER CONNECTION RESULTS
> ===
> The "bug" is that netstat(1) shows a tcp4 connection between the Server and
> the Client, but accept(2) is filling out th
Hi!
June Carey wrote:
>The "bug" is that netstat(1) shows a tcp4 connection between the Server and
>the Client, but accept(2) is filling out the address structure with a
>sin_family of 28, when it should be 2 (AF_INET).
>
>The other "bug" I've recently discovered, and which is demonstrated abo