aboutsummaryrefslogtreecommitdiff
path: root/other/java/client/src
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2021-07-19 01:12:31 -0700
committerChris Lu <chris.lu@gmail.com>2021-07-19 01:12:31 -0700
commit8dc5def435826dcbe1e97098f55394ed42529ea9 (patch)
tree59d7804e9b0faa807b69cdc79ed3537bacb7c6b6 /other/java/client/src
parent99155e488072f694761dd2166e7b277a65b82124 (diff)
downloadseaweedfs-8dc5def435826dcbe1e97098f55394ed42529ea9.tar.xz
seaweedfs-8dc5def435826dcbe1e97098f55394ed42529ea9.zip
proto: add remote
Diffstat (limited to 'other/java/client/src')
-rw-r--r--other/java/client/src/main/proto/filer.proto7
1 files changed, 7 insertions, 0 deletions
diff --git a/other/java/client/src/main/proto/filer.proto b/other/java/client/src/main/proto/filer.proto
index 522622a32..dd88bc005 100644
--- a/other/java/client/src/main/proto/filer.proto
+++ b/other/java/client/src/main/proto/filer.proto
@@ -101,6 +101,13 @@ message Entry {
bytes hard_link_id = 7;
int32 hard_link_counter = 8; // only exists in hard link meta data
bytes content = 9; // if not empty, the file content
+
+ message Remote {
+ int64 last_modified_at = 1;
+ int64 size = 2;
+ string e_tag = 3;
+ }
+ Remote remote = 10;
}
message FullEntry {