From 392e6670bc370ef61c9da4b8c69eb28bb14385c9 Mon Sep 17 00:00:00 2001 From: Sara Golemon Date: Thu, 17 Apr 2003 21:44:32 +0000 Subject: [PATCH] Reflect addition of IPv6 functionality git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@123827 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/sockets/configure.xml | 7 ++++++- reference/sockets/constants.xml | 13 ++++++++++++- reference/sockets/functions/socket-create.xml | 9 ++++++++- reference/sockets/reference.xml | 6 ++++-- 4 files changed, 30 insertions(+), 5 deletions(-) diff --git a/reference/sockets/configure.xml b/reference/sockets/configure.xml index e26432c793..3805f9b8a6 100644 --- a/reference/sockets/configure.xml +++ b/reference/sockets/configure.xml @@ -1,5 +1,5 @@ - +
&reftitle.install; @@ -8,6 +8,11 @@ role="configure">--enable-sockets option to configure. + + + IPv6 Support was added with PHP 5.0. + +
+
&reftitle.constants; &extension.constants; @@ -26,6 +26,17 @@ + + + AF_INET6 + (integer) + + + + + + + SOCK_STREAM diff --git a/reference/sockets/functions/socket-create.xml b/reference/sockets/functions/socket-create.xml index 91b0f7c83b..a30b1498f5 100644 --- a/reference/sockets/functions/socket-create.xml +++ b/reference/sockets/functions/socket-create.xml @@ -1,5 +1,5 @@ - + @@ -40,6 +40,13 @@ this protocol family. + + AF_INET6 + + IPv6 Internet based protocols. TCP and UDP are common protocols of + this protocol family. Support added in PHP 5.0. + + AF_UNIX diff --git a/reference/sockets/reference.xml b/reference/sockets/reference.xml index ed80d2ea90..f196b1bbbc 100644 --- a/reference/sockets/reference.xml +++ b/reference/sockets/reference.xml @@ -1,5 +1,5 @@ - + Socket functions Sockets @@ -15,7 +15,9 @@ For a more generic client-side socket interface, see - fsockopen and + stream_socket_client, + stream_socket_server, + fsockopen, and pfsockopen.