From owner-freebsd-arch Tue Jan 25 3:39:58 2000 Delivered-To: freebsd-arch@freebsd.org Received: from ns1.yes.no (ns1.yes.no [195.204.136.10]) by hub.freebsd.org (Postfix) with ESMTP id 7680914EFA for ; Tue, 25 Jan 2000 03:39:55 -0800 (PST) (envelope-from eivind@bitbox.follo.net) Received: from bitbox.follo.net (bitbox.follo.net [195.204.143.218]) by ns1.yes.no (8.9.3/8.9.3) with ESMTP id MAA14528 for ; Tue, 25 Jan 2000 12:39:55 +0100 (CET) Received: (from eivind@localhost) by bitbox.follo.net (8.8.8/8.8.6) id MAA04828 for freebsd-arch@freebsd.org; Tue, 25 Jan 2000 12:39:52 +0100 (MET) Received: from fgwmail6.fujitsu.co.jp (fgwmail6.fujitsu.co.jp [192.51.44.36]) by hub.freebsd.org (Postfix) with ESMTP id 1E44D14EFA; Tue, 25 Jan 2000 03:39:23 -0800 (PST) (envelope-from shin@nd.net.fujitsu.co.jp) Received: from m4.gw.fujitsu.co.jp by fgwmail6.fujitsu.co.jp (8.9.3/3.7W-MX9912-Fujitsu Gateway) id UAA09284; Tue, 25 Jan 2000 20:39:17 +0900 (JST) (envelope-from shin@nd.net.fujitsu.co.jp) Received: from chisato.nd.net.fujitsu.co.jp by m4.gw.fujitsu.co.jp (8.9.3/3.7W-9912-Fujitsu Domain Master) id UAA11891; Tue, 25 Jan 2000 20:39:16 +0900 (JST) Received: from localhost (dhcp7194.nd.net.fujitsu.co.jp [10.18.7.194]) by chisato.nd.net.fujitsu.co.jp (8.8.5+2.7Wbeta5/3.3W8chisato-970826) with ESMTP id UAA28721; Tue, 25 Jan 2000 20:39:15 +0900 (JST) To: freebsd-arch@freebsd.org, cvs-committers@freebsd.org Subject: Re: [Solicite review for KAME 10th patch] 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> X-Mailer: Mew version 1.94 on Emacs 20.4 / Mule 4.0 (HANANOEN) X-Prom-Mew: Prom-Mew 1.93.4 (procmail reader for Mew) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20000125203956N.shin@nd.net.fujitsu.co.jp> Date: Tue, 25 Jan 2000 20:39:56 +0900 From: Yoshinobu Inoue X-Dispatcher: imput version 990905(IM130) Lines: 51 Sender: owner-freebsd-arch@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > 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; { #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 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