From owner-svn-src-all@FreeBSD.ORG Sun May 25 15:53:53 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0905AD65 for ; Sun, 25 May 2014 15:53:53 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C9B0B2A62 for ; Sun, 25 May 2014 15:53:52 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s4PFrqPw093072 for ; Sun, 25 May 2014 15:53:52 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s4PFrqTZ093066 for svn-src-all@freebsd.org; Sun, 25 May 2014 15:53:52 GMT (envelope-from bdrewery) Received: (qmail 63077 invoked from network); 25 May 2014 10:53:50 -0500 Received: from unknown (HELO roundcube.xk42.net) (10.10.5.5) by sweb.xzibition.com with SMTP; 25 May 2014 10:53:50 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Date: Sun, 25 May 2014 10:53:50 -0500 From: Bryan Drewery To: Allan Jude Subject: Re: svn commit: r266645 - head/usr.bin/netstat Organization: FreeBSD In-Reply-To: <201405250741.s4P7fCvh095925@svn.freebsd.org> References: <201405250741.s4P7fCvh095925@svn.freebsd.org> Message-ID: <4aad9c2211e850938174998f66dd3fbb@shatow.net> X-Sender: bdrewery@FreeBSD.org User-Agent: Roundcube Webmail/0.9.5 Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org, owner-src-committers@freebsd.org X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2014 15:53:53 -0000 On 2014-05-25 02:41, Allan Jude wrote: > Author: allanjude (doc committer) > Date: Sun May 25 07:41:12 2014 > New Revision: 266645 > URL: http://svnweb.freebsd.org/changeset/base/266645 > > Log: > Document the new -R flag of netstat(1) introduced in r266448 that > tracks the > flowid for each socket. > > Reviewed by: adrian > Approved by: eadler (mentor) > > Modified: > head/usr.bin/netstat/netstat.1 > > Modified: head/usr.bin/netstat/netstat.1 > ============================================================================== > --- head/usr.bin/netstat/netstat.1 Sun May 25 06:42:43 2014 (r266644) > +++ head/usr.bin/netstat/netstat.1 Sun May 25 07:41:12 2014 (r266645) > @@ -45,7 +45,7 @@ depending on the options for the informa Looks like you forgot to bump .Dd > .It Xo > .Bk -words > .Nm > -.Op Fl 46AaLnSTWx > +.Op Fl 46AaLnSTWxR > .Op Fl f Ar protocol_family | Fl p Ar protocol > .Op Fl M Ar core > .Op Fl N Ar system > @@ -84,6 +84,9 @@ but show ports symbolically. > If > .Fl x > is present, display socket buffer and tcp timer statistics for each > internet socket. > +If > +.Fl R > +is present, display the flowid and flowtype for each internet socket. > When > .Fl T > is present, display information from the TCP control block, including > @@ -367,6 +370,11 @@ and display them symbolically. > .It Fl W > In certain displays, avoid truncating addresses even if this causes > some fields to overflow. > +.It Fl R > +Display the flowid and flowtype for each socket. > +flowid is a 32 bit hardware specific identifier for each flow. > +flowtype defines which protocol fields are hashed to produce the id. > +A complete listing is available in sys/mbuf.h under M_HASHTYPE_* > .El > .Pp > The default display, for active sockets, shows the local -- Regards, Bryan Drewery