peer_base eliminated

This commit is contained in:
2016-08-05 13:40:54 +02:00
parent a60458cdab
commit 91dcc0bbbc
6 changed files with 48 additions and 33 deletions

View File

@@ -43,6 +43,11 @@ namespace eap
///
peer_ttls();
///
/// Makes a new method config
///
virtual config_method* make_config_method();
///
/// Initializes an EAP peer method for EAPHost.
///

View File

@@ -33,6 +33,12 @@ eap::peer_ttls::peer_ttls() : peer<config_method_ttls, credentials_ttls, bool, b
}
eap::config_method* eap::peer_ttls::make_config_method()
{
return new config_method_ttls(this);
}
bool eap::peer_ttls::initialize(_Out_ EAP_ERROR **ppEapError)
{
UNREFERENCED_PARAMETER(ppEapError);