summaryrefslogtreecommitdiff
path: root/source4/include
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2004-12-06 07:12:38 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:06:23 -0500
commitad3ee0a81c4b2bf2ae67ba461e936f7777584345 (patch)
tree5a28cbe677693b20cd429b1766012b76c7e6d728 /source4/include
parent9defca2895fb94f48df00a4e388ba4f5de5d5ebc (diff)
downloadsamba-ad3ee0a81c4b2bf2ae67ba461e936f7777584345.tar.gz
samba-ad3ee0a81c4b2bf2ae67ba461e936f7777584345.tar.bz2
samba-ad3ee0a81c4b2bf2ae67ba461e936f7777584345.zip
r4073: - added a set of lsa helper routines to make lsa lookups that are
related to filesharing. For example, in order to manipulate ACLs properly its important to be able to call LookupSids, and to be able to lookup what privileges a SID has. - added 3 new commands to smbclient "lookupname", "lookupsid" and "privileges" (This used to be commit 8780c40f0539da72652d17455e98fcaee6d197d1)
Diffstat (limited to 'source4/include')
-rw-r--r--source4/include/cli_context.h1
-rw-r--r--source4/include/structs.h2
2 files changed, 3 insertions, 0 deletions
diff --git a/source4/include/cli_context.h b/source4/include/cli_context.h
index a8c3f2d2e1..843e8e8ca9 100644
--- a/source4/include/cli_context.h
+++ b/source4/include/cli_context.h
@@ -28,4 +28,5 @@ struct smbcli_state {
struct smbcli_session *session;
struct smbcli_tree *tree;
struct substitute_context *substitute;
+ struct smblsa_state *lsa;
};
diff --git a/source4/include/structs.h b/source4/include/structs.h
index 9a2c965671..46deaa52c7 100644
--- a/source4/include/structs.h
+++ b/source4/include/structs.h
@@ -127,3 +127,5 @@ struct security_acl;
struct security_ace;
typedef struct security_descriptor SEC_DESC;
+
+struct lsa_RightSet;