diff options
| author | Chris Lu <chris.lu@gmail.com> | 2021-07-26 22:53:44 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2021-07-26 22:53:44 -0700 |
| commit | 99b599aa8a674ccd584d612e8e871fdca7670620 (patch) | |
| tree | e2d16070d21c4ecfa68509b095d21c7232b348fa /other/java | |
| parent | 35f70c51b0ff1ca71fec6c0194086329ef9e3e86 (diff) | |
| download | seaweedfs-99b599aa8a674ccd584d612e8e871fdca7670620.tar.xz seaweedfs-99b599aa8a674ccd584d612e8e871fdca7670620.zip | |
remote.mount
Diffstat (limited to 'other/java')
| -rw-r--r-- | other/java/client/src/main/proto/filer.proto | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/other/java/client/src/main/proto/filer.proto b/other/java/client/src/main/proto/filer.proto index 803a2ce32..23c841f18 100644 --- a/other/java/client/src/main/proto/filer.proto +++ b/other/java/client/src/main/proto/filer.proto @@ -92,6 +92,12 @@ message ListEntriesResponse { Entry entry = 1; } +message RemoteEntry { + int64 last_modified_at = 1; + int64 size = 2; + string e_tag = 3; + string storage_name = 4; +} message Entry { string name = 1; bool is_directory = 2; @@ -102,12 +108,7 @@ message Entry { 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; + RemoteEntry remote_entry = 10; } message FullEntry { |
