winhttp: Handle renegotiate requests.

Signed-off-by: Hans Leidekker <hans@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
feature/deterministic
Hans Leidekker 2020-04-07 10:22:05 +02:00 committed by Alexandre Julliard
parent 080dfbee31
commit 034b5e70ce
1 changed files with 4 additions and 0 deletions

View File

@ -484,6 +484,10 @@ static DWORD read_ssl_chunk( struct netconn *conn, void *buf, SIZE_T buf_size, S
case SEC_E_OK:
break;
case SEC_I_RENEGOTIATE:
TRACE("renegotiate\n");
return ERROR_WINHTTP_CLIENT_AUTH_CERT_NEEDED;
case SEC_I_CONTEXT_EXPIRED:
TRACE("context expired\n");
*eof = TRUE;