diff options
| author | Chris Lu <chris.lu@gmail.com> | 2018-09-07 13:12:52 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2018-09-07 13:12:52 -0700 |
| commit | dd37f0540fb76ecef48d66fb5b748ce0218b0aa3 (patch) | |
| tree | 2950f11e1399c78fd9ae95eb666bf58faad96a89 /weed/pb/filer.proto | |
| parent | 75e749039ba3ae441281266d7eb6abeb07c161bd (diff) | |
| download | seaweedfs-dd37f0540fb76ecef48d66fb5b748ce0218b0aa3.tar.xz seaweedfs-dd37f0540fb76ecef48d66fb5b748ce0218b0aa3.zip | |
add extended attributes
Diffstat (limited to 'weed/pb/filer.proto')
| -rw-r--r-- | weed/pb/filer.proto | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/weed/pb/filer.proto b/weed/pb/filer.proto index 7681c6c5e..fc06c3e84 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 { @@ -100,6 +100,7 @@ message GetEntryAttributesRequest { message GetEntryAttributesResponse { FuseAttributes attributes = 1; repeated FileChunk chunks = 2; + map<string, bytes> extended = 3; } message GetFileContentRequest { |
