1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00
samba-mirror/librpc/idl/idmap.idl
Andrew Bartlett 974ed9cf2c s4:idmap Seperate idmap structures from winbind.idl and match to source3/ idmap
These structures now match those in use in the source3 code.  I'm not
sure if this is the better API or not, but it is far, far safer to
remove a pointer than to add one.

Andrew Bartlett
2010-05-24 23:08:56 +10:00

35 lines
459 B
Plaintext

#include "idl_types.h"
import "security.idl";
[
pointer_default(unique)
]
interface idmap
{
typedef [public] enum {
ID_TYPE_NOT_SPECIFIED,
ID_TYPE_UID,
ID_TYPE_GID,
ID_TYPE_BOTH
} id_type;
typedef [public] struct {
uint32 id;
id_type type;
} unixid;
typedef[public] enum {
ID_UNKNOWN,
ID_MAPPED,
ID_UNMAPPED,
ID_EXPIRED
} id_mapping;
typedef [public] struct {
dom_sid *sid;
unixid xid;
id_mapping status;
} id_map;
}