mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
6840549123
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
26 lines
345 B
Plaintext
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;
|
|
}
|