diff options
author | durner <durner@140774ce-b5e7-0310-ab8b-a85725594a96> | 2009-11-14 18:25:08 +0000 |
---|---|---|
committer | durner <durner@140774ce-b5e7-0310-ab8b-a85725594a96> | 2009-11-14 18:25:08 +0000 |
commit | 1cfb4dcad42d127f7768fb2f46ed48bb578eb5af (patch) | |
tree | 6a23c7b6d6b3ba417617d91e131592c85fb3e612 /src | |
parent | 9a84fe4551e0bceba1172a6f85a2ace33e145e19 (diff) |
increasing timeouts to accommodate higher select() latencies on Windows
git-svn-id: https://gnunet.org/svn/gnunet@9504 140774ce-b5e7-0310-ab8b-a85725594a96
Diffstat (limited to 'src')
-rw-r--r-- | src/util/test_client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/test_client.c b/src/util/test_client.c index 04f002c430..4811e87768 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)); } |