From owner-svn-src-projects@FreeBSD.ORG Sat Jun 20 20:35:43 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 51D681065686; Sat, 20 Jun 2009 20:35:43 +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 40CD18FC0C; Sat, 20 Jun 2009 20:35:43 +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 n5KKZhUI086203; Sat, 20 Jun 2009 20:35:43 GMT (envelope-from rpaulo@svn.freebsd.org) Received: (from rpaulo@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n5KKZhjR086201; Sat, 20 Jun 2009 20:35:43 GMT (envelope-from rpaulo@svn.freebsd.org) Message-Id: <200906202035.n5KKZhjR086201@svn.freebsd.org> From: Rui Paulo Date: Sat, 20 Jun 2009 20:35:43 +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: r194557 - projects/mesh11s/usr.sbin/wlandebug 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: Sat, 20 Jun 2009 20:35:43 -0000 Author: rpaulo Date: Sat Jun 20 20:35:42 2009 New Revision: 194557 URL: http://svn.freebsd.org/changeset/base/194557 Log: Sync with ieee80211_var.h Sponsored by: The FreeBSD Foundation Modified: projects/mesh11s/usr.sbin/wlandebug/wlandebug.c Modified: projects/mesh11s/usr.sbin/wlandebug/wlandebug.c ============================================================================== --- projects/mesh11s/usr.sbin/wlandebug/wlandebug.c Sat Jun 20 20:29:21 2009 (r194556) +++ projects/mesh11s/usr.sbin/wlandebug/wlandebug.c Sat Jun 20 20:35:42 2009 (r194557) @@ -61,7 +61,7 @@ const char *progname; #define IEEE80211_MSG_OUTPUT 0x00100000 /* output handling */ #define IEEE80211_MSG_STATE 0x00080000 /* state machine */ #define IEEE80211_MSG_POWER 0x00040000 /* power save handling */ -#define IEEE80211_MSG_DOT1X 0x00020000 /* 802.1x authenticator */ +#define IEEE80211_MSG_HWMP 0x00020000 /* hybrid mesh protocol */ #define IEEE80211_MSG_DOT1XSM 0x00010000 /* 802.1x state machine */ #define IEEE80211_MSG_RADIUS 0x00008000 /* 802.1x radius client */ #define IEEE80211_MSG_RADDUMP 0x00004000 /* dump 802.1x radius packets */ @@ -97,7 +97,7 @@ static struct { { "output", IEEE80211_MSG_OUTPUT }, { "state", IEEE80211_MSG_STATE }, { "power", IEEE80211_MSG_POWER }, - { "dot1x", IEEE80211_MSG_DOT1X }, + { "hwmp", IEEE80211_MSG_HWMP }, { "dot1xsm", IEEE80211_MSG_DOT1XSM }, { "radius", IEEE80211_MSG_RADIUS }, { "raddump", IEEE80211_MSG_RADDUMP },