Code

Updated Ammount of read bytes .
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Mon, 21 Jan 2008 11:03:24 +0000 (11:03 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Mon, 21 Jan 2008 11:03:24 +0000 (11:03 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@8516 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-core/include/class_socketClient.inc

index 7f571a31e89f69683fca82566f2a72d90231bef5..517a9a0b26749fecb22171437c407c2b9ee164a0 100644 (file)
@@ -124,7 +124,7 @@ class Socket_Client
 
                        /* Read data if necessary */
                        while($num && get_MicroTimeDiff($start,microtime()) < $this->timeout){
-                               $str.= fread($this->handle, 100);
+                               $str.= fread($this->handle, 1024000);
                                $read = array("0"=>$this->handle);      
                                $num = @stream_select($read,$write,$accept,floor($this->timeout), ceil($this->timeout*100000));
                        }