From owner-svn-src-projects@FreeBSD.ORG Tue Apr 28 13:22:40 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 DF58D106566B; Tue, 28 Apr 2009 13:22:40 +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 CE46D8FC13; Tue, 28 Apr 2009 13:22:40 +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 n3SDMe6D050681; Tue, 28 Apr 2009 13:22:40 GMT (envelope-from rpaulo@svn.freebsd.org) Received: (from rpaulo@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n3SDMe9I050680; Tue, 28 Apr 2009 13:22:40 GMT (envelope-from rpaulo@svn.freebsd.org) Message-Id: <200904281322.n3SDMe9I050680@svn.freebsd.org> From: Rui Paulo Date: Tue, 28 Apr 2009 13:22:40 +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: r191628 - 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: Tue, 28 Apr 2009 13:22:41 -0000 Author: rpaulo Date: Tue Apr 28 13:22:40 2009 New Revision: 191628 URL: http://svn.freebsd.org/changeset/base/191628 Log: Sync with sys and add mesh debug bit. 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 Tue Apr 28 11:56:54 2009 (r191627) +++ projects/mesh11s/usr.sbin/wlandebug/wlandebug.c Tue Apr 28 13:22:40 2009 (r191628) @@ -65,7 +65,7 @@ const char *progname; #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 */ -#define IEEE80211_MSG_RADKEYS 0x00002000 /* dump 802.1x keys */ +#define IEEE80211_MSG_MES 0x00002000 /* mesh networking */ #define IEEE80211_MSG_WPA 0x00001000 /* WPA/RSN protocol */ #define IEEE80211_MSG_ACL 0x00000800 /* ACL handling */ #define IEEE80211_MSG_WME 0x00000400 /* WME protocol */ @@ -101,7 +101,7 @@ static struct { { "dot1xsm", IEEE80211_MSG_DOT1XSM }, { "radius", IEEE80211_MSG_RADIUS }, { "raddump", IEEE80211_MSG_RADDUMP }, - { "radkeys", IEEE80211_MSG_RADKEYS }, + { "mesh", IEEE80211_MSG_MESH }, { "wpa", IEEE80211_MSG_WPA }, { "acl", IEEE80211_MSG_ACL }, { "wme", IEEE80211_MSG_WME },