aboutsummaryrefslogtreecommitdiff
path: root/other/java/client/src
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2020-07-15 14:19:15 -0700
committerChris Lu <chris.lu@gmail.com>2020-07-15 14:19:15 -0700
commit2286d27730ba0fd38654130ae8bb02181e3b45fb (patch)
tree955679b7b38aaf48687c481a9ec68d8ff9e00587 /other/java/client/src
parent86c81375462c874c34770bdd10df187075f10389 (diff)
downloadseaweedfs-2286d27730ba0fd38654130ae8bb02181e3b45fb.tar.xz
seaweedfs-2286d27730ba0fd38654130ae8bb02181e3b45fb.zip
rename
Diffstat (limited to 'other/java/client/src')
-rw-r--r--other/java/client/src/main/proto/filer.proto6
1 files changed, 5 insertions, 1 deletions
diff --git a/other/java/client/src/main/proto/filer.proto b/other/java/client/src/main/proto/filer.proto
index cdcfa44fc..dcc18f2a5 100644
--- a/other/java/client/src/main/proto/filer.proto
+++ b/other/java/client/src/main/proto/filer.proto
@@ -115,7 +115,11 @@ message FileChunk {
FileId source_fid = 8;
bytes cipher_key = 9;
bool is_compressed = 10;
- bool is_file_chunks = 11; // content is a list of FileChunks
+ bool is_chunk_manifest = 11; // content is a list of FileChunks
+}
+
+message FileChunkManifest {
+ repeated FileChunk chunks = 1;
}
message FileId {