add extended attributes

This commit is contained in:
Chris Lu
2018-09-07 13:12:52 -07:00
parent 75e749039b
commit dd37f0540f
3 changed files with 92 additions and 82 deletions

View File

@@ -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 {