aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJimmy Gong <jimmyxgong@google.com>2018-09-26 11:20:00 -0700
committerandroid-build-merger <android-build-merger@google.com>2018-09-26 11:20:00 -0700
commit213c82a95312ad2e0fdda2c2e80c675fee3b23ff (patch)
tree2d3b95b2f1495933a8a7b4996dda6ff2f370c3e5
parent6eef652b3d84dbdd8521608290b1bffa31a89ef6 (diff)
parent03282d7474b7cb0027178243c17cea663cd8d94f (diff)
downloadsystem_api-213c82a95312ad2e0fdda2c2e80c675fee3b23ff.tar.gz
smbprovider: Add MountConfigProto to directory_entry am: f63dc2e08f am: 4f5e3f29fa am: 3b11623c09
am: 03282d7474 Change-Id: I8033ffe21b246a82c5581e64d8c5143fa7f3b4ec
-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().