diff options
author | Kamil Dudka <kdudka@redhat.com> | 2013-03-05 17:51:01 +0100 |
---|---|---|
committer | Kamil Dudka <kdudka@redhat.com> | 2013-03-06 13:34:10 +0100 |
commit | 9d0af3018c5db25f5adda216dbcad6056b4a3107 (patch) | |
tree | c6184738103d98a1a0f2cbde12341a5548df0310 /lib/nss.c | |
parent | fa9748df111fd557977eecbe17a43d1344550206 (diff) | |
download | curl-9d0af3018c5db25f5adda216dbcad6056b4a3107.tar.gz |
nss: fix misplaced code enabling non-blocking socket mode
The option needs to be set on the SSL socket. Setting it on the model
takes no effect. Note that the non-blocking mode is still not enabled
for the handshake because the code is not yet ready for that.
Diffstat (limited to 'lib/nss.c')
-rw-r--r-- | lib/nss.c | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -1237,12 +1237,6 @@ CURLcode Curl_nss_connect(struct connectdata *conn, int sockindex) goto error; model = SSL_ImportFD(NULL, model); - /* make the socket nonblocking */ - sock_opt.option = PR_SockOpt_Nonblocking; - sock_opt.value.non_blocking = PR_TRUE; - if(PR_SetSocketOption(model, &sock_opt) != PR_SUCCESS) - goto error; - if(SSL_OptionSet(model, SSL_SECURITY, PR_TRUE) != SECSuccess) goto error; if(SSL_OptionSet(model, SSL_HANDSHAKE_AS_SERVER, PR_FALSE) != SECSuccess) @@ -1415,6 +1409,12 @@ CURLcode Curl_nss_connect(struct connectdata *conn, int sockindex) goto error; } + /* switch the SSL socket into non-blocking mode */ + sock_opt.option = PR_SockOpt_Nonblocking; + sock_opt.value.non_blocking = PR_TRUE; + if(PR_SetSocketOption(connssl->handle, &sock_opt) != PR_SUCCESS) + goto error; + connssl->state = ssl_connection_complete; conn->recv[sockindex] = nss_recv; conn->send[sockindex] = nss_send; |