1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

ReadOnly: Add 4 new record flags to handle read only delegation and revoking of delegations

(This used to be ctdb commit 875b0bede217547b51f02648b6a28a3c98b6b949)
This commit is contained in:
Ronnie Sahlberg 2011-07-20 12:17:27 +10:00
parent b8d06cb41b
commit 8f63a5dadd

View File

@ -488,6 +488,10 @@ struct ctdb_ltdb_header {
#define CTDB_REC_FLAG_MIGRATED_WITH_DATA 0x00010000
#define CTDB_REC_FLAG_VACUUM_MIGRATED 0x00020000
#define CTDB_REC_FLAG_AUTOMATIC 0x00040000
#define CTDB_REC_RO_HAVE_DELEGATIONS 0x01000000
#define CTDB_REC_RO_HAVE_READONLY 0x02000000
#define CTDB_REC_RO_REVOKING_READONLY 0x04000000
#define CTDB_REC_RO_REVOKE_COMPLETE 0x08000000
uint32_t flags;
};