diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-02-11 18:47:21 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-03-01 06:29:03 +0100 |
commit | 2a5ac56742db2830a3c8e644d3f0e2681f58c4ac (patch) | |
tree | 61d2f1e263e60c83ac523436794c9645b528edd7 /librpc/idl/security.idl | |
parent | 646aefd998c1af366dcaee6cbc2bad9359a71f45 (diff) | |
download | samba-2a5ac56742db2830a3c8e644d3f0e2681f58c4ac.tar.gz |
librpc/idl Add helper structures for use by samba3 in auth_session_info
The unix info and in particular unix token needs to be preserved into
the struct auth_session_info.
Andrew Bartlett
Diffstat (limited to 'librpc/idl/security.idl')
-rw-r--r-- | librpc/idl/security.idl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/librpc/idl/security.idl b/librpc/idl/security.idl index 266af49caa..2f633ab0ef 100644 --- a/librpc/idl/security.idl +++ b/librpc/idl/security.idl @@ -577,6 +577,14 @@ interface security lsa_SystemAccessModeFlags rights_mask; } security_token; + /* This is not yet sent over the network, but is simply defined in IDL */ + typedef [public] struct { + uid_t uid; + uid_t gid; + uint32 ngroups; + [size_is(ngroups)] gid_t groups[*]; + } security_unix_token; + /* bits that determine which parts of a security descriptor are being queried/set */ typedef [public,bitmap32bit] bitmap { |