Date: Tue, 25 Jan 2000 20:39:56 +0900 From: Yoshinobu Inoue <shin@nd.net.fujitsu.co.jp> To: freebsd-arch@freebsd.org, cvs-committers@freebsd.org Subject: Re: [Solicite review for KAME 10th patch] Message-ID: <20000125203956N.shin@nd.net.fujitsu.co.jp> In-Reply-To: <20000125105502F.shin@nd.net.fujitsu.co.jp> References: <20000114044825G.shin@nd.net.fujitsu.co.jp> <20000125105502F.shin@nd.net.fujitsu.co.jp>
next in thread | previous in thread | raw e-mail | index | archive | help
> I updated above patches, and would like to commit them soon. > Please give me comments if any. > After some testing and some bug fixed, it seems to be working > well. > > http://www.freebsd.org/~shin/tcp-apps.20000125 > http://paradise.kame.net/v6proxy/diana2/shin/work/freebsd/tcp-apps.20000125 I updated these patches again. http://www.freebsd.org/~shin/tcp-apps.20000125a http://paradise.kame.net/v6proxy/diana2/shin/work/freebsd/tcp-apps.20000125a Changes are, -added rcmd_af() as draft-ietf-ipngwg-rfc2292bis-01.txt and let IPv6 aware application use it instead of rcmd() -several man fixes Another issue is found that FreeBSD rresvport() is not following existing behaviour. e.g, int rresvport(alport) int *alport; { <SNIP> #if 0 /* compat_exact_traditional_rresvport_semantics */ sin.sin_port = htons((u_short)*alport); if (bind(s, (struct sockaddr *)&sin, sizeof(sin)) >= 0) return (s); if (errno != EADDRINUSE) { (void)close(s); return (-1); } #endif <SNIP> But this seems to already happened at 2.x.x RELEASE and also not IPv6 specific issue, so now I forget about this. I'll commit these patches after some more wait. Please give me comments if any. Thanks, Yoshinobu Inoue To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-arch" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20000125203956N.shin>