From owner-cvs-src@FreeBSD.ORG Sat Jul 17 19:44:13 2004 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 B5D9816A4CE; Sat, 17 Jul 2004 19:44:13 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B083243D39; Sat, 17 Jul 2004 19:44:13 +0000 (GMT) (envelope-from dwmalone@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 i6HJiD0S057564; Sat, 17 Jul 2004 19:44:13 GMT (envelope-from dwmalone@repoman.freebsd.org) Received: (from dwmalone@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6HJiDJM057563; Sat, 17 Jul 2004 19:44:13 GMT (envelope-from dwmalone) Message-Id: <200407171944.i6HJiDJM057563@repoman.freebsd.org> From: David Malone Date: Sat, 17 Jul 2004 19:44:13 +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/netinet tcp_syncache.c tcp_var.h 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: Sat, 17 Jul 2004 19:44:13 -0000 dwmalone 2004-07-17 19:44:13 UTC FreeBSD src repository Modified files: sys/netinet tcp_syncache.c tcp_var.h Log: The tcp syncache code was leaving the IPv6 flowlabel uninitialised for the SYN|ACK packet and then letting in6_pcbconnect set the flowlabel later. Arange for the syncache/syncookie code to set and recall the flow label so that the flowlabel used for the SYN|ACK is consistent. This is done by using some of the cookie (when tcp cookies are enabeled) and by stashing the flowlabel in syncache. Tested and Discovered by: Orla McGann Approved by: ume, silby MFC after: 1 month Revision Changes Path 1.61 +31 -6 src/sys/netinet/tcp_syncache.c 1.108 +1 -0 src/sys/netinet/tcp_var.h