From owner-svn-src-all@FreeBSD.ORG Fri Mar 14 11:45:20 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 8F4DA98D; Fri, 14 Mar 2014 11:45:20 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7C961D04; Fri, 14 Mar 2014 11:45:20 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s2EBjKnE057602; Fri, 14 Mar 2014 11:45:20 GMT (envelope-from glebius@svn.freebsd.org) Received: (from glebius@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s2EBjKIg057601; Fri, 14 Mar 2014 11:45:20 GMT (envelope-from glebius@svn.freebsd.org) Message-Id: <201403141145.s2EBjKIg057601@svn.freebsd.org> From: Gleb Smirnoff Date: Fri, 14 Mar 2014 11:45:20 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r263168 - head/sys/sys X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.17 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: Fri, 14 Mar 2014 11:45:20 -0000 Author: glebius Date: Fri Mar 14 11:45:19 2014 New Revision: 263168 URL: http://svnweb.freebsd.org/changeset/base/263168 Log: Add placeholders for IPX/SPX and AppleTalk priveledges, to avoid number clashes with any future constants. Suggested by: rwatson Modified: head/sys/sys/priv.h Modified: head/sys/sys/priv.h ============================================================================== --- head/sys/sys/priv.h Fri Mar 14 10:30:17 2014 (r263167) +++ head/sys/sys/priv.h Fri Mar 14 11:45:19 2014 (r263168) @@ -347,6 +347,11 @@ #define PRIV_NET80211_MANAGE 441 /* Administer 802.11. */ /* + * Placeholder for AppleTalk privileges, not supported anymore. + */ +#define _PRIV_NETATALK_RESERVEDPORT 450 /* Bind low port number. */ + +/* * ATM privileges. */ #define PRIV_NETATM_CFG 460 @@ -387,6 +392,12 @@ #define PRIV_NETINET_BINDANY 506 /* Allow bind to any address. */ /* + * Placeholders for IPX/SPX privileges, not supported any more. + */ +#define _PRIV_NETIPX_RESERVEDPORT 520 /* Bind low port number. */ +#define _PRIV_NETIPX_RAW 521 /* Open netipx raw socket. */ + +/* * NCP privileges. */ #define PRIV_NETNCP 530 /* Use another user's connection. */