summaryrefslogtreecommitdiff
path: root/ext/standard/ftp_fopen_wrapper.c
Commit message (Collapse)AuthorAgeFilesLines
* fix loop - size_t is unsigned so can not be negativeStanislav Malyshev2014-11-111-5/+4
|
* Bump yearXinchen Hui2014-01-031-1/+1
|
* Constify streams API and a few other calls down the rabbit hole.Andrey Hristov2013-07-301-9/+12
| | | | | (`char *` to `const char *` for parameters and few return values) In a few places int len moved to size_t len.
* Merge branch 'pull-request/341'Stanislav Malyshev2013-06-101-2/+2
| | | | | * pull-request/341: (23 commits) typofixes
* Happy New YearXinchen Hui2013-01-011-1/+1
|
* - Year++Felipe Pena2012-01-011-1/+1
|
* - Fixed bug #54092 (Segmentation fault when using HTTP proxy with the FTPGustavo André dos Santos Lopes2011-02-271-19/+30
| | | | | | | | | | wrapper). #php_stream->wrapperdata should hold an array zval (like its zval* type #indicates...), it's not a place where the wrapper can drop an arbitrary #pointer. For that, .wrapperthis should be used. #Also, since the ftp dir wrapper defines its own stream type, it's more #appropriate to use .abstract to store the stream instance specific data.
* - Year++Felipe Pena2011-01-011-1/+1
|
* Fixed compiler warningIlia Alshanetsky2010-12-141-1/+1
|
* Fixed bug #48607 (fwrite() doesn't check reply from ftp server before exiting)Ilia Alshanetsky2010-12-131-2/+22
|
* - Fixed bug #53198 (changing INI setting "from" with ini_set did not have anyGustavo André dos Santos Lopes2010-10-291-3/+2
| | | | | | | effect) #Made "from" a proper INI setting and bound it to a global variable. #Previously, it was simply read from the hash table with the parsed ini file #by using cfg_get_string (I wonder why this mechanism still exists...)
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-031-1/+1
|
* - Switching to TSRMLS_FETCH versionFelipe Pena2009-11-161-3/+3
|
* - Fixed bug #49936 (crash with ftp stream in php_stream_context_get_option())Felipe Pena2009-11-151-3/+3
| | | | | (patch by Pierrick)
* removed now obsolete NetWare hack since I fixed thisGuenter Knauf2009-11-031-13/+0
| | | | | with Novell some longer time ago in their SDK header.
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* - MFB: Fixed bug #45449 (filesize() regression using ftp wrapper) (patch by ↵Felipe Pena2008-07-111-0/+7
| | | | crrodriguez at suse dot de)
* Fixed bug #43498 (file_exists() on a proftpd server got SIZE notIlia Alshanetsky2008-01-081-0/+1
| | | | | | allowed in ASCII mode). # Original patch by crrodriguez at suse dot de
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* MFH:- This makes no sense with non-ipv6 builds. (and fixes lot of issues ↵Jani Taskinen2007-12-291-2/+5
| | | | with misconfigured servers)
* MFH: Nuked ending dots from error messagesJani Taskinen2007-09-301-3/+3
|
* MFB52: ws+csJani Taskinen2007-09-271-19/+21
|
* MFH: fix invalid read when opendir over FTP fails (coverity issue #462)Antony Dovgal2007-09-211-1/+4
|
* MFHJani Taskinen2007-08-311-0/+1
|
* MFH: php_gmtime_r() fixesAntony Dovgal2007-06-071-0/+3
|
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* MFH: fix buffer overrunAntony Dovgal2006-03-201-1/+1
|
* bump year and license versionfoobar2006-01-011-3/+3
|
* Fixed command error in ftp:// wrapper.Ilia Alshanetsky2005-11-221-3/+3
| | | | | # Thanks to Stefan Esser for discovering the problem.
* MFH: Fixed bug #34742 (ftp wrapper failures caused from segmented commandIlia Alshanetsky2005-10-111-60/+20
| | | | | transfer).
* - Bumber up yearfoobar2005-08-031-1/+1
|
* Pass context parameter through to xport_createSara Golemon2005-07-151-2/+2
|
* Route ftp:// wrapper via transports layer.\nFix typo in datastream crypto ↵Sara Golemon2005-07-131-4/+12
| | | | startup
* MFB: Fixed memory leak on error in FTP wrapper.Ilia Alshanetsky2005-05-071-17/+25
|
* Check ftp user name for control characters.Ilia Alshanetsky2005-05-061-1/+14
|
* Fixed compiler warnings.Ilia Alshanetsky2005-02-271-1/+1
|
* removed unwanted comments, NEW_LIBC checks and NetWare specific stat ↵Anantha Kesari H Y2004-09-291-9/+14
| | | | structure population
* Fixed bug #29678 (opendir() with ftp:// wrapper segfaults if path does notIlia Alshanetsky2004-08-161-1/+8
| | | | | have trailing slash).
* Oh by the way, only use proxy mode for reading...Sara Golemon2004-07-241-6/+12
|
* Add proxy support to ftp using http wrapperSara Golemon2004-07-241-1/+7
|
* Add MTDM support to ftp_fopen_wrapper::url_stat()Sara Golemon2004-07-211-1/+47
|
* BugFix# 27982: Provide error message when trying to overwrite an existant ↵Sara Golemon2004-05-171-0/+1
| | | | file without overwrite context option.
* FTP dirstream_read should not leave whitespace/newlines on direntsSara Golemon2004-01-281-1/+9
|
* Changed prototypes to allow parsing of string literals and constant stringsArd Biesheuvel2004-01-251-1/+1
| | | | | Minor CS/WS
* - A belated happy holidays and PHP 5Andi Gutmans2004-01-081-2/+2
|
* Route mkdir()/rmdir() via wrapper ops.Sara Golemon2003-12-131-1/+147
| | | | | | Move current rmdir()/rmdir() code to plain_wrappers.c Implement mkdir()/rmdir() in ftp:// wrapper
* Route rename() via wrapper ops.Sara Golemon2003-12-121-1/+85
| | | | | | | Move current rename() code to main/streams/plain_wrapper.c Implement ftp/rename() Implement userstreams/rename()
* Fixed ZTS build.Ilia Alshanetsky2003-12-101-1/+1
|
* Fix bug #26574 (basename() doesn't work properly with multibyte characters)Moriyoshi Koizumi2003-12-101-3/+4
|
* Add in missing stat element and fix win32 buildSara Golemon2003-11-291-2/+6
|