Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
8b64a2f1
Commit
8b64a2f1
authored
Apr 19, 2012
by
Jacek Caban
Committed by
Alexandre Julliard
Apr 19, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winhttp: Use SSL_pending in netconn_query_data_available.
parent
9a82f6a8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
net.c
dlls/winhttp/net.c
+3
-1
No files found.
dlls/winhttp/net.c
View file @
8b64a2f1
...
...
@@ -116,6 +116,7 @@ MAKE_FUNCPTR( SSL_connect );
MAKE_FUNCPTR
(
SSL_shutdown
);
MAKE_FUNCPTR
(
SSL_write
);
MAKE_FUNCPTR
(
SSL_read
);
MAKE_FUNCPTR
(
SSL_pending
);
MAKE_FUNCPTR
(
SSL_get_error
);
MAKE_FUNCPTR
(
SSL_get_ex_new_index
);
MAKE_FUNCPTR
(
SSL_get_ex_data
);
...
...
@@ -459,6 +460,7 @@ BOOL netconn_init( netconn_t *conn, BOOL secure )
LOAD_FUNCPTR
(
SSL_shutdown
);
LOAD_FUNCPTR
(
SSL_write
);
LOAD_FUNCPTR
(
SSL_read
);
LOAD_FUNCPTR
(
SSL_pending
);
LOAD_FUNCPTR
(
SSL_get_error
);
LOAD_FUNCPTR
(
SSL_get_ex_new_index
);
LOAD_FUNCPTR
(
SSL_get_ex_data
);
...
...
@@ -834,7 +836,7 @@ BOOL netconn_query_data_available( netconn_t *conn, DWORD *available )
if
(
conn
->
secure
)
{
#ifdef SONAME_LIBSSL
if
(
conn
->
peek_msg
)
*
available
=
conn
->
peek_len
;
*
available
=
pSSL_pending
(
conn
->
ssl_conn
)
+
conn
->
peek_len
;
#endif
return
TRUE
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment