1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00
samba-mirror/source3/librpc/idl/server_id.idl
Günther Deschner 6840549123 s3: add server_id.idl and use only autogenerated code.
Volker, Tridge and other clustering gurus, please check.

It is ok to get rid of ifdef CLUSTER_SUPPORT here, right ?
Why was unique_id not marshalled at all ?

Guenther
2011-02-17 16:02:19 +01:00

26 lines
345 B
Plaintext

[
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 {
uint32 pid;
uint32 vnn;
udlong unique_id;
} server_id;
}