-fix (C) notices
[oweals/gnunet.git] / src / util / test_connection_timeout.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2009 GNUnet e.V.
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 3, 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., 51 Franklin Street, Fifth Floor,
18      Boston, MA 02110-1301, USA.
19 */
20 /**
21  * @file util/test_connection_timeout.c
22  * @brief tests for connection.c
23  */
24 #include "platform.h"
25 #include "gnunet_util_lib.h"
26
27 #define PORT 12435
28
29 static struct GNUNET_CONNECTION_Handle *csock;
30
31 static struct GNUNET_CONNECTION_Handle *lsock;
32
33 static struct GNUNET_NETWORK_Handle *ls;
34
35 static struct GNUNET_CONFIGURATION_Handle *cfg;
36
37
38 /**
39  * Create and initialize a listen socket for the server.
40  *
41  * @return NULL on error, otherwise the listen socket
42  */
43 static struct GNUNET_NETWORK_Handle *
44 open_listen_socket ()
45 {
46   const static int on = 1;
47   struct sockaddr_in sa;
48   struct GNUNET_NETWORK_Handle *desc;
49
50   memset (&sa, 0, sizeof (sa));
51 #if HAVE_SOCKADDR_IN_SIN_LEN
52   sa.sin_len = sizeof (sa);
53 #endif
54   sa.sin_family = AF_INET;
55   sa.sin_port = htons (PORT);
56   desc = GNUNET_NETWORK_socket_create (AF_INET, SOCK_STREAM, 0);
57   GNUNET_assert (desc != NULL);
58   if (GNUNET_NETWORK_socket_setsockopt
59       (desc, SOL_SOCKET, SO_REUSEADDR, &on, sizeof (on)) != GNUNET_OK)
60     GNUNET_log (GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK, "setsockopt");
61   GNUNET_assert (GNUNET_OK ==
62                  GNUNET_NETWORK_socket_bind (desc, (const struct sockaddr *) &sa,
63                                              sizeof (sa)));
64   GNUNET_NETWORK_socket_listen (desc, 5);
65   return desc;
66 }
67
68
69 static size_t
70 send_kilo (void *cls, size_t size, void *buf)
71 {
72   int *ok = cls;
73
74   if (size == 0)
75   {
76     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got the desired timeout!\n");
77     GNUNET_assert (buf == NULL);
78     *ok = 0;
79     GNUNET_CONNECTION_destroy (lsock);
80     GNUNET_CONNECTION_destroy (csock);
81     return 0;
82   }
83   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Sending kilo to fill buffer.\n");
84   GNUNET_assert (size >= 1024);
85   memset (buf, 42, 1024);
86
87   GNUNET_assert (NULL !=
88                  GNUNET_CONNECTION_notify_transmit_ready (csock, 1024,
89                                                           GNUNET_TIME_UNIT_SECONDS,
90                                                           &send_kilo, cls));
91   return 1024;
92 }
93
94
95 static void
96 task_timeout (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
97 {
98
99   ls = open_listen_socket ();
100   lsock = GNUNET_CONNECTION_create_from_existing (ls);
101   GNUNET_assert (lsock != NULL);
102   csock = GNUNET_CONNECTION_create_from_connect (cfg, "localhost", PORT);
103   GNUNET_assert (csock != NULL);
104   GNUNET_assert (NULL !=
105                  GNUNET_CONNECTION_notify_transmit_ready (csock, 1024,
106                                                           GNUNET_TIME_UNIT_SECONDS,
107                                                           &send_kilo, cls));
108 }
109
110
111 int
112 main (int argc, char *argv[])
113 {
114   int ok;
115
116   GNUNET_log_setup ("test_connection_timeout",
117                     "WARNING",
118                     NULL);
119
120   ok = 1;
121   cfg = GNUNET_CONFIGURATION_create ();
122   GNUNET_CONFIGURATION_set_value_string (cfg, "resolver", "HOSTNAME",
123                                          "localhost");
124   GNUNET_SCHEDULER_run (&task_timeout, &ok);
125   GNUNET_CONFIGURATION_destroy (cfg);
126   return ok;
127 }
128
129 /* end of test_connection_timeout.c */