summaryrefslogtreecommitdiff
path: root/source3/librpc/idl
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2011-10-31 12:37:09 +0100
committerVolker Lendecke <vl@samba.org>2011-10-31 12:48:06 +0100
commita86c536227a693c40a2daf9c1b95844b503ccd08 (patch)
tree421d46bda94014732df93099a507d8e63e2570e2 /source3/librpc/idl
parenta354758da50d09341bbea237548de52e3821a198 (diff)
downloadsamba-a86c536227a693c40a2daf9c1b95844b503ccd08.tar.gz
samba-a86c536227a693c40a2daf9c1b95844b503ccd08.tar.bz2
samba-a86c536227a693c40a2daf9c1b95844b503ccd08.zip
s3: Remove some leftovers of old ctdb tdb2 code
Diffstat (limited to 'source3/librpc/idl')
-rw-r--r--source3/librpc/idl/messaging.idl17
1 files changed, 1 insertions, 16 deletions
diff --git a/source3/librpc/idl/messaging.idl b/source3/librpc/idl/messaging.idl
index 53aabfad21..96ca78497c 100644
--- a/source3/librpc/idl/messaging.idl
+++ b/source3/librpc/idl/messaging.idl
@@ -101,7 +101,7 @@ interface messaging
MSG_DUMP_EVENT_LIST = 0x0500,
/* dbwrap messages 4001-4999 (0x0FA0 - 0x1387) */
- MSG_DBWRAP_TDB2_CHANGES = 4001,
+ /* MSG_DBWRAP_TDB2_CHANGES = 4001, */
MSG_DBWRAP_G_LOCK_RETRY = 4002
} messaging_type;
@@ -119,19 +119,4 @@ interface messaging
uint32 num_messages;
messaging_rec messages[num_messages];
} messaging_array;
-
- /*
- * struct used for change notify messages
- * in the dbwrap_tdb2 code
- */
- typedef [public] struct {
- [charset(DOS),value("TDB2")] uint8 magic_string[4];
- [value(1)] uint32 magic_version;
- [charset(UTF8),string] uint8 name[];
- uint32 old_seqnum;
- uint32 new_seqnum;
- uint32 num_changes;
- uint32 num_keys;
- DATA_BLOB keys[num_keys];
- } dbwrap_tdb2_changes;
}