wininet: Added NETCON_get_data_available support for schannel-based connections.

This commit is contained in:
Jacek Caban 2013-04-03 14:04:11 +02:00 committed by Alexandre Julliard
parent 7d386bfcd8
commit cb1998afd2
1 changed files with 2 additions and 2 deletions

View File

@ -1408,8 +1408,8 @@ BOOL NETCON_query_data_available(netconn_t *connection, DWORD *available)
#ifdef SONAME_LIBSSL
*available = pSSL_pending(connection->ssl_s);
#else
FIXME("not supported on this platform\n");
return FALSE;
*available = connection->peek_len;
return TRUE;
#endif
}
return TRUE;