s4-scripting: samba-tool: Fix domain info usage message
[Samba/gebeck_regimport.git] / librpc / idl / server_id.idl
blobac2e9ab318274e2e961d62737a7a8a613d211e54
2 pointer_default(unique)
4 interface server_id
7 /*
8 * Virtual Node Numbers are identifying a node within a cluster.
9 * Ctdbd sets this, we retrieve our vnn from it.
12 const int NONCLUSTER_VNN = 0xFFFFFFFF;
14 /* used to look like the following, note that unique_id was not
15 * marshalled at all...
17 struct server_id {
18 pid_t pid;
19 #ifdef CLUSTER_SUPPORT
20 uint32 vnn;
21 #endif
22 uint64_t unique_id;
27 typedef [public] struct {
28 hyper pid;
29 uint32 task_id;
30 uint32 vnn;
31 hyper unique_id;
32 } server_id;