Commit 341fe50c authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

secur32: Add application protocol stubs for macOS.

parent 65c72c93
......@@ -1194,6 +1194,18 @@ void schan_imp_free_certificate_credentials(schan_credentials *c)
{
}
void schan_imp_set_application_protocols(schan_imp_session session, unsigned char *buffer, unsigned int buflen)
{
FIXME("no support for application protocols on this platform\n");
}
SECURITY_STATUS schan_imp_get_application_protocol(schan_imp_session session,
SecPkgContext_ApplicationProtocol *protocol)
{
FIXME("no support for application protocols on this platform\n");
return SEC_E_UNSUPPORTED_FUNCTION;
}
BOOL schan_imp_init(void)
{
TRACE("()\n");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment