aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJimmy Gong <jimmyxgong@google.com>2018-09-26 11:14:27 -0700
committerandroid-build-merger <android-build-merger@google.com>2018-09-26 11:14:27 -0700
commit03282d7474b7cb0027178243c17cea663cd8d94f (patch)
tree2d3b95b2f1495933a8a7b4996dda6ff2f370c3e5
parentf268c039bdfa9f2a0c6da8e5cb0d4d115d34ea19 (diff)
parent3b11623c09498adc28a3569677f9ce2f08b0d038 (diff)
downloadsystem_api-03282d7474b7cb0027178243c17cea663cd8d94f.tar.gz
smbprovider: Add MountConfigProto to directory_entry am: f63dc2e08f am: 4f5e3f29fa
am: 3b11623c09 Change-Id: Ia2fd4adf765b6e5864029f216b6adcbba6d01f20
-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().