aboutsummaryrefslogtreecommitdiff
path: root/dbus
diff options
context:
space:
mode:
authorChirantan Ekbote <chirantan@chromium.org>2018-08-22 18:02:15 -0700
committerchrome-bot <chrome-bot@chromium.org>2018-08-23 17:43:01 -0700
commitbbae6045ae9aaa1a2cfc5da4cce3e988131f47b1 (patch)
treea5b034c8a43ddf3343a956da5215b02fad93708c /dbus
parent14c26906cdafd2402017f4a908417f6058b2a3b7 (diff)
downloadsystem_api-bbae6045ae9aaa1a2cfc5da4cce3e988131f47b1.tar.gz
seneschal: Update proto comments
Update some comments in the seneschal .proto file to reflect changes in behavior on the server. BUG=chromium:703939 TEST=none Change-Id: I0af63d03eda9b585f2cb1519d1f786c1649658d4 Signed-off-by: Chirantan Ekbote <chirantan@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/1186133 Reviewed-by: Stephen Barber <smbarber@chromium.org> Reviewed-by: Dylan Reid <dgreid@chromium.org>
Diffstat (limited to 'dbus')
-rw-r--r--dbus/seneschal/seneschal_service.proto14
1 files changed, 8 insertions, 6 deletions
diff --git a/dbus/seneschal/seneschal_service.proto b/dbus/seneschal/seneschal_service.proto
index bb46029..9fe7285 100644
--- a/dbus/seneschal/seneschal_service.proto
+++ b/dbus/seneschal/seneschal_service.proto
@@ -12,12 +12,14 @@ option go_package = "seneschal_proto";
// Defines a path to be shared with a 9p server.
message SharedPath {
- // Path to be shared. The basename of this path is appended to the root of
- // the server to get the destination path. For example,
- // "/home/chronos/user/Downloads/project" will be visible to the server as
- // "/project". Note that this means that it is not possible to share 2
- // different paths with the same name with the same server as they would
- // both have the same destination path inside the server's root directory.
+ // Path to be shared. Must be relative, must not have any ".." elements, and
+ // must not end with ".". The destination path is constructed by appending
+ // the name of the storage location and this path to the root of the server.
+ // So if |path| is "foo/bar" and the |storage_location| field of the
+ // SharePathRequest is "DOWNLOADS", then the destination path will be
+ // "/Downloads/foo/bar". Any ancestor directories will be automatically
+ // created but will not be writable unless they have been shared via a
+ // SharePathRequest.
string path = 1;
// Whether the path should be writable by the server. Due to limitations in