summaryrefslogtreecommitdiffstats
path: root/source/include/mapping.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/include/mapping.h')
-rw-r--r--source/include/mapping.h25
1 files changed, 20 insertions, 5 deletions
diff --git a/source/include/mapping.h b/source/include/mapping.h
index fdaa2b04532..a9f0149bad1 100644
--- a/source/include/mapping.h
+++ b/source/include/mapping.h
@@ -1,5 +1,6 @@
/*
- * Unix SMB/CIFS implementation.
+ * Unix SMB/Netbios implementation.
+ * Version 1.9.
* RPC Pipe client / server routines
* Copyright (C) Andrew Tridgell 1992-2000,
* Copyright (C) Jean François Micouleau 1998-2001.
@@ -19,15 +20,29 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
-#define ENUM_ONLY_MAPPED True
-#define ENUM_ALL_MAPPED False
-
typedef struct _GROUP_MAP {
- struct pdb_methods *methods;
gid_t gid;
DOM_SID sid;
enum SID_NAME_USE sid_name_use;
fstring nt_name;
fstring comment;
+ uint32 privilege;
} GROUP_MAP;
+typedef struct _PRIVS {
+ uint32 se_priv;
+ const char *priv;
+ const char *description;
+} PRIVS;
+
+#define SE_PRIV_NONE 0x0000
+#define SE_PRIV_ADD_USERS 0x0001
+#define SE_PRIV_ADD_MACHINES 0x0002
+#define SE_PRIV_PRINT_OPERATOR 0x0004
+#define SE_PRIV_ALL 0xffff
+
+#define PRIV_ALL_INDEX 4
+
+
+#define ENUM_ONLY_MAPPED True
+#define ENUM_ALL_MAPPED False