svn commit: r363327 - head/sys/sys

Adrian Chadd adrian at FreeBSD.org
Sun Jul 19 16:07:52 UTC 2020


Author: adrian
Date: Sun Jul 19 16:07:51 2020
New Revision: 363327
URL: https://svnweb.freebsd.org/changeset/base/363327

Log:
  [net80211] missing from last commit, le whoops
  
  Differential Revision:https://reviews.freebsd.org/D25630

Modified:
  head/sys/sys/priv.h

Modified: head/sys/sys/priv.h
==============================================================================
--- head/sys/sys/priv.h	Sun Jul 19 15:16:57 2020	(r363326)
+++ head/sys/sys/priv.h	Sun Jul 19 16:07:51 2020	(r363327)
@@ -351,8 +351,10 @@
 /*
  * 802.11-related privileges.
  */
-#define	PRIV_NET80211_GETKEY	440	/* Query 802.11 keys. */
-#define	PRIV_NET80211_MANAGE	441	/* Administer 802.11. */
+#define	PRIV_NET80211_VAP_GETKEY	440	/* Query VAP 802.11 keys. */
+#define	PRIV_NET80211_VAP_MANAGE	441	/* Administer 802.11 VAP */
+#define	PRIV_NET80211_VAP_SETMAC	442	/* Set VAP MAC address */
+#define	PRIV_NET80211_CREATE_VAP	443	/* Create a new VAP */
 
 /*
  * Placeholder for AppleTalk privileges, not supported anymore.


More information about the svn-src-head mailing list