config_method_tls: Cleanup

Signed-off-by: Simon Rozman <simon@rozman.si>
This commit is contained in:
Simon Rozman 2020-02-06 11:43:05 +01:00
parent 6e97a04bfe
commit d4c01a5345
2 changed files with 0 additions and 32 deletions

View File

@ -109,8 +109,6 @@ namespace eap
///
config_method_tls& operator=(_Inout_ config_method_tls &&other) noexcept;
virtual config* clone() const;
/// \name XML management
/// @{
virtual void save(_In_ IXMLDOMDocument *pDoc, _In_ IXMLDOMNode *pConfigRoot) const;
@ -124,18 +122,6 @@ namespace eap
virtual void operator>>(_Inout_ cursor_in &cursor);
/// @}
///
/// @copydoc eap::config_method::get_method_id()
/// \returns This implementation always returns `winstd::eap_type_t::tls`
///
virtual winstd::eap_type_t get_method_id() const;
///
/// @copydoc eap::config_method::get_method_str()
/// \returns This implementation always returns `L"EAP-TLS"`
///
virtual const wchar_t* get_method_str() const;
///
/// @copydoc eap::config_method::make_credentials()
/// \returns This implementation always returns `eap::credentials_tls` type of credentials

View File

@ -112,12 +112,6 @@ eap::config_method_tls& eap::config_method_tls::operator=(_Inout_ config_method_
}
eap::config* eap::config_method_tls::clone() const
{
return new config_method_tls(*this);
}
void eap::config_method_tls::save(_In_ IXMLDOMDocument *pDoc, _In_ IXMLDOMNode *pConfigRoot) const
{
assert(pDoc);
@ -254,18 +248,6 @@ void eap::config_method_tls::operator>>(_Inout_ cursor_in &cursor)
}
eap_type_t eap::config_method_tls::get_method_id() const
{
return eap_type_t::tls;
}
const wchar_t* eap::config_method_tls::get_method_str() const
{
return L"EAP-TLS";
}
eap::credentials* eap::config_method_tls::make_credentials() const
{
return new credentials_tls(m_module);