s3-server_id Add id2 to server_id to match Samba4
[abartlet/samba.git/.git] / source3 / librpc / idl / server_id.idl
1 [
2         pointer_default(unique)
3 ]
4 interface server_id
5 {
6
7         /* used to look like the following, note that unique_id was not
8          * marshalled at all...
9
10         struct server_id {
11                 pid_t pid;
12         #ifdef CLUSTER_SUPPORT
13                 uint32 vnn;
14         #endif
15                 uint64_t unique_id;
16         };
17
18         */
19
20         typedef [public] struct {
21                 uint32 pid;
22                 uint32 id2;
23                 uint32 vnn;
24                 udlong unique_id;
25         } server_id;
26 }