EapPeerGetUIContext()/eap::session::get_ui_context() completed

This commit is contained in:
Simon Rozman 2016-07-20 12:04:11 +02:00
parent 07b4ce988b
commit b7ea2f7a72

View File

@ -287,11 +287,10 @@ namespace eap
_Out_ interactive_request_type &req, _Out_ interactive_request_type &req,
_Out_ EAP_ERROR **ppEapError) _Out_ EAP_ERROR **ppEapError)
{ {
UNREFERENCED_PARAMETER(req); UNREFERENCED_PARAMETER(ppEapError);
assert(ppEapError);
*ppEapError = m_module.make_error(ERROR_NOT_SUPPORTED, _T(__FUNCTION__) _T(" Not supported.")); req = m_intreq;
return false; return true;
} }
@ -365,8 +364,9 @@ namespace eap
/// @} /// @}
public: public:
module &m_module; ///< Reference of the EAP module module &m_module; ///< Reference of the EAP module
config_providers_type m_cfg; ///< Session configuration config_providers_type m_cfg; ///< Session configuration
credentials_type m_cred; ///< User credentials credentials_type m_cred; ///< User credentials
interactive_request_type m_intreq; ///< Interactive UI request data
}; };
} }