Home
last modified time | relevance | path

Searched refs:ftp (Results 1 – 25 of 103) sorted by last modified time

12345

/PHP-7.4/
H A DNEWS291 . Fixed bug #80901 (Info leak in ftp extension). (cmb)
354 . Fixed bug #80880 (SSL_read on shutdown, ftp/proc_open). (cmb, Jakub
2592 - ftp:
H A Dphp.ini-development855 ; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
859 ; Whether to allow include/require to open URLs (like http:// or ftp://) as files.
863 ; Define the anonymous ftp password (your email address). PHP's default setting
916 ;extension=ftp
H A Dphp.ini-production855 ; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
859 ; Whether to allow include/require to open URLs (like http:// or ftp://) as files.
863 ; Define the anonymous ftp password (your email address). PHP's default setting
916 ;extension=ftp
/PHP-7.4/azure/macos/
H A Djob.yml60 --enable-ftp \
/PHP-7.4/azure/i386/
H A Djob.yml57 --enable-ftp \
/PHP-7.4/ext/ftp/
H A Dftp.c130 ftp = ecalloc(1, sizeof(*ftp)); in ftp_open()
177 data_close(ftp, ftp->data); in ftp_close()
185 ftp_ssl_shutdown(ftp, ftp->fd, ftp->ssl_handle); in ftp_close()
1058 if (!ftp_getresp(ftp) || (ftp->resp != 226 && ftp->resp != 250 && ftp->resp != 200)) { in ftp_put()
1126 if (!ftp_getresp(ftp) || (ftp->resp != 226 && ftp->resp != 250 && ftp->resp != 200)) { in ftp_append()
1326 memmove(ftp->inbuf, ftp->extra, ftp->extralen); in ftp_readline()
1414 if (ftp->use_ssl && ftp->fd == s && ftp->ssl_active) { in single_send()
1529 if (ftp->use_ssl && ftp->fd == s && ftp->ssl_active) { in my_recv()
2033 if (!ftp_getresp(ftp) || (ftp->resp != 150 && ftp->resp != 125 && ftp->resp != 226)) { in ftp_genlist()
2318 ftp->data = data_close(ftp, ftp->data); in ftp_nb_continue_write()
[all …]
H A Dphp_ftp.c298 PHP_MINIT(ftp),
371 ftpbuf_t *ftp; in PHP_FUNCTION() local
408 ftpbuf_t *ftp; in PHP_FUNCTION() local
444 ftpbuf_t *ftp; in PHP_FUNCTION() local
473 ftpbuf_t *ftp; in PHP_FUNCTION() local
500 ftpbuf_t *ftp; in PHP_FUNCTION() local
526 ftpbuf_t *ftp; in PHP_FUNCTION() local
555 ftpbuf_t *ftp; in PHP_FUNCTION() local
584 ftpbuf_t *ftp; in PHP_FUNCTION() local
606 ftpbuf_t *ftp; in PHP_FUNCTION() local
[all …]
/PHP-7.4/ext/ftp/tests/
H A Dbug79100.phpt12 $ftp = ftp_connect("127.0.0.1", $port);
13 if (!$ftp) die("Couldn't connect to the server");
14 var_dump(ftp_login($ftp, 'user', 'pass'));
15 var_dump(ftp_set_option($ftp, FTP_TIMEOUT_SEC, 1));
16 ftp_systype($ftp);
H A Dserver.inc19 die("could not start/bind the ftp server\n");
305 // there are some servers that don't open the ftp-data socket if there's nothing to send
515 // there are some servers that don't open the ftp-data socket if there's nothing to send
H A Dbug80901.phpt2 Bug #80901 (Info leak in ftp extension)
14 $ftp = ftp_connect("127.0.0.1", $port);
15 if (!$ftp) die("Couldn't connect to the server");
16 var_dump(ftp_login($ftp, 'user', 'pass'));
17 ftp_systype($ftp);
/PHP-7.4/ext/standard/tests/url/
H A Dparse_url_basic_003.phpt74 --> ftp://ftp.gnu.org/gnu/glic/glibc.tar.gz : string(11) "ftp.gnu.org"
H A Dparse_url_basic_005.phpt74 --> ftp://ftp.gnu.org/gnu/glic/glibc.tar.gz : NULL
H A Dparse_url_unterminated.phpt554 --> ftp://ftp.gnu.org/gnu/glic/glibc.tar.gz: array(3) {
556 string(3) "ftp"
558 string(11) "ftp.gnu.org"
H A Dparse_url_basic_001.phpt552 --> ftp://ftp.gnu.org/gnu/glic/glibc.tar.gz: array(3) {
554 string(3) "ftp"
556 string(11) "ftp.gnu.org"
H A Dparse_url_basic_004.phpt74 --> ftp://ftp.gnu.org/gnu/glic/glibc.tar.gz : NULL
H A Dparse_url_basic_006.phpt74 --> ftp://ftp.gnu.org/gnu/glic/glibc.tar.gz : NULL
H A Dparse_url_basic_007.phpt74 --> ftp://ftp.gnu.org/gnu/glic/glibc.tar.gz : string(22) "/gnu/glic/glibc.tar.gz"
H A Durls.inc54 'ftp://ftp.gnu.org/gnu/glic/glibc.tar.gz',
H A Dparse_url_basic_008.phpt74 --> ftp://ftp.gnu.org/gnu/glic/glibc.tar.gz : NULL
H A Dparse_url_basic_009.phpt74 --> ftp://ftp.gnu.org/gnu/glic/glibc.tar.gz : NULL
H A Dparse_url_basic_002.phpt75 --> ftp://ftp.gnu.org/gnu/glic/glibc.tar.gz : string(3) "ftp"
/PHP-7.4/ext/standard/tests/strings/
H A Durl_t.phpt57 'ftp://ftp.gnu.org/gnu/glic/glibc.tar.gz',
621 --> ftp://ftp.gnu.org/gnu/glic/glibc.tar.gz: array(3) {
623 string(3) "ftp"
625 string(11) "ftp.gnu.org"
/PHP-7.4/ext/standard/tests/general_functions/
H A Dgetservbyname_basic.phpt17 …$services = array('http', 'ftp', 'ssh', 'telnet', 'imap', 'smtp', 'nicname', 'gopher', 'finger', '…
/PHP-7.4/travis/
H A Dcompile.sh73 --enable-ftp \
/PHP-7.4/azure/
H A Dmsan_job.yml50 --enable-ftp \

Completed in 47 milliseconds

12345