diff options
author | Jakub Zelenka <bukka@php.net> | 2017-03-08 19:38:54 +0000 |
---|---|---|
committer | Jakub Zelenka <bukka@php.net> | 2017-03-14 18:13:57 +0000 |
commit | 411f4b1b6f6f18e64b451711c19ebbc8463e5d19 (patch) | |
tree | e9974248604a777f953f6b0ae405bf1657b68bbf | |
parent | 760ff21bf3999f0ca6bf3dae300a057b2997661d (diff) | |
download | php-git-411f4b1b6f6f18e64b451711c19ebbc8463e5d19.tar.gz |
Fix indent and add comment
-rw-r--r-- | ext/openssl/xp_ssl.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/openssl/xp_ssl.c b/ext/openssl/xp_ssl.c index e1bb51045c..7db219ddec 100644 --- a/ext/openssl/xp_ssl.c +++ b/ext/openssl/xp_ssl.c @@ -1661,7 +1661,7 @@ int php_openssl_setup_crypto(php_stream *stream, } #ifdef SSL_MODE_RELEASE_BUFFERS - SSL_set_mode(sslsock->ssl_handle, SSL_get_mode(sslsock->ssl_handle) | SSL_MODE_RELEASE_BUFFERS); + SSL_set_mode(sslsock->ssl_handle, SSL_get_mode(sslsock->ssl_handle) | SSL_MODE_RELEASE_BUFFERS); #endif if (cparam->inputs.session) { @@ -1801,6 +1801,8 @@ static int php_openssl_enable_crypto(php_stream *stream, if (SUCCESS == php_set_sock_blocking(sslsock->s.socket, 0)) { sslsock->s.is_blocked = 0; + /* The following mode are added only if we are able to change socket + * to non blocking mode which is also used for read and write */ SSL_set_mode( sslsock->ssl_handle, ( |