Commit cb1998af authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

wininet: Added NETCON_get_data_available support for schannel-based connections.

parent 7d386bfc
......@@ -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;
......
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