From 41269b9313055c8edca3fd58a68fd55ee4c173d6 Mon Sep 17 00:00:00 2001 From: Torben Wilson Date: Wed, 6 Feb 2002 10:06:11 +0000 Subject: [PATCH] Small example fix. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@69607 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/sockets.xml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/functions/sockets.xml b/functions/sockets.xml index 2de9085535..206922e81e 100644 --- a/functions/sockets.xml +++ b/functions/sockets.xml @@ -1,5 +1,5 @@ - + Socket functions Sockets @@ -56,6 +56,10 @@ error_reporting (E_ALL); /* 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;