config_providers renamed to config_provider_list to avoid confusion with config_provider

This commit is contained in:
2016-08-06 07:06:48 +02:00
parent 2aa4bce8cc
commit ac606b7a2e
6 changed files with 28 additions and 28 deletions

View File

@@ -47,7 +47,7 @@ namespace eap
///
/// Base class for the list of providers configuration storage
///
class config_providers;
class config_provider_list;
}
///
@@ -484,7 +484,7 @@ namespace eap
};
class config_providers : public config
class config_provider_list : public config
{
public:
///
@@ -492,21 +492,21 @@ namespace eap
///
/// \param[in] mod EAP module to use for global services
///
config_providers(_In_ module &mod);
config_provider_list(_In_ module &mod);
///
/// Copies configuration
///
/// \param[in] other Configuration to copy from
///
config_providers(_In_ const config_providers &other);
config_provider_list(_In_ const config_provider_list &other);
///
/// Moves configuration
///
/// \param[in] other Configuration to move from
///
config_providers(_Inout_ config_providers &&other);
config_provider_list(_Inout_ config_provider_list &&other);
///
/// Copies configuration
@@ -515,7 +515,7 @@ namespace eap
///
/// \returns Reference to this object
///
config_providers& operator=(_In_ const config_providers &other);
config_provider_list& operator=(_In_ const config_provider_list &other);
///
/// Moves configuration
@@ -524,7 +524,7 @@ namespace eap
///
/// \returns Reference to this object
///
config_providers& operator=(_Inout_ config_providers &&other);
config_provider_list& operator=(_Inout_ config_provider_list &&other);
///
/// Clones configuration

View File

@@ -340,7 +340,7 @@ namespace eap
public:
module &m_module; ///< EAP module
config_providers m_cfg; ///< Providers configuration
config_provider_list m_cfg; ///< Providers configuration
credentials_type m_cred; ///< User credentials
interactive_request_type m_intreq; ///< Interactive UI request data
DWORD m_eap_flags; ///< A combination of EAP flags that describe the new EAP authentication session behavior