From owner-cvs-src@FreeBSD.ORG Wed May 4 14:32:41 2005 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E911C16A4CE; Wed, 4 May 2005 14:32:41 +0000 (GMT) Received: from arginine.spc.org (arginine.spc.org [83.167.185.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE86A43D55; Wed, 4 May 2005 14:32:40 +0000 (GMT) (envelope-from bms@spc.org) Received: from localhost (localhost [127.0.0.1]) by arginine.spc.org (Postfix) with ESMTP id 0A2176520C; Wed, 4 May 2005 15:31:13 +0100 (BST) Received: from arginine.spc.org ([127.0.0.1]) by localhost (arginine.spc.org [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 93575-02-5; Wed, 4 May 2005 15:31:12 +0100 (BST) Received: from empiric.dek.spc.org (host81-134-75-74.in-addr.btopenworld.com [81.134.75.74]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by arginine.spc.org (Postfix) with ESMTP id A955365213; Wed, 4 May 2005 15:31:11 +0100 (BST) Received: by empiric.dek.spc.org (Postfix, from userid 1001) id 6C9A3625F; Wed, 4 May 2005 15:32:00 +0100 (BST) Date: Wed, 4 May 2005 15:32:00 +0100 From: Bruce M Simpson To: Andre Oppermann Message-ID: <20050504143200.GC746@empiric.icir.org> Mail-Followup-To: Andre Oppermann , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200505041348.j44DmiEQ055445@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200505041348.j44DmiEQ055445@repoman.freebsd.org> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet tcp_subr.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 May 2005 14:32:42 -0000 On Wed, May 04, 2005 at 01:48:44PM +0000, Andre Oppermann wrote: > Log: > If we don't get a suggested MTU during path MTU discovery > look up the packet size of the packet that generated the > response, step down the MTU by one step through ip_next_mtu() > and try again. Yay! Now I really need to sit down and sort out the gre(4) PMTU story. Of course a more generic way of doing this might be good, e.g. a generic PMTU callback for each protocol which needs to exchange this information with the IP/ICMP layer. BMS