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.