m_module is now a pointer instead of reference
This commit is contained in:
@@ -46,9 +46,9 @@ namespace eap {
|
||||
///
|
||||
/// Constructs configuration
|
||||
///
|
||||
/// \param[in] mod Reference of the EAP module to use for global services
|
||||
/// \param[in] mod EAP module to use for global services
|
||||
///
|
||||
config_method_ttls(_In_ module &mod);
|
||||
config_method_ttls(_In_ module *mod);
|
||||
|
||||
///
|
||||
/// Copies configuration
|
||||
|
@@ -42,9 +42,9 @@ namespace eap
|
||||
///
|
||||
/// Constructs credentials
|
||||
///
|
||||
/// \param[in] mod Reference of the EAP module to use for global services
|
||||
/// \param[in] mod EAP module to use for global services
|
||||
///
|
||||
credentials_ttls(_In_ module &mod);
|
||||
credentials_ttls(_In_ module *mod);
|
||||
|
||||
///
|
||||
/// Copies credentials
|
||||
|
@@ -55,9 +55,9 @@ namespace eap
|
||||
///
|
||||
/// Constructor
|
||||
///
|
||||
/// \param[in] mod Reference of the EAP module to use for global services
|
||||
/// \param[in] mod EAP module to use for global services
|
||||
///
|
||||
session_ttls(_In_ module &mod);
|
||||
session_ttls(_In_ module *mod);
|
||||
|
||||
///
|
||||
/// Copies TTLS session
|
||||
|
Reference in New Issue
Block a user