summaryrefslogtreecommitdiff
path: root/ext/ftp
Commit message (Collapse)AuthorAgeFilesLines
* MFHfoobar2001-05-271-1/+1
|
* MFHStig Bakken2001-05-241-0/+4
|
* - Change macros from V_ to VCWD_ because of AIX name clashAndi Gutmans2001-04-301-4/+4
|
* Run through conv_z_macrosSascha Schumann2000-11-221-32/+32
|
* 2nd step towards auto-creditsHartmut Holzgraefe2000-11-201-0/+2
|
* Fixed ftp_mkdir(). It return the dirname passed to it in case offoobar2000-11-031-2/+5
| | | | | | braindead ftp server which doesn't put the real path into reply. PR: 7216
* Both RETR and STOR have also 250 as possible return valuefoobar2000-10-311-2/+2
|
* Fix the fix.foobar2000-10-311-1/+1
|
* Fixed PR: 6730. And it is mentioned also in RFC 959 to be this way.foobar2000-10-271-1/+1
|
* Fixes PR: 7245foobar2000-10-271-1/+1
|
* Use zend_register_list_destructors_ex() instead.Andrei Zmievski2000-10-251-1/+1
|
* Mega-patch to get better resource information for modules.Andrei Zmievski2000-10-201-2/+3
| | | | | | | | | | | | | * Fixed a bug in zend_rsrc_list_get_rsrc_type() * Switched register_list_destructors() to use zend_register_list_destructors_ex() instead * Updated all relevant modules to provide the resource type name to register_list_destructors() call * Updated var_dump() to output resource type name instead of number @- Made resource type names visible, e.g. var_dump() and @ get_resource_type() display "file" for file resources. (Andrei)
* more cleanup of info codeDaniel Beulshausen2000-10-082-1/+10
|
* - Add FTP extension to default Win32 buildAndi Gutmans2000-10-051-121/+0
|
* - Added ftp_exec to the ftp functions (thanks to <jhennebicq@i-d.net>)Derick Rethans2000-09-134-0/+49
| | | | | | @ Added ftp_exec to the ftp functions (thanks to <jhennebicq@i-d.net>) @ (Derick)
* deleted a few unnecceasary defines and added the Release_TS_Inline path to ↵Daniel Beulshausen2000-08-241-5/+5
| | | | the libpath
* @- Fixed FTP module to accept multiline server replies (Jani)foobar2000-08-101-11/+14
| | | | | # This fixed bug #4546.
* Beautified some protos.Egon Schmid2000-08-081-3/+2
|
* The description for protos need no period.Egon Schmid2000-07-131-7/+7
|
* Change header protection macros to conform to standard.Sascha Schumann2000-07-021-2/+2
| | | | | | | | | Draft 3 of IEEE 1003.1 200x, "2.2 The Compilation Environment" All identifiers that begin with an underscore and either an uppercase letter or another underscore are always reserved for any use by the implementation.
* - Fix a couple of wranings in the FTP code and in parsedate.yZeev Suraski2000-06-172-2/+2
| | | | | | - Be safer with LC_MESSAGES - Align with the latest Zend change in call_user_function_ex()
* making ftp module compile on win32 with new directory structureFrank M. Kromann2000-06-121-4/+4
|
* - Update module project files to include:Andi Gutmans2000-06-101-2/+2
| | | | | | | | | - HAVE_MODULE=1 - ZEND_WIN32 - PHP_WIN32 - COMPILE_DL_MODULE - ZTS=1
* - Nuke COMPILE_DL. Modules that need to be compiled as dll's in WindowsAndi Gutmans2000-06-101-5/+0
| | | | | - need to define both COMPILE_DL_MODULE and HAVE_MODULE=1
* - ARG_COUNT(ht) -> ZEND_NUM_ARGS() mega patchAndi Gutmans2000-06-051-21/+21
|
* Changed the #ifdefs around "errno = ETIMEDOUT;" to include the restAndrew Skalski2000-05-231-3/+3
| | | | | of the statement ["if (n == 0)"]
* - PHP_WIN32 macro should be used with #ifdef/#ifndefAndi Gutmans2000-05-232-8/+8
| | | | | - Always use PHP_WIN32 instead of WIN32/WINNT values
* fixing typeFrank M. Kromann2000-05-231-1/+1
|
* chang #if to #ifdefFrank M. Kromann2000-05-231-1/+1
|
* even better check for netinet/in.hThies C. Arntzen2000-05-231-1/+1
|
* make ftp compile on unix againThies C. Arntzen2000-05-231-1/+1
|
* s/COMPILE_DL/COMPILE_DL_EXTNAME/ for Windows build files.Sascha Schumann2000-05-231-4/+4
|
* making ftp module compile and work on win32Frank M. Kromann2000-05-233-3/+22
|
* applied Luca Montecchiani's win32 fixes (open files in binary modeAndrew Skalski2000-05-222-7/+21
| | | | | | using the "b" fopen flag, and use closesocket rather than close when closing sockets)
* executor_globals is always passed to MINIT functionsSascha Schumann2000-05-071-3/+0
|
* Change reentrancy API to always use the php prefix.Sascha Schumann2000-05-041-1/+1
| | | | | | Check for the declaration of reentrant functions, so that we can use them in non-ZTS mode on all platforms.
* Make ftp buildable as shared moduleSascha Schumann2000-05-023-1/+6
|
* Remove trailing empty linesSascha Schumann2000-05-011-4/+0
|
* Large test commit IVSascha Schumann2000-05-011-0/+1
|
* Large commit test IIISascha Schumann2000-05-011-0/+1
|
* Large test commit IISascha Schumann2000-05-011-0/+2
|
* Improved in-tree shared libraries build systemSascha Schumann2000-05-011-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The following new/revived shared modules are available now: ... MySQL (*) ... PCRE (*) ... Session ... SWF (*) capable of using bundled library or external library All changes: The m4 macro PHP_EXTENSION was revamped. Uses LIB_BUILD now. This effectively means that all extensions have to use dynlib. ext/mysql/config.m4 was revamped. Uses LIB_BUILD for building bundled library. ext/pcre/config.m4 was revamped. Uses LIB_BUILD for building bundled library. ext/ext_skel was changed to reflect that more modules should be compileable as shared module. ext/Makefile.in has been simplified enormously. Dependencies are now stored in the build tree. Empty dependencies are not generated by buildconf anymore. They are now dynamically created during the build process. Implicit rules for .S were removed. The NO_RECURSION feature was removed. "libs.mk" has been added to all cvsignore files in ext.
* Overall UNIX build system improvements:Sascha Schumann2000-04-301-6/+1
| | | | | | | | | * Makefile header is now completely dynamic * Absolute paths in (top_)?(src|build)dir and VPATH (fixes Tru64 support) * VPATH does not contain variables anymore (fixes UnixWare support)
* Moving output modulesFrank M. Kromann2000-04-211-2/+2
|
* A few .dsp fixesZeev Suraski2000-04-201-3/+3
|
* Adding project file for ftp module on Win32Frank M. Kromann2000-04-201-0/+121
|
* - Change PHP_ to V_ (directory & file functions)Andi Gutmans2000-04-151-2/+2
|
* - Hopefully got most of them. We also need a chdir_file function likeAndi Gutmans2000-03-301-2/+2
| | | | | for Apache.
* Welcome PHP_ARG_ENABLE and PHP_ARG_WITH. They are there to replace the commonSascha Schumann2000-03-271-14/+7
| | | | | AC_MSG_CHECKING, AC_ARG_[ENABLE,WITH], AC_MSG_RESULT trio.
* Change extension names in all extensions' zend_module_entry to theirStig Bakken2000-03-061-1/+1
| | | | | directory name.