aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/transport/Makefile.am26
-rw-r--r--src/transport/test_plugin_transport_data_http.conf24
-rw-r--r--src/transport/test_plugin_transport_http.c287
-rw-r--r--src/transport/test_transport_api.c11
-rw-r--r--src/transport/test_transport_api_http_peer1.conf122
-rw-r--r--src/transport/test_transport_api_http_peer2.conf123
6 files changed, 590 insertions, 3 deletions
diff --git a/src/transport/Makefile.am b/src/transport/Makefile.am
index 71e6470e3..c7482f4a8 100644
--- a/src/transport/Makefile.am
+++ b/src/transport/Makefile.am
@@ -69,7 +69,8 @@ plugin_LTLIBRARIES = \
69 libgnunet_plugin_transport_tcp.la \ 69 libgnunet_plugin_transport_tcp.la \
70 libgnunet_plugin_transport_udp.la \ 70 libgnunet_plugin_transport_udp.la \
71 libgnunet_plugin_transport_udp_nat.la \ 71 libgnunet_plugin_transport_udp_nat.la \
72 libgnunet_plugin_transport_template.la 72 libgnunet_plugin_transport_template.la
73# libgnunet_plugin_transport_http.la
73# TODO: add http, nat, etc. 74# TODO: add http, nat, etc.
74 75
75libgnunet_plugin_transport_tcp_la_SOURCES = \ 76libgnunet_plugin_transport_tcp_la_SOURCES = \
@@ -109,11 +110,22 @@ libgnunet_plugin_transport_udp_nat_la_LIBADD = \
109libgnunet_plugin_transport_udp_nat_la_LDFLAGS = \ 110libgnunet_plugin_transport_udp_nat_la_LDFLAGS = \
110 $(GN_PLUGIN_LDFLAGS) 111 $(GN_PLUGIN_LDFLAGS)
111 112
113#libgnunet_plugin_transport_http_la_SOURCES = \
114# plugin_transport_http.c
115#libgnunet_plugin_transport_http_la_LIBADD = \
116# $(top_builddir)/src/hello/libgnunethello.la \
117# $(top_builddir)/src/statistics/libgnunetstatistics.la \
118# $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
119# $(top_builddir)/src/util/libgnunetutil.la
120#libgnunet_plugin_transport_http_la_LDFLAGS = \
121# $(GN_PLUGIN_LDFLAGS)
122
112 123
113check_PROGRAMS = \ 124check_PROGRAMS = \
114 test_transport_api_tcp \ 125 test_transport_api_tcp \
115 test_transport_api_udp \ 126 test_transport_api_udp \
116 test_transport_api_udp_nat 127 test_transport_api_udp_nat \
128 test_transport_api_http
117# TODO: add tests for http, nat, etc. 129# TODO: add tests for http, nat, etc.
118 130
119TESTS = $(check_PROGRAMS) 131TESTS = $(check_PROGRAMS)
@@ -135,6 +147,13 @@ test_transport_api_udp_nat_SOURCES = \
135test_transport_api_udp_nat_LDADD = \ 147test_transport_api_udp_nat_LDADD = \
136 $(top_builddir)/src/transport/libgnunettransport.la \ 148 $(top_builddir)/src/transport/libgnunettransport.la \
137 $(top_builddir)/src/util/libgnunetutil.la 149 $(top_builddir)/src/util/libgnunetutil.la
150
151test_transport_api_http_SOURCES = \
152 test_transport_api.c
153test_transport_api_http_LDADD = \
154 $(top_builddir)/src/transport/libgnunettransport.la \
155 $(top_builddir)/src/util/libgnunetutil.la
156
138 157
139EXTRA_DIST = \ 158EXTRA_DIST = \
140 test_transport_api_data.conf \ 159 test_transport_api_data.conf \
@@ -144,4 +163,5 @@ EXTRA_DIST = \
144 test_transport_api_udp_peer2.conf \ 163 test_transport_api_udp_peer2.conf \
145 test_transport_api_udp_nat_peer1.conf \ 164 test_transport_api_udp_nat_peer1.conf \
146 test_transport_api_udp_nat_peer2.conf \ 165 test_transport_api_udp_nat_peer2.conf \
147 test_plugin_transport_data.conf 166 test_plugin_transport_data.conf \
167 test_plugin_transport_data_http.conf
diff --git a/src/transport/test_plugin_transport_data_http.conf b/src/transport/test_plugin_transport_data_http.conf
new file mode 100644
index 000000000..f794c8f87
--- /dev/null
+++ b/src/transport/test_plugin_transport_data_http.conf
@@ -0,0 +1,24 @@
1[PATHS]
2SERVICEHOME = /tmp/test-gnunetd-plugin-transport_http/
3
4[resolver]
5PORT = 2364
6
7[transport]
8PORT = 2365
9PLUGINS = http
10
11[arm]
12PORT = 2366
13
14[statistics]
15PORT = 2367
16
17[transport-udp]
18PORT = 2368
19
20[peerinfo]
21PORT = 2369
22
23[testing]
24WEAKRANDOM = YES
diff --git a/src/transport/test_plugin_transport_http.c b/src/transport/test_plugin_transport_http.c
new file mode 100644
index 000000000..9095e14c5
--- /dev/null
+++ b/src/transport/test_plugin_transport_http.c
@@ -0,0 +1,287 @@
1/*
2 This file is part of GNUnet.
3 (C) 2010 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 transport/test_transport_api.c
22 * @brief testcase for transport_api.c
23 * @author Sailor Siraj
24 * @author Christian Grothoff
25 * @author Nathan Evans
26 */
27
28#include "platform.h"
29#include "gnunet_constants.h"
30#include "gnunet_getopt_lib.h"
31#include "gnunet_hello_lib.h"
32#include "gnunet_os_lib.h"
33#include "gnunet_peerinfo_service.h"
34#include "gnunet_plugin_lib.h"
35#include "gnunet_protocols.h"
36#include "gnunet_program_lib.h"
37#include "gnunet_signatures.h"
38#include "plugin_transport.h"
39#include "transport.h"
40
41#define VERBOSE GNUNET_NO
42
43/**
44 * How long until we give up on transmitting the message?
45 */
46#define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 30)
47
48/**
49 * Our public key.
50 */
51static struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded my_public_key;
52
53/**
54 * Our identity.
55 */
56static struct GNUNET_PeerIdentity my_identity;
57
58/**
59 * Our private key.
60 */
61static struct GNUNET_CRYPTO_RsaPrivateKey *my_private_key;
62
63/**
64 * Our scheduler.
65 */
66struct GNUNET_SCHEDULER_Handle *sched;
67
68/**
69 * Our configuration.
70 */
71const struct GNUNET_CONFIGURATION_Handle *cfg;
72
73/**
74 * Number of neighbours we'd like to have.
75 */
76static uint32_t max_connect_per_transport;
77
78/**
79 * Environment for this plugin.
80 */
81struct GNUNET_TRANSPORT_PluginEnvironment env;
82
83/**
84 *handle for the api provided by this plugin
85 */
86struct GNUNET_TRANSPORT_PluginFunctions *api;
87
88/**
89 * Did the test pass or fail?
90 */
91static int ok;
92
93/**
94 * Initialize Environment for this plugin
95 */
96static void
97receive (void *cls,
98 const struct GNUNET_PeerIdentity * peer,
99 const struct GNUNET_MessageHeader * message,
100 uint32_t distance,
101 const char *sender_address,
102 size_t sender_address_len)
103{
104 /* do nothing */
105}
106
107void
108notify_address (void *cls,
109 const char *name,
110 const void *addr,
111 size_t addrlen, struct GNUNET_TIME_Relative expires)
112{
113}
114
115/**
116 * Function called when the service shuts
117 * down. Unloads our plugins.
118 *
119 * @param cls closure
120 * @param cfg configuration to use
121 */
122static void
123unload_plugins (void *cls, const struct GNUNET_CONFIGURATION_Handle *cfg)
124{
125 GNUNET_assert (NULL ==
126 GNUNET_PLUGIN_unload ("libgnunet_plugin_transport_udp",
127 api));
128 if (my_private_key != NULL)
129 GNUNET_CRYPTO_rsa_key_free (my_private_key);
130
131 ok = 0;
132}
133
134/**
135 * Simple example test that invokes
136 * the check_address function of the plugin.
137 */
138/* FIXME: won't work on IPv6 enabled systems where IPv4 mapping
139 * isn't enabled (eg. FreeBSD > 4)
140 */
141static void
142test_validation ()
143{
144 struct sockaddr_in soaddr;
145
146 memset (&soaddr, 0, sizeof (soaddr));
147#if HAVE_SOCKADDR_IN_SIN_LEN
148 soaddr.sin_len = sizeof (soaddr);
149#endif
150 soaddr.sin_family = AF_INET;
151 soaddr.sin_port = htons (2368 /* FIXME: get from config! */ );
152 soaddr.sin_addr.s_addr = htonl (INADDR_LOOPBACK);
153
154 api->check_address(api->cls,
155 &soaddr, sizeof (soaddr));
156
157 unload_plugins(env.cls, env.cfg);
158}
159
160
161static void
162setup_plugin_environment ()
163{
164 env.cfg = cfg;
165 env.sched = sched;
166 env.my_identity = &my_identity;
167 env.cls = &env;
168 env.receive = &receive;
169 env.notify_address = &notify_address;
170 env.max_connections = max_connect_per_transport;
171}
172
173/**
174 * Runs the test.
175 *
176 * @param cls closure
177 * @param s scheduler to use
178 * @param c configuration to use
179 */
180static void
181run (void *cls,
182 struct GNUNET_SCHEDULER_Handle *s,
183 char *const *args,
184 const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *c)
185{
186 unsigned long long tneigh;
187 char *keyfile;
188 char *libname;
189
190 sched = s;
191 cfg = c;
192 /* parse configuration */
193 if ((GNUNET_OK !=
194 GNUNET_CONFIGURATION_get_value_number (c,
195 "TRANSPORT",
196 "NEIGHBOUR_LIMIT",
197 &tneigh)) ||
198 (GNUNET_OK !=
199 GNUNET_CONFIGURATION_get_value_filename (c,
200 "GNUNETD",
201 "HOSTKEY", &keyfile)))
202 {
203 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
204 _
205 ("Transport service is lacking key configuration settings. Exiting.\n"));
206 GNUNET_SCHEDULER_shutdown (s);
207 return;
208 }
209 max_connect_per_transport = (uint32_t) tneigh;
210 my_private_key = GNUNET_CRYPTO_rsa_key_create_from_file (keyfile);
211 GNUNET_free (keyfile);
212 if (my_private_key == NULL)
213 {
214 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
215 _
216 ("Transport service could not access hostkey. Exiting.\n"));
217 GNUNET_SCHEDULER_shutdown (s);
218 return;
219 }
220 GNUNET_CRYPTO_rsa_key_get_public (my_private_key, &my_public_key);
221 GNUNET_CRYPTO_hash (&my_public_key,
222 sizeof (my_public_key), &my_identity.hashPubKey);
223
224 /* load plugins... */
225 setup_plugin_environment ();
226 GNUNET_log (GNUNET_ERROR_TYPE_INFO, _("Loading udp transport plugin\n"));
227 GNUNET_asprintf (&libname, "libgnunet_plugin_transport_udp");
228
229 api = GNUNET_PLUGIN_load (libname, &env);
230 GNUNET_free (libname);
231 if (api == NULL)
232 {
233 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
234 _("Failed to load transport plugin for udp\n"));
235 /* FIXME: set some error code for main */
236 return;
237 }
238 test_validation ();
239}
240
241
242/**
243 * The main function for the transport service.
244 *
245 * @param argc number of arguments from the command line
246 * @param argv command line arguments
247 * @return 0 ok, 1 on error
248 */
249int
250main (int argc, char *const *argv)
251{
252 static struct GNUNET_GETOPT_CommandLineOption options[] = {
253 GNUNET_GETOPT_OPTION_END
254 };
255 int ret;
256 char *const argv_prog[] = {
257 "test_plugin_transport",
258 "-c",
259 "test_plugin_transport_data_udp.conf",
260 "-L",
261#if VERBOSE
262 "DEBUG",
263#else
264 "WARNING",
265#endif
266 NULL
267 };
268 GNUNET_log_setup ("test-plugin-transport",
269#if VERBOSE
270 "DEBUG",
271#else
272 "WARNING",
273#endif
274 NULL);
275 ok = 1; /* set to fail */
276 ret = (GNUNET_OK ==
277 GNUNET_PROGRAM_run (5,
278 argv_prog,
279 "test-plugin-transport",
280 "testcase", options, &run, NULL)) ? ok : 1;
281 GNUNET_DISK_directory_remove ("/tmp/test-gnunetd-plugin-transport");
282 /* FIXME: return correct value */
283 /* return ret; */
284 return GNUNET_NO;
285}
286
287/* end of test_plugin_transport_udp.c */
diff --git a/src/transport/test_transport_api.c b/src/transport/test_transport_api.c
index e159b054e..768e514a1 100644
--- a/src/transport/test_transport_api.c
+++ b/src/transport/test_transport_api.c
@@ -73,6 +73,8 @@ static int is_udp;
73 73
74static int is_udp_nat; 74static int is_udp_nat;
75 75
76static int is_http;
77
76GNUNET_SCHEDULER_TaskIdentifier die_task; 78GNUNET_SCHEDULER_TaskIdentifier die_task;
77 79
78#if VERBOSE 80#if VERBOSE
@@ -296,6 +298,11 @@ run (void *cls,
296 setup_peer (&p1, "test_transport_api_udp_nat_peer1.conf"); 298 setup_peer (&p1, "test_transport_api_udp_nat_peer1.conf");
297 setup_peer (&p2, "test_transport_api_udp_nat_peer2.conf"); 299 setup_peer (&p2, "test_transport_api_udp_nat_peer2.conf");
298 } 300 }
301 if (is_http)
302 {
303 setup_peer (&p1, "test_transport_api_http_peer1.conf");
304 setup_peer (&p2, "test_transport_api_http_peer2.conf");
305 }
299 306
300 GNUNET_assert(p1.th != NULL); 307 GNUNET_assert(p1.th != NULL);
301 GNUNET_assert(p2.th != NULL); 308 GNUNET_assert(p2.th != NULL);
@@ -420,6 +427,10 @@ main (int argc, char *argv[])
420 { 427 {
421 is_udp = GNUNET_YES; 428 is_udp = GNUNET_YES;
422 } 429 }
430 else if (strstr(argv[0], "http") != NULL)
431 {
432 is_http = GNUNET_YES;
433 }
423 434
424 435
425 GNUNET_log_setup ("test-transport-api", 436 GNUNET_log_setup ("test-transport-api",
diff --git a/src/transport/test_transport_api_http_peer1.conf b/src/transport/test_transport_api_http_peer1.conf
new file mode 100644
index 000000000..b0f491187
--- /dev/null
+++ b/src/transport/test_transport_api_http_peer1.conf
@@ -0,0 +1,122 @@
1[transport-http]
2PORT = 12368
3
4[fs]
5ALLOW_SHUTDOWN = YES
6ACCEPT_FROM6 = ::1;
7ACCEPT_FROM = 127.0.0.1;
8BINARY = gnunet-service-fs
9CONFIG = $DEFAULTCONFIG
10HOME = $SERVICEHOME
11HOSTNAME = localhost
12PORT = 2094
13INDEXDB = $SERVICEHOME/idxinfo.lst
14
15[datastore-sqlite]
16FILENAME = $SERVICEHOME/datastore/sqlite.db
17
18[datastore]
19DATABASE = sqlite
20BLOOMFILTER = $SERVICEHOME/fs/bloomfilter
21QUOTA = 100000000
22ALLOW_SHUTDOWN = YES
23ACCEPT_FROM6 = ::1;
24ACCEPT_FROM = 127.0.0.1;
25BINARY = gnunet-service-datastore
26CONFIG = $DEFAULTCONFIG
27HOME = $SERVICEHOME
28HOSTNAME = localhost
29PORT = 2093
30
31[hostlist]
32HTTP-PROXY =
33SERVERS = http://gnunet.org:8080/
34OPTIONS = -b
35BINARY = gnunet-daemon-hostlist
36CONFIG = $DEFAULTCONFIG
37HOME = $SERVICEHOME
38HOSTNAME = localhost
39HTTPPORT = 8080
40
41[topology]
42BINARY = gnunet-daemon-topology
43CONFIG = $DEFAULTCONFIG
44FRIENDS = $SERVICEHOME/friends
45TARGET-CONNECTION-COUNT = 16
46AUTOCONNECT = YES
47FRIENDS-ONLY = NO
48MINIMUM-FRIENDS = 0
49
50[transport]
51PLUGINS = http
52#DEBUG = YES
53#PREFIX = xterm -T transport2 -e gdb --command=cmd --args
54#PREFIX = valgrind --leak-check=full
55ALLOW_SHUTDOWN = YES
56ACCEPT_FROM6 = ::1;
57ACCEPT_FROM = 127.0.0.1;
58NEIGHBOUR_LIMIT = 50
59BINARY = gnunet-service-transport
60CONFIG = $DEFAULTCONFIG
61HOME = $SERVICEHOME
62HOSTNAME = localhost
63PORT = 12365
64
65[peerinfo]
66TRUST = $SERVICEHOME/data/credit/
67HOSTS = $SERVICEHOME/data/hosts/
68ALLOW_SHUTDOWN = YES
69ACCEPT_FROM6 = ::1;
70ACCEPT_FROM = 127.0.0.1;
71BINARY = gnunet-service-peerinfo
72CONFIG = $DEFAULTCONFIG
73HOME = $SERVICEHOME
74HOSTNAME = localhost
75PORT = 12369
76
77[resolver]
78ALLOW_SHUTDOWN = YES
79ACCEPT_FROM6 = ::1;
80ACCEPT_FROM = 127.0.0.1;
81BINARY = gnunet-service-resolver
82CONFIG = $DEFAULTCONFIG
83HOME = $SERVICEHOME
84HOSTNAME = localhost
85PORT = 12364
86
87[statistics]
88ALLOW_SHUTDOWN = YES
89ACCEPT_FROM6 = ::1;
90ACCEPT_FROM = 127.0.0.1;
91BINARY = gnunet-service-statistics
92CONFIG = $DEFAULTCONFIG
93HOME = $SERVICEHOME
94HOSTNAME = localhost
95PORT = 12367
96
97[arm]
98DEFAULTSERVICES =
99ALLOW_SHUTDOWN = YES
100ACCEPT_FROM6 = ::1;
101ACCEPT_FROM = 127.0.0.1;
102BINARY = gnunet-service-arm
103CONFIG = $DEFAULTCONFIG
104HOME = $SERVICEHOME
105HOSTNAME = localhost
106PORT = 12366
107
108[transport-tcp]
109ALLOW_SHUTDOWN = NO
110TIMEOUT = 300000
111PORT = 12368
112
113[TESTING]
114WEAKRANDOM = YES
115
116[gnunetd]
117HOSTKEY = $SERVICEHOME/.hostkey
118
119[PATHS]
120DEFAULTCONFIG = test_transport_api_tcp_peer1.conf
121SERVICEHOME = /tmp/test-gnunetd-transport-peer-1/
122
diff --git a/src/transport/test_transport_api_http_peer2.conf b/src/transport/test_transport_api_http_peer2.conf
new file mode 100644
index 000000000..72348f529
--- /dev/null
+++ b/src/transport/test_transport_api_http_peer2.conf
@@ -0,0 +1,123 @@
1[transport-http]
2PORT = 22368
3
4[fs]
5ALLOW_SHUTDOWN = YES
6ACCEPT_FROM6 = ::1;
7ACCEPT_FROM = 127.0.0.1;
8BINARY = gnunet-service-fs
9CONFIG = $DEFAULTCONFIG
10HOME = $SERVICEHOME
11HOSTNAME = localhost
12PORT = 2094
13INDEXDB = $SERVICEHOME/idxinfo.lst
14
15[datastore-sqlite]
16FILENAME = $SERVICEHOME/datastore/sqlite.db
17
18[datastore]
19DATABASE = sqlite
20BLOOMFILTER = $SERVICEHOME/fs/bloomfilter
21QUOTA = 100000000
22ALLOW_SHUTDOWN = YES
23ACCEPT_FROM6 = ::1;
24ACCEPT_FROM = 127.0.0.1;
25BINARY = gnunet-service-datastore
26CONFIG = $DEFAULTCONFIG
27HOME = $SERVICEHOME
28HOSTNAME = localhost
29PORT = 2093
30
31[hostlist]
32HTTP-PROXY =
33SERVERS = http://gnunet.org:8080/
34OPTIONS = -b
35BINARY = gnunet-daemon-hostlist
36CONFIG = $DEFAULTCONFIG
37HOME = $SERVICEHOME
38HOSTNAME = localhost
39HTTPPORT = 8080
40
41[topology]
42BINARY = gnunet-daemon-topology
43CONFIG = $DEFAULTCONFIG
44FRIENDS = $SERVICEHOME/friends
45TARGET-CONNECTION-COUNT = 16
46AUTOCONNECT = YES
47FRIENDS-ONLY = NO
48MINIMUM-FRIENDS = 0
49
50[transport]
51PLUGINS = http
52#DEBUG = YES
53# PREFIX =
54ALLOW_SHUTDOWN = YES
55ACCEPT_FROM6 = ::1;
56ACCEPT_FROM = 127.0.0.1;
57NEIGHBOUR_LIMIT = 50
58BINARY = gnunet-service-transport
59CONFIG = $DEFAULTCONFIG
60HOME = $SERVICEHOME
61HOSTNAME = localhost
62PORT = 22365
63#PREFIX = xterm -T transport1 -e gdb --command=cmd --args
64#PREFIX = valgrind --leak-check=full
65
66[peerinfo]
67TRUST = $SERVICEHOME/data/credit/
68HOSTS = $SERVICEHOME/data/hosts/
69ALLOW_SHUTDOWN = YES
70ACCEPT_FROM6 = ::1;
71ACCEPT_FROM = 127.0.0.1;
72BINARY = gnunet-service-peerinfo
73CONFIG = $DEFAULTCONFIG
74HOME = $SERVICEHOME
75HOSTNAME = localhost
76PORT = 22369
77
78[resolver]
79ALLOW_SHUTDOWN = YES
80ACCEPT_FROM6 = ::1;
81ACCEPT_FROM = 127.0.0.1;
82BINARY = gnunet-service-resolver
83CONFIG = $DEFAULTCONFIG
84HOME = $SERVICEHOME
85HOSTNAME = localhost
86PORT = 22364
87
88[statistics]
89ALLOW_SHUTDOWN = YES
90ACCEPT_FROM6 = ::1;
91ACCEPT_FROM = 127.0.0.1;
92BINARY = gnunet-service-statistics
93CONFIG = $DEFAULTCONFIG
94HOME = $SERVICEHOME
95HOSTNAME = localhost
96PORT = 22367
97
98[arm]
99DEFAULTSERVICES =
100ALLOW_SHUTDOWN = YES
101ACCEPT_FROM6 = ::1;
102ACCEPT_FROM = 127.0.0.1;
103BINARY = gnunet-service-arm
104CONFIG = $DEFAULTCONFIG
105HOME = $SERVICEHOME
106HOSTNAME = localhost
107PORT = 22366
108
109[transport-tcp]
110ALLOW_SHUTDOWN = NO
111TIMEOUT = 300000
112PORT = 22368
113
114[TESTING]
115WEAKRANDOM = YES
116
117[gnunetd]
118HOSTKEY = $SERVICEHOME/.hostkey
119
120[PATHS]
121DEFAULTCONFIG = test_transport_api_tcp_peer2.conf
122SERVICEHOME = /tmp/test-gnunetd-transport-peer-2/
123