increase delay before gameserver availability check kicks in (due to client side UPnP configuration delay)

This commit is contained in:
Tom Reynolds 2012-02-02 20:41:00 +00:00
parent 4b2703a771
commit 17856ced2f
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@
}
else // this game server is not listed in the database, yet
{ // check whether this game server is available from the Internet; if it is, add it to the database
sleep(3);
sleep(8); // was 3
$socket = socket_create( AF_INET, SOCK_STREAM, SOL_TCP );
if ( $socket < 0 ) {
echo 'socket_create() failed.' . PHP_EOL . ' Reason: ' . socket_strerror( $socket ) . PHP_EOL;