diff options
author | Volker Lendecke <vlendec@samba.org> | 2005-05-19 15:45:25 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:16:56 -0500 |
commit | 283991e1fff8b74af693aeb634143b10b5e939c8 (patch) | |
tree | 1bee3b1a9a56fd1c6fadaa37da5173fb09c70d31 /source4/librpc/idl | |
parent | 45511bd09b62266904c547398037fd41fbb8871e (diff) | |
download | samba-283991e1fff8b74af693aeb634143b10b5e939c8.tar.gz samba-283991e1fff8b74af693aeb634143b10b5e939c8.tar.bz2 samba-283991e1fff8b74af693aeb634143b10b5e939c8.zip |
r6907: Unixinfo for samba4, not activated by default.
Volker
(This used to be commit 81ddffde369c5b5e91bc130510f43c6841a789c4)
Diffstat (limited to 'source4/librpc/idl')
-rw-r--r-- | source4/librpc/idl/unixinfo.idl | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/source4/librpc/idl/unixinfo.idl b/source4/librpc/idl/unixinfo.idl new file mode 100644 index 0000000000..e740368875 --- /dev/null +++ b/source4/librpc/idl/unixinfo.idl @@ -0,0 +1,56 @@ +#include "idl_types.h" + +/* + Unixinfo interface definition +*/ + +[ uuid("9c54e310-a955-4885-bd31-78787147dfa6"), + version(0.0), + endpoint("ncacn_np:[\\pipe\\unixinfo]", "ncacn_ip_tcp:", "ncalrpc:"), + pointer_default(unique), + helpstring("Unixinfo specific stuff"), + depends(security) +] interface unixinfo +{ + /******************/ + /* Function: 0x00 */ + NTSTATUS unixinfo_SidToUid ( + [in] dom_sid sid, + [out] hyper uid + ); + + /******************/ + /* Function: 0x01 */ + NTSTATUS unixinfo_UidToSid ( + [in] hyper uid, + [out] dom_sid *sid + ); + + /******************/ + /* Function: 0x02 */ + NTSTATUS unixinfo_SidToGid ( + [in] dom_sid sid, + [out] hyper gid + ); + + /******************/ + /* Function: 0x03 */ + NTSTATUS unixinfo_GidToSid ( + [in] hyper gid, + [out] dom_sid *sid + ); + + typedef struct { + NTSTATUS status; + utf8string homedir; + utf8string shell; + } unixinfo_GetPWUidInfo; + + /******************/ + /* Function: 0x04 */ + NTSTATUS unixinfo_GetPWUid ( + [in,out,range(0,1023)] uint32 count, + [in,size_is(count)] hyper uids[], + [out,size_is(count)] unixinfo_GetPWUidInfo infos[] + ); +} |