blob: 26384a88b80dc59ad958a19378c81225968127ea [file] [log] [blame]
// Copyright 2018 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SMBPROVIDER_MOUNT_CONFIG_H_
#define SMBPROVIDER_MOUNT_CONFIG_H_
#include <base/macros.h>
namespace smbprovider {
struct MountConfig {
explicit MountConfig(bool enable_ntlm) : enable_ntlm(enable_ntlm) {}
MountConfig(MountConfig&& other) = default;
MountConfig& operator=(MountConfig&& other) = default;
// If true, NTLM will be the fallback authentication protocol. If false, NTLM
// fallback is disabled and only kerberos authentication may be used.
bool enable_ntlm;
DISALLOW_COPY_AND_ASSIGN(MountConfig);
};
} // namespace smbprovider
#endif // SMBPROVIDER_MOUNT_CONFIG_H_