mirror of
https://github.com/php/php-src.git
synced 2026-04-24 16:38:25 +02:00
Merge branch 'PHP-5.6' into PHP-7.0
Conflicts: ext/standard/ftp_fopen_wrapper.c
This commit is contained in:
@@ -12,6 +12,10 @@ PHP NEWS
|
||||
- Session:
|
||||
. Fixed bug #72724 (PHP7: session-uploadprogress kills httpd). (Nikita)
|
||||
|
||||
- Streams:
|
||||
. Fixed bug #72764 (ftps:// opendir wrapper data channel encryption fails
|
||||
with IIS FTP 7.5, 8.5). (vhuk)
|
||||
|
||||
|
||||
?? ??? 2016 PHP 7.0.10
|
||||
|
||||
|
||||
@@ -288,6 +288,10 @@ if ($pid) {
|
||||
}
|
||||
|
||||
|
||||
if ((!empty($ssl)) && (!stream_socket_enable_crypto($pasvs, true, STREAM_CRYPTO_METHOD_SSLv23_SERVER))) {
|
||||
die("SSLv23 handshake failed.\n");
|
||||
}
|
||||
|
||||
if (empty($m[1]) || $m[1] !== 'emptydir') {
|
||||
fputs($fs, "file1\r\nfile1\r\nfile\nb0rk\r\n");
|
||||
}
|
||||
@@ -403,10 +407,6 @@ if ($pid) {
|
||||
|
||||
$pasvs = stream_socket_accept($soc,10);
|
||||
|
||||
if ((!empty($ssl)) && (!stream_socket_enable_crypto($pasvs, true, STREAM_CRYPTO_METHOD_SSLv23_SERVER))) {
|
||||
die("SSLv23 handshake failed.\n");
|
||||
}
|
||||
|
||||
}elseif (preg_match('/^EPSV/', $buf, $matches)) {
|
||||
fputs($s, "550 Extended passsive mode not supported.\r\n");
|
||||
} elseif (preg_match('/^SITE EXEC/', $buf, $matches)) {
|
||||
|
||||
@@ -728,18 +728,6 @@ php_stream * php_stream_ftp_opendir(php_stream_wrapper *wrapper, const char *pat
|
||||
goto opendir_errexit;
|
||||
}
|
||||
|
||||
php_stream_context_set(datastream, context);
|
||||
if (use_ssl_on_data && (php_stream_xport_crypto_setup(datastream,
|
||||
STREAM_CRYPTO_METHOD_SSLv23_CLIENT, NULL) < 0 ||
|
||||
php_stream_xport_crypto_enable(datastream, 1) < 0)) {
|
||||
|
||||
php_stream_wrapper_log_error(wrapper, options, "Unable to activate SSL mode");
|
||||
php_stream_close(datastream);
|
||||
datastream = NULL;
|
||||
goto opendir_errexit;
|
||||
}
|
||||
|
||||
|
||||
php_stream_printf(stream, "NLST %s\r\n", (resource->path != NULL ? resource->path : "/"));
|
||||
|
||||
result = GET_FTP_RESULT(stream);
|
||||
@@ -752,6 +740,17 @@ php_stream * php_stream_ftp_opendir(php_stream_wrapper *wrapper, const char *pat
|
||||
goto opendir_errexit;
|
||||
}
|
||||
|
||||
php_stream_context_set(datastream, context);
|
||||
if (use_ssl_on_data && (php_stream_xport_crypto_setup(datastream,
|
||||
STREAM_CRYPTO_METHOD_SSLv23_CLIENT, NULL) < 0 ||
|
||||
php_stream_xport_crypto_enable(datastream, 1) < 0)) {
|
||||
|
||||
php_stream_wrapper_log_error(wrapper, options, "Unable to activate SSL mode");
|
||||
php_stream_close(datastream);
|
||||
datastream = NULL;
|
||||
goto opendir_errexit;
|
||||
}
|
||||
|
||||
php_url_free(resource);
|
||||
|
||||
dirsdata = emalloc(sizeof *dirsdata);
|
||||
|
||||
Reference in New Issue
Block a user