- added another error code check for windows based master servers

This commit is contained in:
Mark Vejvoda 2010-09-28 01:02:52 +00:00
parent 0e084cabd3
commit d326e00539
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@
for ( ; !@socket_connect( $socket, $remote_ip, $service_port ); )
{
$socket_last_error = socket_last_error( $socket );
if ( $socket_last_error == 115 || $socket_last_error == 114 || $socket_last_error == 10035)
if ( $socket_last_error == 115 || $socket_last_error == 114 || $socket_last_error == 10035 || $socket_last_error == 10037)
{
if ( ( time() - $time ) >= $timeout )
{