nicobn Mon Aug 20 03:59:58 2007 UTC
Modified files:
/phpdoc/en/reference/sockets/functions socket-set-option.xml
Log:
Fixed bug #42343
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/sockets/functions/socket-set-option.xml?r1=1.12&r2=1.13&diff_format=u
Index: phpdoc/en/reference/sockets/functions/socket-set-option.xml
diff -u phpdoc/en/reference/sockets/functions/socket-set-option.xml:1.12
phpdoc/en/reference/sockets/functions/socket-set-option.xml:1.13
--- phpdoc/en/reference/sockets/functions/socket-set-option.xml:1.12 Thu Aug
16 19:36:34 2007
+++ phpdoc/en/reference/sockets/functions/socket-set-option.xml Mon Aug 20
03:59:58 2007
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.12 $ -->
+<!-- $Revision: 1.13 $ -->
<refentry xmlns="http://docbook.org/ns/docbook"
xml:id="function.socket-set-option">
<refnamediv>
<refname>socket_set_option</refname>
@@ -87,8 +87,9 @@
<programlisting role="php">
<![CDATA[
<?php
-$socket = socket_create_listen(1223);
+$socket = socket_create(AF_INET, SOCK_STREAM, SOL_TCP);
socket_set_option($socket, SOL_SOCKET, SO_REUSEADDR, 1);
+socket_bind($socket, '127.0.0.1', 1223);
if (socket_get_option($socket, SOL_SOCKET, SO_REUSEADDR) !== 0) {
echo 'SO_REUSEADDR is set on socket !' . PHP_EOL;