From owner-svn-src-projects@FreeBSD.ORG Tue May 19 15:56:27 2009 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EF84B106564A; Tue, 19 May 2009 15:56:27 +0000 (UTC) (envelope-from rpaulo@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id DE2238FC14; Tue, 19 May 2009 15:56:27 +0000 (UTC) (envelope-from rpaulo@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n4JFuRvI002582; Tue, 19 May 2009 15:56:27 GMT (envelope-from rpaulo@svn.freebsd.org) Received: (from rpaulo@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n4JFuR4i002581; Tue, 19 May 2009 15:56:27 GMT (envelope-from rpaulo@svn.freebsd.org) Message-Id: <200905191556.n4JFuR4i002581@svn.freebsd.org> From: Rui Paulo Date: Tue, 19 May 2009 15:56:27 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r192390 - projects/mesh11s/sys/net80211 X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 May 2009 15:56:28 -0000 Author: rpaulo Date: Tue May 19 15:56:27 2009 New Revision: 192390 URL: http://svn.freebsd.org/changeset/base/192390 Log: Add next hop to the node struct in preparation for HWMP implementation. Sponsored by: The FreeBSD Foundation Modified: projects/mesh11s/sys/net80211/ieee80211_node.h Modified: projects/mesh11s/sys/net80211/ieee80211_node.h ============================================================================== --- projects/mesh11s/sys/net80211/ieee80211_node.h Tue May 19 15:53:07 2009 (r192389) +++ projects/mesh11s/sys/net80211/ieee80211_node.h Tue May 19 15:56:27 2009 (r192390) @@ -188,6 +188,7 @@ struct ieee80211_node { struct callout ni_mtimer; /* mesh timer */ uint8_t ni_mrcount; /* mesh retry counter */ uint8_t ni_mtimerval; /* mesh timer value */ + uint8_t ni_mnxthop[IEEE80211_ADDR_LEN]; /* 11n state */ uint16_t ni_htcap; /* HT capabilities */