From 10c6f3f71a4fe3e36e2a0476dc0077187371fafb Mon Sep 17 00:00:00 2001 From: Nadezhda Ivanova Date: Mon, 21 Sep 2009 17:27:50 -0700 Subject: Initial Implementation of the DS objects access checks. Currently disabled. The search will be greatly modified, also the object tree stuff will be simplified. --- source4/libcli/security/security.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'source4/libcli/security/security.h') diff --git a/source4/libcli/security/security.h b/source4/libcli/security/security.h index 3cfa484816..18f6c820d1 100644 --- a/source4/libcli/security/security.h +++ b/source4/libcli/security/security.h @@ -29,6 +29,15 @@ enum security_user_level { struct auth_session_info; +struct object_tree { + uint32_t remaining_access; + struct GUID guid; + /* linked list of children */ + struct object_tree * children; + struct object_tree * prev; + struct object_tree * next; +}; + /* Moved the dom_sid functions to the top level dir with manual proto header */ #include "libcli/security/dom_sid.h" #include "libcli/security/secace.h" -- cgit