Author: sahlberg
Date: 2007-08-29 11:54:23 +0000 (Wed, 29 Aug 2007)
New Revision: 24774

WebSVN: 
http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=24774

Log:
add 5 specific access mask bits for policy handles created for aliases

these five access mask bits :
   add member
   remove members
   get members
   lookup info
   set info
come from wireshark/ethereal  where they were added to cvs in Aug 21  2002


http://anonsvn.wireshark.org/viewvc/viewvc.py/trunk/epan/dissectors/packet-dcerpc-samr.c?r1=5987&r2=6054




Modified:
   branches/SAMBA_4_0/source/librpc/idl/samr.idl


Changeset:
Modified: branches/SAMBA_4_0/source/librpc/idl/samr.idl
===================================================================
--- branches/SAMBA_4_0/source/librpc/idl/samr.idl       2007-08-29 11:46:44 UTC 
(rev 24773)
+++ branches/SAMBA_4_0/source/librpc/idl/samr.idl       2007-08-29 11:54:23 UTC 
(rev 24774)
@@ -50,6 +50,14 @@
                SAMR_ACCESS_OPEN_DOMAIN         = 0x00000020
        } samr_ConnectAccessMask;
 
+       typedef [bitmap32bit] bitmap {
+               ALIAS_ACCESS_ADD_MEMBER      = 0x00000001,
+               ALIAS_ACCESS_REMOVE_MEMBER   = 0x00000002,
+               ALIAS_ACCESS_GET_MEMBERS     = 0x00000004,
+               ALIAS_ACCESS_LOOKUP_INFO     = 0x00000008,
+               ALIAS_ACCESS_SET_INFO        = 0x00000010
+       } samr_AliasAccessMask;
+
        /******************/
        /* Function: 0x00 */
        NTSTATUS samr_Connect (
@@ -314,7 +322,7 @@
        NTSTATUS samr_CreateDomAlias(
                [in,ref]      policy_handle *domain_handle,
                [in,ref]      lsa_String   *alias_name,
-               [in]          uint32         access_mask,
+               [in]          samr_AliasAccessMask access_mask,
                [out,ref]     policy_handle *alias_handle,
                [out,ref]     uint32        *rid
                );
@@ -489,7 +497,7 @@
        /* Function    0x1b     */
        NTSTATUS samr_OpenAlias (
                [in,ref]      policy_handle *domain_handle,
-               [in]          uint32 access_mask,
+               [in]          samr_AliasAccessMask access_mask,
                [in]          uint32 rid,
                [out,ref]     policy_handle *alias_handle
                );

Reply via email to