From f144ec9c6dbe5c1263b9c2e977cee48cbca76fc0 Mon Sep 17 00:00:00 2001 From: David Croft Date: Tue, 18 Jul 2000 09:09:50 +0000 Subject: [PATCH] Changed deprecated function name set_socket_blocking to socket_set_blocking. I haven't changed the refentry id since I don't know if it'll break anything - is it possible to set it up as an alias? git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@28562 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/network.xml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/functions/network.xml b/functions/network.xml index 1217cd9bcd..a24447ebac 100644 --- a/functions/network.xml +++ b/functions/network.xml @@ -169,7 +169,7 @@ The socket will by default be opened in blocking mode. You can switch it to non-blocking mode by using - Set_socket_blocking. + socket_set_blocking. <function>Fsockopen</function> Example @@ -490,14 +490,14 @@ if (!$fp) { - set_socket_blocking + socket_set_blocking Set blocking/non-blocking mode on a socket Description - int set_socket_blocking + int socket_set_blocking int socket descriptor int mode @@ -511,6 +511,10 @@ if (!$fp) { return right away while in blocking mode it will wait for data to become available on the socket. + + This function was previously called as + set_socket_blocking but this usage is deprecated. +