diff options
| author | Lorry Tar Creator <lorry-tar-importer@baserock.org> | 2015-02-17 17:25:57 +0000 |
|---|---|---|
| committer | <> | 2015-03-17 16:26:24 +0000 |
| commit | 780b92ada9afcf1d58085a83a0b9e6bc982203d1 (patch) | |
| tree | 598f8b9fa431b228d29897e798de4ac0c1d3d970 /src/rep/rep.msg | |
| parent | 7a2660ba9cc2dc03a69ddfcfd95369395cc87444 (diff) | |
| download | berkeleydb-master.tar.gz | |
Diffstat (limited to 'src/rep/rep.msg')
| -rw-r--r-- | src/rep/rep.msg | 70 |
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 |
