aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJimmy Gong <jimmyxgong@google.com>2018-09-26 10:55:44 -0700
committerandroid-build-merger <android-build-merger@google.com>2018-09-26 10:55:44 -0700
commit4f5e3f29fa4c521f218b9cf43d5a8287615578ef (patch)
tree2d3b95b2f1495933a8a7b4996dda6ff2f370c3e5
parentec99d67c3f429b2d1ee444603cf5b1696ce8c3f1 (diff)
parentf63dc2e08f0c619b185cd48de3dcf758bcd9d109 (diff)
downloadsystem_api-4f5e3f29fa4c521f218b9cf43d5a8287615578ef.tar.gz
am: f63dc2e08f Change-Id: Ic468d1f954009321e594d96f6f8c70ccaf87333d
-rw-r--r--dbus/smbprovider/directory_entry.proto9
1 files changed, 9 insertions, 0 deletions
diff --git a/dbus/smbprovider/directory_entry.proto b/dbus/smbprovider/directory_entry.proto
index 6a6ffa5..940c185 100644
--- a/dbus/smbprovider/directory_entry.proto
+++ b/dbus/smbprovider/directory_entry.proto
@@ -64,6 +64,15 @@ message MountOptionsProto {
// Authentication parameters.
optional string workgroup = 2;
optional string username = 3;
+
+ // Mount options set by the client.
+ optional MountConfigProto mount_config = 4;
+}
+
+message MountConfigProto {
+ // Boolean indication whether or not to enable NTLM protocol. False
+ // disables the NTLM protocol.
+ optional bool enable_ntlm = 1;
}
// Used for passing inputs into SmbProvider.Unmount().