Fix Speedball restart

Increasing the timeout seems to fix the problem of MC restart at map change.
This commit is contained in:
Euca 2015-04-24 20:46:23 +02:00
parent ebbe9f933d
commit 797b02ee81

View File

@ -16,8 +16,8 @@ class GbxRemote
public static $sent;
private $socket;
private $readTimeout = array('sec' => 5, 'usec' => 0);
private $writeTimeout = array('sec' => 5, 'usec' => 0);
private $readTimeout = array('sec' => 30, 'usec' => 0);
private $writeTimeout = array('sec' => 30, 'usec' => 0);
private $requestHandle;
private $callbacksBuffer = array();
private $multicallBuffer = array();