diff options
author | Andrew Tridgell <tridge@samba.org> | 2007-04-06 04:43:54 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:49:51 -0500 |
commit | a9044f92c9f6eb74c5f7cb56f43a6f8ea25ccb2a (patch) | |
tree | 66051e9710511ad3a8bac9722696f9931539e947 /source4/cluster/ctdb/include | |
parent | 4685a42eaf28e0d4644bfa4cf18ef08abee329d3 (diff) | |
download | samba-a9044f92c9f6eb74c5f7cb56f43a6f8ea25ccb2a.tar.gz samba-a9044f92c9f6eb74c5f7cb56f43a6f8ea25ccb2a.tar.bz2 samba-a9044f92c9f6eb74c5f7cb56f43a6f8ea25ccb2a.zip |
r22098: merged from bzr tree
(This used to be commit a57af1ff8234ab590ebf28b3316953bec880005c)
Diffstat (limited to 'source4/cluster/ctdb/include')
-rw-r--r-- | source4/cluster/ctdb/include/ctdb_private.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source4/cluster/ctdb/include/ctdb_private.h b/source4/cluster/ctdb/include/ctdb_private.h index 66a9a6e244..9c93466e19 100644 --- a/source4/cluster/ctdb/include/ctdb_private.h +++ b/source4/cluster/ctdb/include/ctdb_private.h @@ -155,11 +155,16 @@ enum ctdb_operation { CTDB_REQ_MESSAGE = 6 }; +#define CTDB_MAGIC 0x43544442 /* CTDB */ +#define CTDB_VERSION 1 + /* packet structures */ struct ctdb_req_header { uint32_t length; + uint32_t ctdb_magic; + uint32_t ctdb_version; uint32_t operation; uint32_t destnode; uint32_t srcnode; |