mirror of
https://github.com/php/php-src.git
synced 2024-12-01 05:43:38 +08:00
SSLV2 patch cleanup
This commit is contained in:
parent
6336b28019
commit
380c3e5127
@ -1111,7 +1111,9 @@ PHP_MINIT_FUNCTION(openssl)
|
||||
|
||||
php_stream_xport_register("ssl", php_openssl_ssl_socket_factory TSRMLS_CC);
|
||||
php_stream_xport_register("sslv3", php_openssl_ssl_socket_factory TSRMLS_CC);
|
||||
#ifndef OPENSSL_NO_SSL2
|
||||
php_stream_xport_register("sslv2", php_openssl_ssl_socket_factory TSRMLS_CC);
|
||||
#endif
|
||||
php_stream_xport_register("tls", php_openssl_ssl_socket_factory TSRMLS_CC);
|
||||
|
||||
/* override the default tcp socket provider */
|
||||
@ -1146,7 +1148,9 @@ PHP_MSHUTDOWN_FUNCTION(openssl)
|
||||
php_unregister_url_stream_wrapper("ftps" TSRMLS_CC);
|
||||
|
||||
php_stream_xport_unregister("ssl" TSRMLS_CC);
|
||||
#ifndef OPENSSL_NO_SSL2
|
||||
php_stream_xport_unregister("sslv2" TSRMLS_CC);
|
||||
#endif
|
||||
php_stream_xport_unregister("sslv3" TSRMLS_CC);
|
||||
php_stream_xport_unregister("tls" TSRMLS_CC);
|
||||
|
||||
|
@ -330,8 +330,8 @@ static inline int php_openssl_setup_crypto(php_stream *stream,
|
||||
break;
|
||||
case STREAM_CRYPTO_METHOD_SSLv2_CLIENT:
|
||||
#ifdef OPENSSL_NO_SSL2
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "SSLv2 support is not compiled in openSSL");
|
||||
return -1;
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "SSLv2 support is not compiled into the openSSL library PHP is linked against");
|
||||
return -1;
|
||||
#else
|
||||
sslsock->is_client = 1;
|
||||
method = SSLv2_client_method();
|
||||
@ -355,8 +355,8 @@ static inline int php_openssl_setup_crypto(php_stream *stream,
|
||||
break;
|
||||
case STREAM_CRYPTO_METHOD_SSLv2_SERVER:
|
||||
#ifdef OPENSSL_NO_SSL2
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "SSLv2 support is not compiled in openSSL");
|
||||
return -1;
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "SSLv2 support is not compiled into the openSSL library PHP is linked against");
|
||||
return -1;
|
||||
#else
|
||||
sslsock->is_client = 0;
|
||||
method = SSLv2_server_method();
|
||||
@ -922,8 +922,13 @@ php_stream *php_openssl_ssl_socket_factory(const char *proto, long protolen,
|
||||
sslsock->enable_on_connect = 1;
|
||||
sslsock->method = STREAM_CRYPTO_METHOD_SSLv23_CLIENT;
|
||||
} else if (strncmp(proto, "sslv2", protolen) == 0) {
|
||||
#ifdef OPENSSL_NO_SSL2
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "SSLv2 support is not compiled into the openSSL library PHP is linked against");
|
||||
return NULL;
|
||||
#else
|
||||
sslsock->enable_on_connect = 1;
|
||||
sslsock->method = STREAM_CRYPTO_METHOD_SSLv2_CLIENT;
|
||||
#endif
|
||||
} else if (strncmp(proto, "sslv3", protolen) == 0) {
|
||||
sslsock->enable_on_connect = 1;
|
||||
sslsock->method = STREAM_CRYPTO_METHOD_SSLv3_CLIENT;
|
||||
|
Loading…
Reference in New Issue
Block a user