From 0923e41e1f17298b8e12df7615977b92c4d2bfef Mon Sep 17 00:00:00 2001 From: Kent Sutherland Date: Thu, 27 May 2004 00:26:42 +0000 Subject: [PATCH] Upped the timeout a bit, was getting a few too many dropped connections because of lag. --- NetworkController.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/NetworkController.m b/NetworkController.m index 4204cbb..b191c6d 100755 --- a/NetworkController.m +++ b/NetworkController.m @@ -141,7 +141,7 @@ static NetworkController *sharedController; clientPort = [[NSSocketPort alloc] initRemoteWithTCPPort:SERVER_PORT host:host]; clientConnection = [[NSConnection connectionWithReceivePort:nil sendPort:clientPort] retain]; - [clientConnection setReplyTimeout:5]; + [clientConnection setReplyTimeout:10]; clientProxy = [[clientConnection rootProxy] retain]; connectedToServer = YES; NS_HANDLER @@ -219,8 +219,8 @@ static NetworkController *sharedController; testPort = [[NSSocketPort alloc] initRemoteWithTCPPort:SERVER_PORT host:host]; testConnection = [[NSConnection connectionWithReceivePort:nil sendPort:testPort] retain]; - [testConnection setReplyTimeout:2]; - [testConnection setRequestTimeout:2]; + [testConnection setReplyTimeout:5]; + [testConnection setRequestTimeout:5]; tempProxy = (NetworkObject *)[testConnection rootProxy]; [tempProxy serverName]; valid = [tempProxy isValid]; -- 2.20.1