summaryrefslogtreecommitdiff
path: root/librpc/idl/idmap.idl
blob: 65e4596adfa147b6b7fb36c08e27a3d92e7ba0d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#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;
}