torben          Wed Feb  6 05:06:12 2002 EDT

  Modified files:              
    /phpdoc/en/functions        sockets.xml 
  Log:
  Small example fix.
  
  
Index: phpdoc/en/functions/sockets.xml
diff -u phpdoc/en/functions/sockets.xml:1.33 phpdoc/en/functions/sockets.xml:1.34
--- phpdoc/en/functions/sockets.xml:1.33        Sun Feb  3 02:10:50 2002
+++ phpdoc/en/functions/sockets.xml     Wed Feb  6 05:06:11 2002
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.33 $ -->
+<!-- $Revision: 1.34 $ -->
  <reference id="ref.sockets">
   <title>Socket functions</title>
   <titleabbrev>Sockets</titleabbrev>
@@ -55,6 +55,10 @@
 
 /* Allow the script to hang around waiting for connections. */
 set_time_limit (0);
+
+/* Turn on implicit output flushing so we see what we're getting
+ * as it comes in. */
+ob_implicit_flush ();
 
 $address = '192.168.1.53';
 $port = 10000;


Reply via email to