From 0413f524800e8830e2fdb161b61284a039504545 Mon Sep 17 00:00:00 2001 From: Andrew Skalski Date: Mon, 27 Sep 1999 14:07:09 +0000 Subject: Added functions ftp_{pasv,size,mdtm,fget,fput} PASV mode is now supported; file size and last-modified time can now be fetched from servers that support them; files now may be stored to and retrieved from open files, in addition to disk files. --- ext/ftp/php_ftp.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'ext/ftp/php_ftp.h') diff --git a/ext/ftp/php_ftp.h b/ext/ftp/php_ftp.h index 05173d5909..1515b79725 100644 --- a/ext/ftp/php_ftp.h +++ b/ext/ftp/php_ftp.h @@ -59,8 +59,13 @@ PHP_FUNCTION(ftp_rmdir); PHP_FUNCTION(ftp_nlist); PHP_FUNCTION(ftp_rawlist); PHP_FUNCTION(ftp_systype); +PHP_FUNCTION(ftp_pasv); PHP_FUNCTION(ftp_get); +PHP_FUNCTION(ftp_fget); PHP_FUNCTION(ftp_put); +PHP_FUNCTION(ftp_fput); +PHP_FUNCTION(ftp_size); +PHP_FUNCTION(ftp_mdtm); PHP_FUNCTION(ftp_quit); #define phpext_ftp_ptr php3_ftp_module_ptr -- cgit v1.2.1