From aef065a5736c885ee32879aba8fbe8cde7fae625 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 20 Jul 2018 00:57:28 +0200 Subject: smb_getsock: always wait for write socket too ... the protocol is doing read/write a lot, so it needs to write often even when downloading. A more proper fix could check for eactly when it wants to write and only ask for it then. --- lib/smb.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/lib/smb.c b/lib/smb.c index fad636252..9ab8710ce 100644 --- a/lib/smb.c +++ b/lib/smb.c @@ -941,17 +941,11 @@ static CURLcode smb_disconnect(struct connectdata *conn, bool dead) static int smb_getsock(struct connectdata *conn, curl_socket_t *socks, int numsocks) { - struct smb_conn *smbc = &conn->proto.smbc; - if(!numsocks) return GETSOCK_BLANK; socks[0] = conn->sock[FIRSTSOCKET]; - - if(smbc->send_size || smbc->upload_size) - return GETSOCK_WRITESOCK(0); - - return GETSOCK_READSOCK(0); + return GETSOCK_READSOCK(0) | GETSOCK_WRITESOCK(0); } static CURLcode smb_parse_url_path(struct connectdata *conn) -- cgit v1.2.1