Date: 08/29/99
- Next message: shad0w <email protected>: "[PHP-DEV] PHP 4.0 Bug #2184: Not so much a bug as an incompatibility"
- Previous message: almir kazazic: "RE: [PHP-DEV] cvs: /CVSROOT cvsusers"
- Next in thread: Rasmus Lerdorf: "Re: [PHP-DEV] cvs: /php3/functions basic_functions.c"
- Reply: Rasmus Lerdorf: "Re: [PHP-DEV] cvs: /php3/functions basic_functions.c"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
eschmid Sun Aug 29 05:10:30 1999 EDT
Modified files:
/php3/functions basic_functions.c
Log:
Connection_* functions seems missing in PHP 4.
Index: php3/functions/basic_functions.c
diff -u php3/functions/basic_functions.c:1.274 php3/functions/basic_functions.c:1.275
--- php3/functions/basic_functions.c:1.274 Mon Jul 12 15:21:25 1999
+++ php3/functions/basic_functions.c Sun Aug 29 05:10:29 1999
@@ -28,7 +28,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: basic_functions.c,v 1.274 1999/07/12 19:21:25 sklar Exp $ */
+/* $Id: basic_functions.c,v 1.275 1999/08/29 09:10:29 eschmid Exp $ */
#ifdef THREAD_SAFE
#include "tls.h"
#endif
@@ -531,8 +531,8 @@
#endif
/* }}} */
-/* {{{ proto int connection_aborted()
- Did we have any write-errors on the output side? */
+/* {{{ proto int connection_aborted(void)
+ Returns true if client disconnected */
void php3_connection_aborted(INTERNAL_FUNCTION_PARAMETERS)
{
TLS_VARS;
@@ -541,8 +541,8 @@
}
/* }}} */
-/* {{{ proto int connection_timeout()
- Did the connection time out? */
+/* {{{ proto int connection_timeout(void)
+ Returns true if script timed out */
void php3_connection_timeout(INTERNAL_FUNCTION_PARAMETERS)
{
TLS_VARS;
@@ -551,8 +551,8 @@
}
/* }}} */
-/* {{{ proto int connection_status()
- Return the connection status bitfield */
+/* {{{ proto int connection_status(void)
+ Returns the connection status bitfield */
void php3_connection_status(INTERNAL_FUNCTION_PARAMETERS)
{
TLS_VARS;
-- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: php-dev-unsubscribe <email protected> For additional commands, e-mail: php-dev-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: shad0w <email protected>: "[PHP-DEV] PHP 4.0 Bug #2184: Not so much a bug as an incompatibility"
- Previous message: almir kazazic: "RE: [PHP-DEV] cvs: /CVSROOT cvsusers"
- Next in thread: Rasmus Lerdorf: "Re: [PHP-DEV] cvs: /php3/functions basic_functions.c"
- Reply: Rasmus Lerdorf: "Re: [PHP-DEV] cvs: /php3/functions basic_functions.c"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

