vrana Thu Aug 16 13:08:29 2007 UTC
Modified files:
/phpdoc/en/reference/sockets constants.xml
/phpdoc/en/reference/sockets/functions socket-send.xml
Log:
Use MSG_* constants (bug #42084)
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/sockets/constants.xml?r1=1.4&r2=1.5&diff_format=u
Index: phpdoc/en/reference/sockets/constants.xml
diff -u phpdoc/en/reference/sockets/constants.xml:1.4
phpdoc/en/reference/sockets/constants.xml:1.5
--- phpdoc/en/reference/sockets/constants.xml:1.4 Wed Jun 20 22:25:25 2007
+++ phpdoc/en/reference/sockets/constants.xml Thu Aug 16 13:08:29 2007
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.4 $ -->
+<!-- $Revision: 1.5 $ -->
<section xml:id="sockets.constants" xmlns="http://docbook.org/ns/docbook">
&reftitle.constants;
&extension.constants;
@@ -138,6 +138,28 @@
</varlistentry>
<varlistentry>
<term>
+ <constant>MSG_EOR</constant>
+ (<type>integer</type>)
+ </term>
+ <listitem>
+ <simpara>
+
+ </simpara>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>
+ <constant>MSG_EOF</constant>
+ (<type>integer</type>)
+ </term>
+ <listitem>
+ <simpara>
+
+ </simpara>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>
<constant>SO_DEBUG</constant>
(<type>integer</type>)
</term>
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/sockets/functions/socket-send.xml?r1=1.8&r2=1.9&diff_format=u
Index: phpdoc/en/reference/sockets/functions/socket-send.xml
diff -u phpdoc/en/reference/sockets/functions/socket-send.xml:1.8
phpdoc/en/reference/sockets/functions/socket-send.xml:1.9
--- phpdoc/en/reference/sockets/functions/socket-send.xml:1.8 Tue Jul 3
19:58:06 2007
+++ phpdoc/en/reference/sockets/functions/socket-send.xml Thu Aug 16
13:08:29 2007
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.8 $ -->
+<!-- $Revision: 1.9 $ -->
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.socket-send">
<refnamediv>
<refname>socket_send</refname>
@@ -63,31 +63,31 @@
<tgroup cols="2">
<tbody>
<row>
- <entry><literal>0x1</literal></entry>
+ <entry><constant>MSG_OOB</constant></entry>
<entry>
Process OOB (out-of-band) data
</entry>
</row>
<row>
- <entry><literal>0x2</literal></entry>
+ <entry><constant>MSG_PEEK</constant></entry>
<entry>
Peek at incoming message
</entry>
</row>
<row>
- <entry><literal>0x4</literal></entry>
+ <entry><constant>MSG_DONTROUTE</constant></entry>
<entry>
Bypass routing, use direct interface
</entry>
</row>
<row>
- <entry><literal>0x8</literal></entry>
+ <entry><constant>MSG_EOR</constant></entry>
<entry>
Data completes record
</entry>
</row>
<row>
- <entry><literal>0x100</literal></entry>
+ <entry><constant>MSG_EOF</constant></entry>
<entry>
Data completes transaction
</entry>