diff options
Diffstat (limited to 'weed/pb/filer.proto')
| -rw-r--r-- | weed/pb/filer.proto | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/weed/pb/filer.proto b/weed/pb/filer.proto index 7681c6c5e..e2b175c11 100644 --- a/weed/pb/filer.proto +++ b/weed/pb/filer.proto @@ -63,7 +63,7 @@ message Entry { bool is_directory = 2; repeated FileChunk chunks = 3; FuseAttributes attributes = 4; - map<string, string> extended = 5; + map<string, bytes> extended = 5; } message EventNotification { @@ -76,6 +76,7 @@ message FileChunk { int64 offset = 2; uint64 size = 3; int64 mtime = 4; + string e_tag = 5; } message FuseAttributes { @@ -100,6 +101,7 @@ message GetEntryAttributesRequest { message GetEntryAttributesResponse { FuseAttributes attributes = 1; repeated FileChunk chunks = 2; + map<string, bytes> extended = 3; } message GetFileContentRequest { |
