From fa7686db3b02612d0c88859027bf07d6382fd738 Mon Sep 17 00:00:00 2001 From: Torben Wilson Date: Tue, 19 Sep 2000 19:33:43 +0000 Subject: [PATCH] Moved socket_get_status() to network.xml. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@32857 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/network.xml | 56 +++++++++++++++++++++++++++++++++++++++++++ functions/sockets.xml | 56 ------------------------------------------- 2 files changed, 56 insertions(+), 56 deletions(-) diff --git a/functions/network.xml b/functions/network.xml index d313a809f7..61a48c6fb9 100644 --- a/functions/network.xml +++ b/functions/network.xml @@ -730,6 +730,62 @@ echo $out; + + + socket_get_status + + Returns information about existing socket resource + + + + Description + + + array socket_get_status + resource + socket_get_status + + + + + Returns information about an existing socket resource. Currently + returns four entries in the result array: + + + + + timed_out (bool) - The socket timed out + waiting for data + + + + + blocked (bool) - The socket was blocked + + + + + eof (bool) - Indicates EOF event + + + + + unread_bytes (int) - Number of bytes + left in the socket buffer + + + + + See also + accept_connect, + bind, + connect, + listen, and + strerror. + + + + socket_set_blocking diff --git a/functions/sockets.xml b/functions/sockets.xml index 12c456086d..1b2c9278aa 100644 --- a/functions/sockets.xml +++ b/functions/sockets.xml @@ -455,62 +455,6 @@ echo "OK.\n\n"; - - - socket_get_status - - Returns information about existing socket resource - - - - Description - - - array socket_get_status - resource - socket_get_status - - - - - Returns information about existing socket resource. Currently - returns 4 entries in the result array: - - - - - timed_out (bool) - The socket timed out - waiting for data - - - - - blocked (bool) - The socket was blocked - - - - - eof (bool) - Indicates EOF event - - - - - unread_bytes (int) - Number of bytes - left in the socket buffer - - - - - See also - accept_connect, - bind, - connect, - listen, and - strerror. - - - - strerror