config_method_tls: Cleanup

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

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);