Maximum packet size parameter is now optional

This commit is contained in:
2016-09-02 10:19:39 +02:00
parent 0a0a28730b
commit 198b9a576e
10 changed files with 21 additions and 30 deletions

View File

@@ -78,7 +78,7 @@ namespace eap
_In_ DWORD dwFlags,
_In_ const EapAttributes *pAttributeArray,
_In_ HANDLE hTokenImpersonateUser,
_In_ DWORD dwMaxSendPacketSize);
_In_opt_ DWORD dwMaxSendPacketSize = MAXDWORD);
///
/// Ends an EAP authentication session for the EAP method.
@@ -147,7 +147,5 @@ namespace eap
} m_version; ///< EAP-TTLS version
std::unique_ptr<method> m_inner; ///< Inner authentication method
unsigned char m_inner_packet_id; ///< Inner packet ID
DWORD m_size_inner_packet_max; ///< Maximum size of inner response packet
};
}