summaryrefslogtreecommitdiff
path: root/ext/ftp
Commit message (Collapse)AuthorAgeFilesLines
* - MFH: don't use inet_ntop when not presentPierre Joye2008-07-121-1/+1
|
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-314-4/+4
|
* Improved memory usage by movig constants to read only memory. (Dmitry, Pierre)Dmitry Stogov2007-09-271-1/+1
|
* MFH: php_gmtime_r() fixesAntony Dovgal2007-06-071-0/+3
|
* fix test namesAntony Dovgal2007-05-078-8/+8
|
* Fixed CRLF injection inside ftp_putcmd().Ilia Alshanetsky2007-03-241-0/+6
| | | | | # Reported on BugTraq by loveshell[at]Bug.Center.Team
* TypoMartin Kraemer2007-03-141-1/+1
|
* snprintf() -> slprintf()Ilia Alshanetsky2007-02-271-2/+2
|
* fix typoStanislav Malyshev2007-02-241-1/+1
|
* - Avoid sprintf, even when checked copy'n'paste or changes lead to errorsMarcus Boerger2007-02-241-13/+9
|
* fix testAntony Dovgal2007-02-211-0/+1
|
* Fixed bug #37799 (ftp_ssl_connect() falls back to non-ssl connection)Nuno Lopes2007-02-133-42/+66
|
* MFH: Bump year.Sebastian Bergmann2007-01-014-4/+4
|
* Fix testsHannes Magnusson2006-12-191-1/+1
|
* MFH: fix leaksAntony Dovgal2006-12-031-0/+2
|
* tests + BFNNuno Lopes2006-12-013-0/+98
|
* fix bug #39458: ftp_nlist() returns false on empty dirsNuno Lopes2006-12-011-1/+6
|
* MFH: fix test on FreeBSDAntony Dovgal2006-11-271-1/+1
|
* more testsNuno Lopes2006-11-243-1/+102
|
* fix tests after Tony's commit and add a test for the bug he fixedNuno Lopes2006-11-245-15/+120
|
* fix testAntony Dovgal2006-11-241-2/+2
|
* MFH: fix #39583 (ftp_put() does not change transfer mode to ASCII)Antony Dovgal2006-11-241-1/+1
|
* add tests for 2 old bugsNuno Lopes2006-11-234-2/+76
|
* add two more tests (test bogus parameters and bogus server respsnes)Nuno Lopes2006-11-233-1/+183
|
* new tests. what a crazy idea...Nuno Lopes2006-11-196-0/+330
|
* MFH: argument infosHannes Magnusson2006-06-111-39/+262
|
* fix spelling in error messages:Antony Dovgal2006-04-031-4/+4
| | | | | greater/less thEn -> greater/less thAn
* bump year and license versionfoobar2006-01-014-12/+12
|
* MFH: nuke php3 legacyfoobar2005-12-061-2/+2
|
* Fixed bug #31971 (ftp_login fails on some SSL servers).Ilia Alshanetsky2005-11-051-2/+6
| | | | | Patch by: frantisek at augusztin dot com
* Fixed phpize build (default PHP_OPENSSL to no if not set)Brian France2005-11-011-0/+3
|
* typofixfoobar2005-10-091-2/+2
|
* MFH: - Fixed bug #34796 (missing SSL linking in ext/ftp when configured as ↵foobar2005-10-091-0/+8
| | | | shared).
* MFHfoobar2005-08-181-10/+10
|
* - Bumber up yearfoobar2005-08-034-4/+4
|
* Added bindto socket context option.Ilia Alshanetsky2005-06-141-1/+1
|
* Fixed compiler warning on win32.Ilia Alshanetsky2005-03-171-0/+2
|
* Final set of fixes for bug #27633.Ilia Alshanetsky2005-03-102-20/+9
| | | | | # Many thanks to Edin for helpind analyze and resolve this bug.
* Fixes to ascii downloads on win32.Ilia Alshanetsky2005-03-091-3/+3
|
* Fixed bug #27633 (Double \r\r problem on ftp_get in ASCII mode on Win32).Ilia Alshanetsky2005-02-171-9/+15
|
* Fixed bug #30027 (Possible crash inside ftp_get()).Ilia Alshanetsky2004-10-051-2/+2
| | | | | # Patch by cfield at affinitysolutions dot com
* removed unwanted NEW_LIBC checksAnantha Kesari H Y2004-09-271-5/+1
|
* removed redundant NEW_LIBC checkAnantha Kesari H Y2004-09-271-7/+1
|
* Fix for Bug #24189: possibly unsafe select(2) usage.Wez Furlong2004-09-171-42/+5
| | | | | | | | | | | | | | | | | | | | | | | | | We avoid the problem by using poll(2). On systems without poll(2) (older bsd-ish systems, and win32), we emulate poll(2) using select(2) and check for valid descriptors before attempting to access them via the descriptor sets. If an out-of-range descriptor is detected, an E_WARNING is raised suggesting that PHP should be recompiled with a larger FD_SETSIZE (and also with a suggested value). Most uses of select(2) in the source are to poll a single descriptor, so a couple of handy wrapper functions have been added to make this easier. A configure option --enable-fd-setsize has been added to both the unix and win32 builds; on unix we default to 16384 and on windows we default to 256. Windows FD_SETSIZE imposes a limit on the maximum number of descriptors that can be select()ed at once, whereas the unix FD_SETSIZE limit is based on the highest numbered descriptor; 256 should be plenty for PHP scripts under windows (the default OS setting is 64). The win32 specific parts are untested; will do that now.
* Fixed bug #27809 (ftp_systype returns null on some ftp servers).Ilia Alshanetsky2004-03-311-0/+3
|
* "The Visa to Sibiria" (work in progress)Hartmut Holzgraefe2004-03-231-0/+56
| | | | | | | | | Adding a package.xml to a bundled extension does not only ease the transition to PECL whereever suitable but also allows to build and install an extension as "shared" using the PEAR installer without having to deal with phpize and friends by hand
* Fixed bug #27633 (Incorrect EOL translation by ftp_get() in ASCII mode).Ilia Alshanetsky2004-03-181-10/+32
|
* Don't rely on ANSI tmpfile(), use the streams layer instead, it'll deal with ↵Sara Golemon2004-03-041-14/+7
| | | | platform issues.
* Wordsize fixesArd Biesheuvel2004-02-251-1/+1
|
* Avoid use of memcpy(), reply on struct in_addr to be right sized insteadSara Golemon2004-02-211-4/+3
|