From owner-cvs-src@FreeBSD.ORG Fri Feb 2 18:34:19 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 776CC16A407; Fri, 2 Feb 2007 18:34:19 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 50C7D13C49D; Fri, 2 Feb 2007 18:34:19 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l12IYJd7078201; Fri, 2 Feb 2007 18:34:19 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l12IYJ14078200; Fri, 2 Feb 2007 18:34:19 GMT (envelope-from bms) Message-Id: <200702021834.l12IYJ14078200@repoman.freebsd.org> From: Bruce M Simpson Date: Fri, 2 Feb 2007 18:34:18 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet tcp.h tcp_usrreq.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 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: Fri, 02 Feb 2007 18:34:19 -0000 bms 2007-02-02 18:34:18 UTC FreeBSD src repository Modified files: sys/netinet tcp.h tcp_usrreq.c Log: Expose smoothed RTT and RTT variance measurements to userland via socket option TCP_INFO. Note that the units used in the original Linux API are in microseconds, so use a 64-bit mantissa to convert FreeBSD's internal measurements from struct tcpcb from ticks. Revision Changes Path 1.34 +2 -2 src/sys/netinet/tcp.h 1.145 +4 -0 src/sys/netinet/tcp_usrreq.c