Rename peer_tls to peer_tls_base

peer_tls is actually not a complete EAP-TLS implementation.

Signed-off-by: Simon Rozman <simon@rozman.si>
This commit is contained in:
2020-02-04 14:59:16 +01:00
parent 570eb83558
commit d400901c52
5 changed files with 32 additions and 32 deletions

View File

@@ -32,14 +32,14 @@ using namespace winstd;
// eap::peer_tls_tunnel
//////////////////////////////////////////////////////////////////////
eap::peer_tls_tunnel::peer_tls_tunnel(_In_ eap_type_t eap_method) : peer_tls(eap_method)
eap::peer_tls_tunnel::peer_tls_tunnel(_In_ eap_type_t eap_method) : peer_tls_base(eap_method)
{
}
void eap::peer_tls_tunnel::initialize()
{
peer_tls::initialize();
peer_tls_base::initialize();
#if EAP_INNER_EAPHOST
// Initialize EapHost based inner authentication methods.
@@ -57,7 +57,7 @@ void eap::peer_tls_tunnel::shutdown()
EapHostPeerUninitialize();
#endif
peer_tls::shutdown();
peer_tls_base::shutdown();
}