aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJimmy Gong <jimmyxgong@google.com>2018-09-26 11:09:51 -0700
committerandroid-build-merger <android-build-merger@google.com>2018-09-26 11:09:51 -0700
commit3b11623c09498adc28a3569677f9ce2f08b0d038 (patch)
tree2d3b95b2f1495933a8a7b4996dda6ff2f370c3e5
parent413ad9e7deb98c9e49b41159ba64372a1e0e5a48 (diff)
parent4f5e3f29fa4c521f218b9cf43d5a8287615578ef (diff)
downloadsystem_api-3b11623c09498adc28a3569677f9ce2f08b0d038.tar.gz
smbprovider: Add MountConfigProto to directory_entry am: f63dc2e08f
am: 4f5e3f29fa Change-Id: I488f309d7ca759ba32342e05388a812a099d466f
-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().