source: trunk/server/source3/librpc/idl/server_id.idl

Last change on this file was 745, checked in by Silvan Scherrer, 13 years ago

Samba Server: updated trunk to 3.6.0

File size: 370 bytes
Line 
1[
2 pointer_default(unique)
3]
4interface 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 vnn;
23 udlong unique_id;
24 } server_id;
25}
Note: See TracBrowser for help on using the repository browser.