diff options
author | Stefan Esser <sesser@php.net> | 2002-07-26 22:00:25 +0000 |
---|---|---|
committer | Stefan Esser <sesser@php.net> | 2002-07-26 22:00:25 +0000 |
commit | 80e9724ccccf48c477cd21c80406335b472c1cb4 (patch) | |
tree | f1a46a521a53d29e5910d63ecec41d1ba2cd6999 /ext/ftp/php_ftp.h | |
parent | 8b853592b156768708274b25e20b11c6c05e05ab (diff) | |
download | php-git-80e9724ccccf48c477cd21c80406335b472c1cb4.tar.gz |
[EXPERIMENTAL] Added functions for asynchronous FTP transfers
Diffstat (limited to 'ext/ftp/php_ftp.h')
-rw-r--r-- | ext/ftp/php_ftp.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ext/ftp/php_ftp.h b/ext/ftp/php_ftp.h index fdbb13b3e9..f22697779c 100644 --- a/ext/ftp/php_ftp.h +++ b/ext/ftp/php_ftp.h @@ -58,6 +58,11 @@ PHP_FUNCTION(ftp_site); PHP_FUNCTION(ftp_close); PHP_FUNCTION(ftp_set_option); PHP_FUNCTION(ftp_get_option); +PHP_FUNCTION(ftp_async_get); +PHP_FUNCTION(ftp_async_fget); +PHP_FUNCTION(ftp_async_put); +PHP_FUNCTION(ftp_async_fput); +PHP_FUNCTION(ftp_async_continue); #define phpext_ftp_ptr php_ftp_module_ptr |