From: Nils Durner Date: Sat, 14 Nov 2009 18:25:08 +0000 (+0000) Subject: increasing timeouts to accommodate higher select() latencies on Windows X-Git-Tag: initial-import-from-subversion-38251~23088 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=62951da9dd10ba44518e23b443f4acb23c64f0d7;p=oweals%2Fgnunet.git increasing timeouts to accommodate higher select() latencies on Windows --- diff --git a/src/util/test_client.c b/src/util/test_client.c index 04f002c43..4811e8776 100644 --- a/src/util/test_client.c +++ b/src/util/test_client.c @@ -151,7 +151,7 @@ task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc) sizeof (sa), 1024, GNUNET_TIME_relative_multiply - (GNUNET_TIME_UNIT_MILLISECONDS, 250), + (GNUNET_TIME_UNIT_MILLISECONDS, 10000), GNUNET_NO); GNUNET_assert (server != NULL); handlers[0].callback_cls = cls; @@ -168,7 +168,7 @@ task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc) &make_msg, NULL)); GNUNET_CLIENT_receive (client, &recv_bounce, cls, GNUNET_TIME_relative_multiply - (GNUNET_TIME_UNIT_MILLISECONDS, 250)); + (GNUNET_TIME_UNIT_MILLISECONDS, 10000)); }