From owner-cvs-all@FreeBSD.ORG Sat Oct 2 23:45:21 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8930E16A4CE; Sat, 2 Oct 2004 23:45:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B7EE43D48; Sat, 2 Oct 2004 23:45:04 +0000 (GMT) (envelope-from dwhite@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i92Nj3On031548; Sat, 2 Oct 2004 23:45:03 GMT (envelope-from dwhite@repoman.freebsd.org) Received: (from dwhite@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i92Nj3Ab031547; Sat, 2 Oct 2004 23:45:03 GMT (envelope-from dwhite) Message-Id: <200410022345.i92Nj3Ab031547@repoman.freebsd.org> From: Doug White Date: Sat, 2 Oct 2004 23:45:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet6 ip6_output.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Oct 2004 23:45:21 -0000 dwhite 2004-10-02 23:45:03 UTC FreeBSD src repository Modified files: sys/netinet6 ip6_output.c Log: Disable MTU feedback in IPv6 if the sender writes data that must be fragmented. Discussed extensively with KAME. The API author's intent isn't clear at this point, so rather than remove the code entirely, #if 0 out and put a big comment in for now. The IPV6_RECVPATHMTU sockopt is available if the application wants to be notified of the path MTU to optimize packet sizes. Thanks to JINMEI Tatuya for putting up with my incessant badgering on this issue, and fenner for pointing out the API issue and suggesting solutions. Revision Changes Path 1.85 +14 -0 src/sys/netinet6/ip6_output.c