Some comment updates, notably that I haven't seen the group membership arrays
authorJim McDonough <jmcd@samba.org>
Mon, 7 Apr 2003 20:34:46 +0000 (20:34 +0000)
committerJim McDonough <jmcd@samba.org>
Mon, 7 Apr 2003 20:34:46 +0000 (20:34 +0000)
yet (the ones that are rid-only).
(This used to be commit 0a5b5d00db42de868c72ec3d9d1d747c9ef391e4)

source3/include/authdata.h

index dc9f21754936f271c15c56a5eea882257b8a23e8..1521185a8f87302631156b41f801722b1f47b297 100644 (file)
@@ -33,6 +33,11 @@ typedef struct pac_signature_data {
        uint8 *signature;
 } PAC_SIGNATURE_DATA;
 
+typedef struct group_membership {
+       uint32 rid;
+       uint32 attrs;
+} GROUP_MEMBERSHIP;
+
 typedef struct krb_sid_and_attrs {
        uint32 sid_ptr;
        uint32 attrs;
@@ -99,7 +104,11 @@ typedef struct pac_logon_info {
        UNISTR2 uni_dom_controller;
        UNISTR2 uni_dom_name;
        DOM_SID2 dom_sid;
+       /* group membership array needs to go in here.  
+          I've not seen it on the wire */
        KRB_SID_AND_ATTR_ARRAY extra_sids;
+       DOM_SID2 res_group_dom_sid;
+       /* resource group membership array needs to go in here */
        
 } PAC_LOGON_INFO;