summaryrefslogtreecommitdiff
path: root/source3/librpc/idl/server_id.idl
blob: 51900000edb0b5ed77c08d3e4c1ca7bc2330e038 (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
[
	pointer_default(unique)
]
interface server_id
{

	/* used to look like the following, note that unique_id was not
	 * marshalled at all...

	struct server_id {
		pid_t pid;
	#ifdef CLUSTER_SUPPORT
		uint32 vnn;
	#endif
		uint64_t unique_id;
	};

	*/

	typedef [public] struct {
		hyper pid;
		uint32 task_id;
		uint32 vnn;
		udlong unique_id;
	} server_id;
}