summaryrefslogtreecommitdiff
path: root/src/rep/rep.msg
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@baserock.org>2015-02-17 17:25:57 +0000
committer <>2015-03-17 16:26:24 +0000
commit780b92ada9afcf1d58085a83a0b9e6bc982203d1 (patch)
tree598f8b9fa431b228d29897e798de4ac0c1d3d970 /src/rep/rep.msg
parent7a2660ba9cc2dc03a69ddfcfd95369395cc87444 (diff)
downloadberkeleydb-master.tar.gz
Imported from /home/lorry/working-area/delta_berkeleydb/db-6.1.23.tar.gz.HEADdb-6.1.23master
Diffstat (limited to 'src/rep/rep.msg')
-rw-r--r--src/rep/rep.msg70
1 files changed, 68 insertions, 2 deletions
diff --git a/src/rep/rep.msg b/src/rep/rep.msg
index b751a64d..d5c56d93 100644
--- a/src/rep/rep.msg
+++ b/src/rep/rep.msg
@@ -1,7 +1,7 @@
/*-
* See the file LICENSE for redistribution information.
*
- * Copyright (c) 2001, 2012 Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2001, 2015 Oracle and/or its affiliates. All rights reserved.
*
* $Id$
*/
@@ -57,7 +57,22 @@ ARG pgsize u_int32_t
ARG pgno db_pgno_t
ARG max_pgno db_pgno_t
ARG filenum u_int32_t
-ARG finfo_flags u_int32_t
+ARG finfo_flags u_int32_t
+ARG type u_int32_t
+ARG db_flags u_int32_t
+ARG uid DBT
+ARG info DBT
+ARG dir DBT
+ARG blob_fid_lo u_int32_t
+ARG blob_fid_hi u_int32_t
+END
+
+BEGIN_MSG fileinfo_v7 alloc check_length version
+ARG pgsize u_int32_t
+ARG pgno db_pgno_t
+ARG max_pgno db_pgno_t
+ARG filenum u_int32_t
+ARG finfo_flags u_int32_t
ARG type u_int32_t
ARG db_flags u_int32_t
ARG uid DBT
@@ -158,3 +173,54 @@ ARG lsn DB_LSN
ARG hist_sec u_int32_t
ARG hist_nsec u_int32_t
END
+
+/*
+ * Request for blob files.
+ */
+BEGIN_MSG blob_update_req
+ARG blob_fid u_int64_t
+ARG blob_sid u_int64_t
+ARG blob_id u_int64_t
+ARG highest_id u_int64_t
+END
+
+/*
+ * A list of blob file for a database.
+ */
+BEGIN_MSG blob_update
+ARG blob_fid u_int64_t
+ARG highest_id u_int64_t
+ARG flags u_int32_t
+ARG num_blobs u_int32_t
+END
+
+/*
+ * Blob file description, part of blob_update.
+ */
+BEGIN_MSG blob_file
+ARG blob_sid u_int64_t
+ARG blob_id u_int64_t
+ARG blob_size u_int64_t
+END
+
+/*
+ * A piece of data from a blob file.
+ */
+BEGIN_MSG blob_chunk
+ARG flags u_int32_t
+ARG blob_fid u_int64_t
+ARG blob_sid u_int64_t
+ARG blob_id u_int64_t
+ARG offset u_int64_t
+ARG data DBT
+END
+
+/*
+ * Request for data from a blob file at the given offset.
+ */
+BEGIN_MSG blob_chunk_req
+ARG blob_fid u_int64_t
+ARG blob_sid u_int64_t
+ARG blob_id u_int64_t
+ARG offset u_int64_t
+END