diff options
author | Martin Schwenke <martin@meltin.net> | 2019-07-30 10:52:05 +1000 |
---|---|---|
committer | Amitay Isaacs <amitay@samba.org> | 2019-10-24 04:06:43 +0000 |
commit | 496204feb0e2b6eb2f3d9a74e45596a3e74ad9b1 (patch) | |
tree | fc4664de9fce57b2976ecfbda855f7f50a1706e7 /ctdb/protocol/protocol_api.h | |
parent | a896486b62bbcf9915727ba7bfc768fb5383f0c7 (diff) | |
download | samba-496204feb0e2b6eb2f3d9a74e45596a3e74ad9b1.tar.gz |
ctdb-protocol: Add marshalling for control DB_VACUUM
Signed-off-by: Martin Schwenke <martin@meltin.net>
Reviewed-by: Amitay Isaacs <amitay@gmail.com>
Diffstat (limited to 'ctdb/protocol/protocol_api.h')
-rw-r--r-- | ctdb/protocol/protocol_api.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ctdb/protocol/protocol_api.h b/ctdb/protocol/protocol_api.h index cf4c4635dd4..c2cd4a76289 100644 --- a/ctdb/protocol/protocol_api.h +++ b/ctdb/protocol/protocol_api.h @@ -607,6 +607,10 @@ void ctdb_req_control_vacuum_fetch(struct ctdb_req_control *request, struct ctdb_rec_buffer *recbuf); int ctdb_reply_control_vacuum_fetch(struct ctdb_reply_control *reply); +void ctdb_req_control_db_vacuum(struct ctdb_req_control *request, + struct ctdb_db_vacuum *db_vacuum); +int ctdb_reply_control_db_vacuum(struct ctdb_reply_control *reply); + /* From protocol/protocol_debug.c */ void ctdb_packet_print(uint8_t *buf, size_t buflen, FILE *fp); |