aboutsummaryrefslogtreecommitdiff
path: root/src/util/test_network_timeout_no_connect.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/test_network_timeout_no_connect.c')
-rw-r--r--src/util/test_network_timeout_no_connect.c95
1 files changed, 95 insertions, 0 deletions
diff --git a/src/util/test_network_timeout_no_connect.c b/src/util/test_network_timeout_no_connect.c
new file mode 100644
index 000000000..fd5e82dcd
--- /dev/null
+++ b/src/util/test_network_timeout_no_connect.c
@@ -0,0 +1,95 @@
1/*
2 This file is part of GNUnet.
3 (C) 2009 Christian Grothoff (and other contributing authors)
4
5 GNUnet is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published
7 by the Free Software Foundation; either version 2, or (at your
8 option) any later version.
9
10 GNUnet is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with GNUnet; see the file COPYING. If not, write to the
17 Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA.
19*/
20/**
21 * @file util/test_network_timeout.c
22 * @brief tests for network.c, doing timeout which connect failure
23 */
24#include "platform.h"
25#include "gnunet_common.h"
26#include "gnunet_network_lib.h"
27#include "gnunet_scheduler_lib.h"
28#include "gnunet_time_lib.h"
29
30#define VERBOSE GNUNET_NO
31
32#define PORT 13425
33
34static struct GNUNET_NETWORK_SocketHandle *csock;
35
36static size_t
37handle_timeout (void *cls, size_t size, void *buf)
38{
39 int *ok = cls;
40#if VERBOSE
41 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received timeout signal.\n");
42#endif
43
44 GNUNET_assert (size == 0);
45 GNUNET_assert (buf == NULL);
46 *ok = 0;
47 return 0;
48}
49
50
51static void
52task_timeout (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
53{
54 csock = GNUNET_NETWORK_socket_create_from_connect (tc->sched,
55 "localhost", PORT, 1024);
56 GNUNET_assert (csock != NULL);
57 GNUNET_assert (NULL !=
58 GNUNET_NETWORK_notify_transmit_ready (csock,
59 1024,
60 GNUNET_TIME_UNIT_SECONDS,
61 &handle_timeout, cls));
62}
63
64
65
66/**
67 * Main method, starts scheduler with task_timeout.
68 */
69static int
70check_timeout ()
71{
72 int ok;
73
74 ok = 1;
75 GNUNET_SCHEDULER_run (&task_timeout, &ok);
76 return ok;
77}
78
79int
80main (int argc, char *argv[])
81{
82 int ret = 0;
83
84 GNUNET_log_setup ("test_network_timeout_no_connect",
85#if VERBOSE
86 "DEBUG",
87#else
88 "WARNING",
89#endif
90 NULL);
91 ret += check_timeout ();
92 return ret;
93}
94
95/* end of test_network_timeout_no_connect.c */