diff options
author | Jiri Hruska <jirka@fud.cz> | 2013-09-09 01:05:14 +0200 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2013-09-09 07:40:40 +0100 |
commit | 6d9cddc513cdc4561afe5965ffcc5066c0c8b583 (patch) | |
tree | 2beff9f886850685bbc2552ecdeeb77b506e9adb /lib | |
parent | e20e48cbf2a93c0fba7b0018f37de2cacd4df19f (diff) |
pingpong: Check SSL library buffers for already read data
Otherwise the connection can get stuck during various phases, waiting
for new data on the socket using select() etc., but it will never be
received as the data has already been read into SSL library.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pingpong.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/pingpong.c b/lib/pingpong.c index 7a7657368..3ebeabe53 100644 --- a/lib/pingpong.c +++ b/lib/pingpong.c @@ -33,6 +33,7 @@ #include "pingpong.h" #include "multiif.h" #include "non-ascii.h" +#include "sslgen.h" #define _MPRINTF_REPLACE /* use our functions only */ #include <curl/mprintf.h> @@ -105,6 +106,9 @@ CURLcode Curl_pp_statemach(struct pingpong *pp, bool block) if(Curl_pp_moredata(pp)) /* We are receiving and there is data in the cache so just read it */ rc = 1; + else if(!pp->sendleft && Curl_ssl_data_pending(conn, FIRSTSOCKET)) + /* We are receiving and there is data ready in the SSL library */ + rc = 1; else rc = Curl_socket_ready(pp->sendleft?CURL_SOCKET_BAD:sock, /* reading */ pp->sendleft?sock:CURL_SOCKET_BAD, /* writing */ |