aboutsummaryrefslogtreecommitdiff
path: root/src/transport/Makefile.am
diff options
context:
space:
mode:
Diffstat (limited to 'src/transport/Makefile.am')
-rw-r--r--src/transport/Makefile.am1658
1 files changed, 0 insertions, 1658 deletions
diff --git a/src/transport/Makefile.am b/src/transport/Makefile.am
deleted file mode 100644
index 561ac5e60..000000000
--- a/src/transport/Makefile.am
+++ /dev/null
@@ -1,1658 +0,0 @@
1# This Makefile.am is in the public domain
2AM_CPPFLAGS = -I$(top_srcdir)/src/include -I$(top_builddir)/src/include
3
4plugindir = $(libdir)/gnunet
5
6pkgcfgdir= $(pkgdatadir)/config.d/
7
8libexecdir= $(pkglibdir)/libexec/
9
10pkgcfg_DATA = \
11 transport.conf \
12 communicator-unix.conf
13
14HTTP_SERVER_PLUGIN_LA = libgnunet_plugin_transport_http_server.la
15HTTPS_SERVER_PLUGIN_LA = libgnunet_plugin_transport_https_server.la
16HTTP_SERVER_PLUGIN_TEST = test_plugin_http_server
17HTTPS_SERVER_PLUGIN_TEST = test_plugin_https_server
18
19if HAVE_LIBGNURL
20 HTTP_CLIENT_PLUGIN_TEST = test_plugin_http_client
21 HTTPS_CLIENT_PLUGIN_TEST = test_plugin_https_client
22 HTTP_CLIENT_PLUGIN_LA = libgnunet_plugin_transport_http_client.la
23 HTTPS_CLIENT_PLUGIN_LA = libgnunet_plugin_transport_https_client.la
24LIB_GNURL=@LIBGNURL@
25CPP_GNURL=@LIBGNURL_CPPFLAGS@
26else
27if HAVE_LIBCURL
28 HTTP_CLIENT_PLUGIN_TEST = test_plugin_http_client
29 HTTPS_CLIENT_PLUGIN_TEST = test_plugin_https_client
30 HTTP_CLIENT_PLUGIN_LA = libgnunet_plugin_transport_http_client.la
31 HTTPS_CLIENT_PLUGIN_LA = libgnunet_plugin_transport_https_client.la
32LIB_GNURL=@LIBCURL@
33CPP_GNURL=@LIBCURL_CPPFLAGS@
34endif
35endif
36
37if HAVE_LIBGNURL
38 HTTP_API_TEST = test_transport_api_http
39 HTTP_REVERSE_API_TEST = test_transport_api_http_reverse
40 HTTP_API_TIMEOUT_TEST = test_transport_api_timeout_http
41 HTTP_REL_TEST = test_transport_api_reliability_http \
42 test_transport_api_reliability_http_xhr
43 HTTP_QUOTA_TEST = test_quota_compliance_http \
44 test_quota_compliance_http_asymmetric
45 HTTP_SWITCH = test_transport_address_switch_http
46 HTTPS_API_TEST = test_transport_api_https
47 HTTPS_API_TIMEOUT_TEST = test_transport_api_timeout_https
48if HAVE_EXPERIMENTAL
49 HTTPS_REL_TEST = test_transport_api_reliability_https \
50 test_transport_api_reliability_https_xhr
51endif
52 HTTPS_QUOTA_TEST = test_quota_compliance_https \
53 test_quota_compliance_https_asymmetric
54 HTTPS_SWITCH = test_transport_address_switch_https
55else
56if HAVE_LIBCURL
57 HTTP_API_TEST = test_transport_api_http
58 HTTP_REVERSE_API_TEST = test_transport_api_http_reverse
59 HTTP_API_TIMEOUT_TEST = test_transport_api_timeout_http
60 HTTP_REL_TEST = test_transport_api_reliability_http \
61 test_transport_api_reliability_http_xhr
62 HTTP_QUOTA_TEST = test_quota_compliance_http \
63 test_quota_compliance_http_asymmetric
64 HTTP_SWITCH = test_transport_address_switch_http
65 HTTPS_API_TEST = test_transport_api_https
66 HTTPS_API_TIMEOUT_TEST = test_transport_api_timeout_https
67if HAVE_EXPERIMENTAL
68 HTTPS_REL_TEST = test_transport_api_reliability_https \
69 test_transport_api_reliability_https_xhr
70endif
71 HTTPS_QUOTA_TEST = test_quota_compliance_https \
72 test_quota_compliance_https_asymmetric
73 HTTPS_SWITCH = test_transport_address_switch_https
74endif
75endif
76
77if USE_COVERAGE
78 AM_CFLAGS = --coverage -O0
79endif
80
81if HAVE_EXPERIMENTAL
82if LINUX
83 WLAN_BIN = gnunet-helper-transport-wlan
84 WLAN_BIN_DUMMY = gnunet-helper-transport-wlan-dummy
85 WLAN_BIN_SENDER = gnunet-transport-wlan-sender
86 WLAN_BIN_RECEIVER = gnunet-transport-wlan-receiver
87 WLAN_PLUGIN_LA = libgnunet_plugin_transport_wlan.la
88 WLAN_PLUGIN_TEST = test_plugin_wlan
89 WLAN_API_TEST = test_transport_api_wlan
90 WLAN_TIMEOUT_TEST = test_transport_api_timeout_wlan
91 WLAN_REL_TEST = test_transport_api_reliability_wlan
92 WLAN_QUOTA_TEST = test_quota_compliance_wlan \
93 test_quota_compliance_wlan_asymmetric
94endif
95
96if LINUX
97if HAVE_LIBBLUETOOTH
98 BT_BIN = gnunet-helper-transport-bluetooth
99 BT_PLUGIN_LA = libgnunet_plugin_transport_bluetooth.la
100 BT_PLUGIN_TEST = test_plugin_bluetooth
101 BT_API_TEST = test_transport_api_bluetooth
102 BT_TIMEOUT_TEST = test_transport_api_timeout_bluetooth
103 BT_REL_TEST = test_transport_api_reliability_bluetooth
104 BT_QUOTA_TEST = test_quota_compliance_bluetooth \
105 test_quota_compliance_bluetooth_asymmetric
106endif
107endif
108
109# end of HAVE_EXPERIMENTAL
110endif
111
112
113UNIX_PLUGIN_LA = libgnunet_plugin_transport_unix.la
114UNIX_PLUGIN_TEST = test_transport_api_unix
115UNIX_TEST = test_plugin_unix
116UNIX_PLUGIN_TIMEOUT_TEST = test_transport_api_timeout_unix
117UNIX_REL_TEST = test_transport_api_reliability_unix
118UNIX_QUOTA_TEST = test_quota_compliance_unix \
119 test_quota_compliance_unix_asymmetric
120if LINUX
121 UNIX_API_ABSTRACT_TEST = test_transport_api_unix_abstract
122endif
123
124
125noinst_PROGRAMS = \
126 gnunet-transport-profiler \
127 gnunet-communicator-udp \
128 $(WLAN_BIN_SENDER) \
129 $(WLAN_BIN_RECEIVER)
130
131if HAVE_TESTING
132TESTING_LIBS = \
133 libgnunettransporttesting.la \
134 libgnunettransporttesting2.la
135endif
136
137lib_LTLIBRARIES = \
138 libgnunettransport.la \
139 libgnunettransportapplication.la \
140 libgnunettransportcore.la \
141 libgnunettransportcommunicator.la \
142 libgnunettransportmonitor.la \
143 $(TESTING_LIBS)
144
145libgnunettransporttesting_la_SOURCES = \
146 transport-testing.c transport-testing.h \
147 transport-testing-filenames.c \
148 transport-testing-loggers.c \
149 transport-testing-main.c \
150 transport-testing-send.c
151libgnunettransporttesting_la_LIBADD = \
152 libgnunettransport.la \
153 $(top_builddir)/src/hello/libgnunethello.la \
154 $(top_builddir)/src/ats/libgnunetats.la \
155 $(top_builddir)/src/util/libgnunetutil.la \
156 $(top_builddir)/src/testing/libgnunettesting.la \
157 $(top_builddir)/src/arm/libgnunetarm.la \
158 $(GN_LIBINTL)
159libgnunettransporttesting_la_LDFLAGS = \
160 $(GN_LIB_LDFLAGS)
161
162libgnunettransporttesting2_la_SOURCES = \
163 transport_api_cmd_connecting_peers.c \
164 transport_api_cmd_connecting_peers_v2.c \
165 transport_api_cmd_start_peer.c \
166 transport_api_cmd_start_peer_v2.c \
167 transport_api_cmd_stop_peer.c \
168 transport_api_cmd_send_simple.c \
169 transport_api_cmd_send_simple_v2.c \
170 transport-testing2.c transport-testing2.h \
171 transport-testing-cmds.h \
172 transport-testing-filenames2.c \
173 transport-testing-loggers2.c \
174 transport-testing-main2.c \
175 transport-testing-send2.c \
176 transport-testing-communicator.c transport-testing-communicator.h
177libgnunettransporttesting2_la_LIBADD = \
178 libgnunettransportapplication.la \
179 libgnunettransportcore.la \
180 $(top_builddir)/src/arm/libgnunetarm.la \
181 $(top_builddir)/src/testing/libgnunettesting.la \
182 $(top_builddir)/src/ats/libgnunetats.la \
183 $(top_builddir)/src/hello/libgnunethello.la \
184 $(top_builddir)/src/peerstore/libgnunetpeerstore.la \
185 $(top_builddir)/src/util/libgnunetutil.la
186libgnunettransporttesting2_la_LDFLAGS = \
187 $(GN_LIBINTL) \
188 $(GN_LIB_LDFLAGS) \
189 -version-info 0:0:0
190
191libgnunettransport_la_SOURCES = \
192 transport.h \
193 transport_api_address_to_string.c \
194 transport_api_blacklist.c \
195 transport_api_core.c \
196 transport_api_hello_get.c \
197 transport_api_manipulation.c \
198 transport_api_monitor_peers.c \
199 transport_api_monitor_plugins.c \
200 transport_api_offer_hello.c
201
202libgnunettransport_la_LIBADD = \
203 $(top_builddir)/src/hello/libgnunethello.la \
204 $(top_builddir)/src/ats/libgnunetats.la \
205 $(top_builddir)/src/util/libgnunetutil.la \
206 $(GN_LIBINTL)
207libgnunettransport_la_LDFLAGS = \
208 $(GN_LIB_LDFLAGS) \
209 -version-info 4:0:2
210
211libgnunettransportapplication_la_SOURCES = \
212 transport_api2_application.c
213libgnunettransportapplication_la_LIBADD = \
214 $(top_builddir)/src/util/libgnunetutil.la \
215 $(LTLIBINTL)
216libgnunettransportapplication_la_LDFLAGS = \
217 $(GN_LIB_LDFLAGS) \
218 -version-info 0:0:0
219
220
221libgnunettransportcore_la_SOURCES = \
222 transport_api2_core.c
223libgnunettransportcore_la_LIBADD = \
224 $(top_builddir)/src/util/libgnunetutil.la \
225 $(GN_LIBINTL)
226libgnunettransportcore_la_LDFLAGS = \
227 $(GN_LIB_LDFLAGS) \
228 -version-info 0:0:0
229
230libgnunettransportcommunicator_la_SOURCES = \
231 transport_api2_communication.c
232libgnunettransportcommunicator_la_LIBADD = \
233 $(top_builddir)/src/util/libgnunetutil.la \
234 $(GN_LIBINTL)
235libgnunettransportcommunicator_la_LDFLAGS = \
236 $(GN_LIB_LDFLAGS) \
237 -version-info 0:0:0
238
239
240libgnunettransportmonitor_la_SOURCES = \
241 transport_api2_monitor.c
242libgnunettransportmonitor_la_LIBADD = \
243 $(top_builddir)/src/util/libgnunetutil.la \
244 $(GN_LIBINTL)
245libgnunettransportmonitor_la_LDFLAGS = \
246 $(GN_LIB_LDFLAGS) \
247 -version-info 0:0:0
248
249
250libexec_PROGRAMS = \
251 $(WLAN_BIN) \
252 $(WLAN_BIN_DUMMY) \
253 $(BT_BIN) \
254 gnunet-service-transport \
255 gnunet-service-tng \
256 gnunet-communicator-unix \
257 gnunet-communicator-udp \
258 gnunet-communicator-tcp
259
260
261
262bin_PROGRAMS = \
263 gnunet-transport
264
265bin_SCRIPTS = \
266 gnunet-transport-certificate-creation
267
268# See: https://www.gnu.org/software/automake/manual/html_node/Scripts.html#Scripts
269do_subst = sed -e 's,[@]pkgdatadir[@],$(pkgdatadir),g'
270
271
272gnunet-transport-certificate-creation: gnunet-transport-certificate-creation.in Makefile
273 $(do_subst) < $(srcdir)/gnunet-transport-certificate-creation.in > gnunet-transport-certificate-creation
274 chmod +x gnunet-transport-certificate-creation
275
276
277
278gnunet_communicator_unix_SOURCES = \
279 gnunet-communicator-unix.c
280gnunet_communicator_unix_LDADD = \
281 libgnunettransportcommunicator.la \
282 $(top_builddir)/src/statistics/libgnunetstatistics.la \
283 $(top_builddir)/src/util/libgnunetutil.la
284
285gnunet_communicator_tcp_SOURCES = \
286 gnunet-communicator-tcp.c
287gnunet_communicator_tcp_LDADD = \
288 libgnunettransportcommunicator.la \
289 $(top_builddir)/src/peerstore/libgnunetpeerstore.la \
290 $(top_builddir)/src/nat/libgnunetnatnew.la \
291 $(top_builddir)/src/nt/libgnunetnt.la \
292 $(top_builddir)/src/statistics/libgnunetstatistics.la \
293 $(top_builddir)/src/util/libgnunetutil.la \
294 $(LIBGCRYPT_LIBS)
295
296gnunet_communicator_udp_SOURCES = \
297 gnunet-communicator-udp.c
298gnunet_communicator_udp_LDADD = \
299 libgnunettransportapplication.la \
300 libgnunettransportcommunicator.la \
301 $(top_builddir)/src/nat/libgnunetnatnew.la \
302 $(top_builddir)/src/nt/libgnunetnt.la \
303 $(top_builddir)/src/statistics/libgnunetstatistics.la \
304 $(top_builddir)/src/util/libgnunetutil.la \
305 $(LIBGCRYPT_LIBS)
306
307
308gnunet_helper_transport_wlan_SOURCES = \
309 gnunet-helper-transport-wlan.c
310
311gnunet_helper_transport_wlan_dummy_SOURCES = \
312 gnunet-helper-transport-wlan-dummy.c
313gnunet_helper_transport_wlan_dummy_LDADD = \
314 $(top_builddir)/src/util/libgnunetutil.la
315
316gnunet_transport_wlan_sender_SOURCES = \
317 gnunet-transport-wlan-sender.c
318gnunet_transport_wlan_sender_LDADD = \
319 $(top_builddir)/src/util/libgnunetutil.la
320
321gnunet_transport_wlan_receiver_SOURCES = \
322 gnunet-transport-wlan-receiver.c
323gnunet_transport_wlan_receiver_LDADD = \
324 $(top_builddir)/src/util/libgnunetutil.la
325
326gnunet_helper_transport_bluetooth_SOURCES = \
327 gnunet-helper-transport-bluetooth.c
328
329gnunet_helper_transport_bluetooth_LDFLAGS = -lbluetooth
330
331
332gnunet_transport_profiler_SOURCES = \
333 gnunet-transport-profiler.c
334gnunet_transport_profiler_LDADD = \
335 libgnunettransport.la \
336 $(top_builddir)/src/hello/libgnunethello.la \
337 $(top_builddir)/src/ats/libgnunetats.la \
338 $(top_builddir)/src/util/libgnunetutil.la \
339 $(GN_LIBINTL)
340
341gnunet_transport_SOURCES = \
342 gnunet-transport.c
343gnunet_transport_LDADD = \
344 libgnunettransport.la \
345 $(top_builddir)/src/hello/libgnunethello.la \
346 $(top_builddir)/src/util/libgnunetutil.la \
347 $(GN_LIBINTL)
348
349gnunet_service_transport_SOURCES = \
350 gnunet-service-transport.c gnunet-service-transport.h \
351 gnunet-service-transport_ats.h gnunet-service-transport_ats.c \
352 gnunet-service-transport_hello.h gnunet-service-transport_hello.c \
353 gnunet-service-transport_neighbours.h gnunet-service-transport_neighbours.c \
354 gnunet-service-transport_plugins.h gnunet-service-transport_plugins.c \
355 gnunet-service-transport_validation.h gnunet-service-transport_validation.c \
356 gnunet-service-transport_manipulation.h gnunet-service-transport_manipulation.c
357# Note that while gnunet-service-transport does not use libgnunetnat
358# directly, we must link against it as GNUNET_NAT_mini_map_stop will
359# leave a 'dangling' task to process_unmap_output which will cause
360# a crash on unloading of a plugin unless the service links against
361# that library as well.
362gnunet_service_transport_LDADD = \
363 libgnunettransport.la \
364 $(top_builddir)/src/ats/libgnunetats.la \
365 $(top_builddir)/src/hello/libgnunethello.la \
366 $(top_builddir)/src/nt/libgnunetnt.la \
367 $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
368 $(top_builddir)/src/statistics/libgnunetstatistics.la \
369 $(top_builddir)/src/util/libgnunetutil.la \
370 $(GN_GLPK) \
371 $(GN_LIBINTL)
372gnunet_service_transport_CFLAGS = \
373 $(AM_CFLAGS)
374# -DANALYZE
375
376
377gnunet_service_tng_SOURCES = \
378 gnunet-service-tng.c
379gnunet_service_tng_LDADD = \
380 $(top_builddir)/src/peerstore/libgnunetpeerstore.la \
381 $(top_builddir)/src/hello/libgnunethello.la \
382 $(top_builddir)/src/statistics/libgnunetstatistics.la \
383 $(top_builddir)/src/util/libgnunetutil.la \
384 $(LIBGCRYPT_LIBS) \
385 $(GN_LIBINTL)
386
387plugin_LTLIBRARIES = \
388 libgnunet_plugin_transport_tcp.la \
389 $(UNIX_PLUGIN_LA) \
390 $(HTTP_CLIENT_PLUGIN_LA) \
391 $(HTTPS_CLIENT_PLUGIN_LA) \
392 $(HTTP_SERVER_PLUGIN_LA) \
393 $(HTTPS_SERVER_PLUGIN_LA) \
394 $(WLAN_PLUGIN_LA) \
395 $(BT_PLUGIN_LA) \
396 libgnunet_test_transport_plugin_cmd_simple_send.la \
397 libgnunet_test_transport_plugin_cmd_simple_send_v2.la
398
399libgnunet_test_transport_plugin_cmd_simple_send_la_SOURCES = \
400 test_transport_plugin_cmd_simple_send.c
401libgnunet_test_transport_plugin_cmd_simple_send_la_LIBADD = \
402 libgnunettransporttesting2.la \
403 libgnunettransportapplication.la \
404 libgnunettransportcore.la \
405 $(top_builddir)/src/testing/libgnunettesting.la \
406 $(top_builddir)/src/peerstore/libgnunetpeerstore.la \
407 $(top_builddir)/src/statistics/libgnunetstatistics.la \
408 $(top_builddir)/src/hello/libgnunethello.la \
409 $(top_builddir)/src/ats/libgnunetats.la \
410 $(top_builddir)/src/arm/libgnunetarm.la \
411 $(top_builddir)/src/util/libgnunetutil.la \
412 $(LTLIBINTL)
413libgnunet_test_transport_plugin_cmd_simple_send_la_LDFLAGS = \
414 $(GN_PLUGIN_LDFLAGS)
415
416libgnunet_test_transport_plugin_cmd_simple_send_v2_la_SOURCES = \
417 test_transport_plugin_cmd_simple_send_v2.c
418libgnunet_test_transport_plugin_cmd_simple_send_v2_la_LIBADD = \
419 libgnunettransporttesting2.la \
420 libgnunettransportapplication.la \
421 libgnunettransportcore.la \
422 $(top_builddir)/src/testing/libgnunettesting.la \
423 $(top_builddir)/src/peerstore/libgnunetpeerstore.la \
424 $(top_builddir)/src/statistics/libgnunetstatistics.la \
425 $(top_builddir)/src/hello/libgnunethello.la \
426 $(top_builddir)/src/ats/libgnunetats.la \
427 $(top_builddir)/src/arm/libgnunetarm.la \
428 $(top_builddir)/src/util/libgnunetutil.la \
429 $(LTLIBINTL)
430libgnunet_test_transport_plugin_cmd_simple_send_v2_la_LDFLAGS = \
431 $(GN_PLUGIN_LDFLAGS)
432
433if HAVE_EXPERIMENTAL
434plugin_LTLIBRARIES += \
435 libgnunet_plugin_transport_udp.la
436endif
437
438# Note: real plugins of course need to be added
439# to the plugin_LTLIBRARIES above
440noinst_LTLIBRARIES = \
441 libgnunet_plugin_transport_template.la
442
443libgnunet_plugin_transport_tcp_la_SOURCES = \
444 plugin_transport_tcp.c
445libgnunet_plugin_transport_tcp_la_LIBADD = \
446 $(top_builddir)/src/hello/libgnunethello.la \
447 $(top_builddir)/src/statistics/libgnunetstatistics.la \
448 $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
449 $(top_builddir)/src/nat/libgnunetnatnew.la \
450 $(top_builddir)/src/util/libgnunetutil.la \
451 $(LTLIBINTL)
452libgnunet_plugin_transport_tcp_la_LDFLAGS = \
453 $(GN_PLUGIN_LDFLAGS)
454
455libgnunet_plugin_transport_template_la_SOURCES = \
456 plugin_transport_template.c
457libgnunet_plugin_transport_template_la_LIBADD = \
458 $(top_builddir)/src/util/libgnunetutil.la \
459 $(LTLIBINTL)
460libgnunet_plugin_transport_template_la_LDFLAGS = \
461 $(GN_PLUGIN_LDFLAGS)
462
463libgnunet_plugin_transport_wlan_la_SOURCES = \
464 plugin_transport_wlan.c plugin_transport_wlan.h
465libgnunet_plugin_transport_wlan_la_LIBADD = \
466 $(top_builddir)/src/hello/libgnunethello.la \
467 $(top_builddir)/src/statistics/libgnunetstatistics.la \
468 $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
469 $(top_builddir)/src/fragmentation/libgnunetfragmentation.la \
470 $(top_builddir)/src/util/libgnunetutil.la
471libgnunet_plugin_transport_wlan_la_LDFLAGS = \
472 $(GN_PLUGIN_LDFLAGS)
473libgnunet_plugin_transport_wlan_la_CFLAGS = \
474 $(AM_CFLAGS) -DBUILD_WLAN
475
476libgnunet_plugin_transport_bluetooth_la_SOURCES = \
477 plugin_transport_wlan.c plugin_transport_wlan.h
478libgnunet_plugin_transport_bluetooth_la_LIBADD = \
479 $(top_builddir)/src/hello/libgnunethello.la \
480 $(top_builddir)/src/statistics/libgnunetstatistics.la \
481 $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
482 $(top_builddir)/src/fragmentation/libgnunetfragmentation.la \
483 $(top_builddir)/src/util/libgnunetutil.la
484libgnunet_plugin_transport_bluetooth_la_LDFLAGS = \
485 $(GN_PLUGIN_LDFLAGS)
486libgnunet_plugin_transport_bluetooth_la_CFLAGS = \
487 $(AM_CFLAGS) -DBUILD_BLUETOOTH
488
489if HAVE_EXPERIMENTAL
490libgnunet_plugin_transport_udp_la_SOURCES = \
491 plugin_transport_udp.c plugin_transport_udp.h \
492 plugin_transport_udp_broadcasting.c
493libgnunet_plugin_transport_udp_la_LIBADD = \
494 $(top_builddir)/src/hello/libgnunethello.la \
495 $(top_builddir)/src/fragmentation/libgnunetfragmentation.la \
496 $(top_builddir)/src/statistics/libgnunetstatistics.la \
497 $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
498 $(top_builddir)/src/nat/libgnunetnatnew.la \
499 $(top_builddir)/src/util/libgnunetutil.la \
500 $(LTLIBINTL)
501libgnunet_plugin_transport_udp_la_LDFLAGS = \
502 $(GN_PLUGIN_LDFLAGS)
503endif
504
505libgnunet_plugin_transport_unix_la_SOURCES = \
506 plugin_transport_unix.c
507libgnunet_plugin_transport_unix_la_LIBADD = \
508 $(top_builddir)/src/hello/libgnunethello.la \
509 $(top_builddir)/src/statistics/libgnunetstatistics.la \
510 $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
511 $(top_builddir)/src/util/libgnunetutil.la \
512 $(LTLIBINTL)
513libgnunet_plugin_transport_unix_la_LDFLAGS = \
514 $(GN_PLUGIN_LDFLAGS)
515
516
517libgnunet_plugin_transport_http_client_la_SOURCES = \
518 plugin_transport_http_client.c plugin_transport_http_common.c plugin_transport_http_common.h
519libgnunet_plugin_transport_http_client_la_LIBADD = \
520 $(top_builddir)/src/hello/libgnunethello.la \
521 $(top_builddir)/src/statistics/libgnunetstatistics.la \
522 $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
523 $(LIB_GNURL) \
524 $(top_builddir)/src/util/libgnunetutil.la
525libgnunet_plugin_transport_http_client_la_LDFLAGS = \
526 $(GN_LIBINTL) \
527 $(GN_PLUGIN_LDFLAGS)
528libgnunet_plugin_transport_http_client_la_CFLAGS = \
529 $(CPP_GNURL) $(AM_CFLAGS)
530
531
532libgnunet_plugin_transport_http_server_la_SOURCES = \
533 plugin_transport_http_server.c plugin_transport_http_common.c
534libgnunet_plugin_transport_http_server_la_LIBADD = \
535 $(MHD_LIBS) \
536 $(top_builddir)/src/hello/libgnunethello.la \
537 $(top_builddir)/src/statistics/libgnunetstatistics.la \
538 $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
539 $(top_builddir)/src/nat/libgnunetnatnew.la \
540 $(top_builddir)/src/util/libgnunetutil.la
541libgnunet_plugin_transport_http_server_la_LDFLAGS = \
542 $(GN_LIBINTL) \
543 $(GN_PLUGIN_LDFLAGS)
544libgnunet_plugin_transport_http_server_la_CFLAGS = \
545 $(MHD_CFLAGS) $(AM_CFLAGS)
546
547libgnunet_plugin_transport_https_client_la_SOURCES = \
548 plugin_transport_http_client.c plugin_transport_http_common.c
549libgnunet_plugin_transport_https_client_la_LIBADD = \
550 $(top_builddir)/src/hello/libgnunethello.la \
551 $(top_builddir)/src/statistics/libgnunetstatistics.la \
552 $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
553 $(LIB_GNURL) \
554 $(top_builddir)/src/util/libgnunetutil.la
555libgnunet_plugin_transport_https_client_la_LDFLAGS = \
556 $(GN_LIBINTL) \
557 $(GN_PLUGIN_LDFLAGS)
558libgnunet_plugin_transport_https_client_la_CFLAGS = \
559 $(CPP_GNURL) $(AM_CFLAGS) -DBUILD_HTTPS
560
561
562libgnunet_plugin_transport_https_server_la_SOURCES = \
563 plugin_transport_http_server.c plugin_transport_http_common.c
564libgnunet_plugin_transport_https_server_la_LIBADD = \
565 $(MHD_LIBS) \
566 $(top_builddir)/src/hello/libgnunethello.la \
567 $(top_builddir)/src/statistics/libgnunetstatistics.la \
568 $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
569 $(top_builddir)/src/nat/libgnunetnatnew.la \
570 $(top_builddir)/src/util/libgnunetutil.la
571libgnunet_plugin_transport_https_server_la_LDFLAGS = \
572 $(GN_LIBINTL) \
573 $(GN_PLUGIN_LDFLAGS)
574libgnunet_plugin_transport_https_server_la_CFLAGS = \
575 $(MHD_CFLAGS) $(AM_CFLAGS) -DBUILD_HTTPS
576
577if HAVE_TESTING
578check_PROGRAMS = \
579 test_transport_simple_send \
580 test_transport_simple_send_v2 \
581 test_transport_address_switch_tcp \
582 test_transport_testing_startstop \
583 test_transport_testing_restart \
584 test_plugin_tcp \
585 $(UNIX_TEST) \
586 $(WLAN_PLUGIN_TEST) \
587 $(BT_PLUGIN_TEST) \
588 test_http_common \
589 $(HTTP_CLIENT_PLUGIN_TEST) \
590 $(HTTPS_CLIENT_PLUGIN_TEST) \
591 $(HTTP_SERVER_PLUGIN_TEST) \
592 $(HTTPS_SERVER_PLUGIN_TEST) \
593 test_transport_api_blacklisting_tcp \
594 test_transport_api_disconnect_tcp \
595 test_transport_api_tcp \
596 test_transport_api2_tcp \
597 test_transport_api_restart_1peer \
598 test_transport_api_restart_2peers \
599 test_transport_api_timeout_tcp \
600 test_transport_api_limited_sockets_tcp \
601 test_transport_api_tcp_nat \
602 $(UNIX_PLUGIN_TEST) \
603 $(UNIX_PLUGIN_TIMEOUT_TEST) \
604 $(UNIX_API_ABSTRACT_TEST) \
605 $(HTTP_API_TEST) \
606 $(HTTP_REVERSE_API_TEST) \
607 $(HTTP_API_TIMEOUT_TEST) \
608 $(HTTP_SWITCH) \
609 $(HTTPS_API_TEST) \
610 $(HTTPS_API_TIMEOUT_TEST) \
611 $(HTTPS_SWITCH) \
612 $(WLAN_API_TEST) \
613 $(WLAN_TIMEOUT_TEST) \
614 $(BT_API_TEST) \
615 $(BT_TIMEOUT_TEST) \
616 test_transport_api_multi \
617 test_transport_api_monitor_peers \
618 test_transport_blacklisting_no_bl \
619 test_transport_blacklisting_outbound_bl_full \
620 test_transport_blacklisting_outbound_bl_plugin \
621 test_transport_blacklisting_inbound_bl_plugin \
622 test_transport_blacklisting_inbound_bl_full \
623 test_transport_blacklisting_multiple_plugins \
624 test_transport_api_manipulation_send_tcp \
625 test_transport_api_manipulation_recv_tcp \
626 test_transport_api_manipulation_cfg \
627 test_transport_api_reliability_tcp \
628 test_transport_api_reliability_tcp_nat \
629 $(UNIX_REL_TEST) \
630 $(HTTP_REL_TEST) \
631 $(HTTPS_REL_TEST) \
632 $(WLAN_REL_TEST) \
633 $(WLAN_UREL_TEST) \
634 $(BT_REL_TEST) \
635 $(BT_UREL_TEST) \
636 test_quota_compliance_tcp \
637 test_quota_compliance_tcp_asymmetric \
638 $(UNIX_QUOTA_TEST) \
639 $(HTTP_QUOTA_TEST) \
640 $(HTTPS_QUOTA_TEST) \
641 $(WLAN_QUOTA_TEST) \
642 $(BT_QUOTA_TEST)
643if HAVE_GETOPT_BINARY
644check_PROGRAMS += \
645test_transport_api_slow_ats
646endif
647if HAVE_EXPERIMENTAL
648check_PROGRAMS += \
649 test_transport_address_switch_udp \
650 test_plugin_udp \
651 test_transport_api_udp \
652 test_transport_api_timeout_udp \
653 test_transport_api_udp_nat \
654 test_transport_api_reliability_udp \
655 test_quota_compliance_udp \
656 test_communicator_basic-unix \
657 test_communicator_basic-tcp \
658 test_communicator_basic-udp \
659 test_communicator_rekey-tcp \
660 test_communicator_rekey-udp \
661 test_communicator_backchannel-udp \
662 test_communicator_bidirect-tcp
663endif
664endif
665
666if ENABLE_TEST_RUN
667AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;unset XDG_DATA_HOME;unset XDG_CONFIG_HOME;
668TESTS = \
669 test_transport_address_switch_tcp \
670 $(HTTP_SWITCH) \
671 $(HTTPS_SWITCH) \
672 test_transport_testing_startstop \
673 test_transport_testing_restart \
674 test_plugin_tcp \
675 $(UNIX_TEST) \
676 $(WLAN_PLUGIN_TEST) \
677 $(BT_PLUGIN_TEST) \
678 test_transport_api_blacklisting_tcp \
679 test_transport_api_disconnect_tcp \
680 test_transport_api_tcp \
681 test_transport_api_restart_1peer \
682 test_transport_api_restart_2peers \
683 test_transport_api_limited_sockets_tcp \
684 test_transport_api_tcp_nat \
685 $(UNIX_PLUGIN_TEST) \
686 $(UNIX_API_ABSTRACT_TEST) \
687 $(HTTP_API_TEST) \
688 $(HTTPS_API_TEST) \
689 $(WLAN_API_TEST) \
690 $(BT_API_TEST) \
691 test_transport_api_multi \
692 test_transport_api_monitor_peers \
693 test_transport_blacklisting_no_bl \
694 test_transport_blacklisting_outbound_bl_full \
695 test_transport_blacklisting_outbound_bl_plugin \
696 test_transport_blacklisting_inbound_bl_plugin \
697 test_transport_blacklisting_inbound_bl_full \
698 test_transport_blacklisting_multiple_plugins \
699 test_transport_api_manipulation_send_tcp \
700 test_transport_api_manipulation_recv_tcp \
701 test_transport_api_manipulation_cfg \
702 test_transport_api_reliability_tcp \
703 test_transport_api_reliability_tcp_nat \
704 $(UNIX_REL_TEST) \
705 $(HTTP_REL_TEST) \
706 $(HTTPS_REL_TEST) \
707 $(WLAN_REL_TEST) \
708 $(WLAN_UREL_TEST) \
709 $(BT_REL_TEST) \
710 $(BT_UREL_TEST) \
711 test_quota_compliance_tcp \
712 test_quota_compliance_tcp_asymmetric \
713 $(UNIX_QUOTA_TEST) \
714 $(HTTP_QUOTA_TEST) \
715 $(HTTPS_QUOTA_TEST) \
716 test_transport_api_timeout_tcp \
717 $(UNIX_PLUGIN_TIMEOUT_TEST) \
718 $(HTTP_API_TIMEOUT_TEST) \
719 $(HTTPS_API_TIMEOUT_TEST) \
720 $(WLAN_TIMEOUT_TEST) \
721 $(BT_TIMEOUT_TEST) \
722 $(check_SCRIPTS)
723if HAVE_GETOPT_BINARY
724TESTS += \
725test_transport_api_slow_ats
726endif
727if HAVE_EXPERIMENTAL
728TESTS += \
729 test_transport_simple_send \
730 test_transport_simple_send_v2 \
731 test_transport_address_switch_udp \
732 test_plugin_udp \
733 test_transport_api_udp \
734 test_transport_api_timeout_udp \
735 test_transport_api_udp_nat \
736 test_transport_api_reliability_udp \
737 test_quota_compliance_udp \
738 test_communicator_basic-unix \
739 test_communicator_basic-tcp \
740 test_communicator_basic-udp \
741 test_communicator_rekey-tcp \
742 test_communicator_rekey-udp \
743 test_communicator_backchannel-udp \
744 test_communicator_bidirect-tcp
745endif
746endif
747
748check_SCRIPTS= \
749 test_transport_simple_send.sh \
750 test_transport_simple_send_v2.sh
751
752test_transport_simple_send_SOURCES = \
753 test_transport_simple_send.c
754test_transport_simple_send_LDADD = \
755 $(top_builddir)/src/testing/libgnunettesting.la \
756 $(top_builddir)/src/util/libgnunetutil.la \
757 $(top_builddir)/src/testbed/libgnunettestbed.la \
758 $(top_builddir)/src/hello/libgnunethello.la \
759 libgnunettransportcore.la \
760 libgnunettransporttesting2.la
761
762test_transport_simple_send_v2_SOURCES = \
763 test_transport_simple_send_v2.c
764test_transport_simple_send_v2_LDADD = \
765 $(top_builddir)/src/testing/libgnunettesting.la \
766 $(top_builddir)/src/util/libgnunetutil.la \
767 $(top_builddir)/src/testbed/libgnunettestbed.la \
768 $(top_builddir)/src/hello/libgnunethello.la \
769 libgnunettransportcore.la \
770 libgnunettransporttesting2.la
771
772test_transport_testing_startstop_SOURCES = \
773 test_transport_testing_startstop.c
774test_transport_testing_startstop_LDADD = \
775 $(top_builddir)/src/util/libgnunetutil.la \
776 libgnunettransport.la \
777 $(top_builddir)/src/hello/libgnunethello.la \
778 libgnunettransporttesting.la
779
780test_transport_testing_restart_SOURCES = \
781 test_transport_testing_restart.c
782test_transport_testing_restart_LDADD = \
783 $(top_builddir)/src/util/libgnunetutil.la \
784 libgnunettransport.la \
785 $(top_builddir)/src/hello/libgnunethello.la \
786 libgnunettransporttesting.la
787
788test_transport_api_blacklisting_tcp_SOURCES = \
789 test_transport_api_blacklisting.c
790test_transport_api_blacklisting_tcp_LDADD = \
791 libgnunettransport.la \
792 $(top_builddir)/src/hello/libgnunethello.la \
793 $(top_builddir)/src/statistics/libgnunetstatistics.la \
794 $(top_builddir)/src/util/libgnunetutil.la \
795 libgnunettransporttesting.la
796
797test_transport_blacklisting_no_bl_SOURCES = \
798 test_transport_blacklisting.c
799test_transport_blacklisting_no_bl_LDADD = \
800 libgnunettransport.la \
801 $(top_builddir)/src/hello/libgnunethello.la \
802 $(top_builddir)/src/statistics/libgnunetstatistics.la \
803 $(top_builddir)/src/util/libgnunetutil.la \
804 libgnunettransporttesting.la
805
806test_transport_blacklisting_outbound_bl_full_SOURCES = \
807 test_transport_blacklisting.c
808test_transport_blacklisting_outbound_bl_full_LDADD = \
809 libgnunettransport.la \
810 $(top_builddir)/src/hello/libgnunethello.la \
811 $(top_builddir)/src/statistics/libgnunetstatistics.la \
812 $(top_builddir)/src/util/libgnunetutil.la \
813 libgnunettransporttesting.la
814
815test_transport_blacklisting_outbound_bl_plugin_SOURCES = \
816 test_transport_blacklisting.c
817test_transport_blacklisting_outbound_bl_plugin_LDADD = \
818 libgnunettransport.la \
819 $(top_builddir)/src/hello/libgnunethello.la \
820 $(top_builddir)/src/statistics/libgnunetstatistics.la \
821 $(top_builddir)/src/util/libgnunetutil.la \
822 libgnunettransporttesting.la
823
824test_transport_blacklisting_inbound_bl_full_SOURCES = \
825 test_transport_blacklisting.c
826test_transport_blacklisting_inbound_bl_full_LDADD = \
827 libgnunettransport.la \
828 $(top_builddir)/src/hello/libgnunethello.la \
829 $(top_builddir)/src/statistics/libgnunetstatistics.la \
830 $(top_builddir)/src/util/libgnunetutil.la \
831 libgnunettransporttesting.la
832
833test_transport_blacklisting_inbound_bl_plugin_SOURCES = \
834 test_transport_blacklisting.c
835test_transport_blacklisting_inbound_bl_plugin_LDADD = \
836 libgnunettransport.la \
837 $(top_builddir)/src/hello/libgnunethello.la \
838 $(top_builddir)/src/statistics/libgnunetstatistics.la \
839 $(top_builddir)/src/util/libgnunetutil.la \
840 libgnunettransporttesting.la
841
842test_transport_blacklisting_multiple_plugins_SOURCES = \
843 test_transport_blacklisting.c
844test_transport_blacklisting_multiple_plugins_LDADD = \
845 libgnunettransport.la \
846 $(top_builddir)/src/hello/libgnunethello.la \
847 $(top_builddir)/src/statistics/libgnunetstatistics.la \
848 $(top_builddir)/src/util/libgnunetutil.la \
849 libgnunettransporttesting.la
850
851
852test_transport_api_disconnect_tcp_SOURCES = \
853 test_transport_api_disconnect.c
854test_transport_api_disconnect_tcp_LDADD = \
855 libgnunettransport.la \
856 $(top_builddir)/src/hello/libgnunethello.la \
857 $(top_builddir)/src/statistics/libgnunetstatistics.la \
858 $(top_builddir)/src/util/libgnunetutil.la \
859 libgnunettransporttesting.la
860
861test_plugin_tcp_SOURCES = \
862 test_plugin_transport.c
863test_plugin_tcp_LDADD = \
864 libgnunettransport.la \
865 $(top_builddir)/src/statistics/libgnunetstatistics.la \
866 $(top_builddir)/src/hello/libgnunethello.la \
867 $(top_builddir)/src/util/libgnunetutil.la \
868 libgnunettransporttesting.la
869
870if HAVE_EXPERIMENTAL
871test_plugin_udp_SOURCES = \
872 test_plugin_transport.c
873test_plugin_udp_LDADD = \
874 libgnunettransport.la \
875 $(top_builddir)/src/statistics/libgnunetstatistics.la \
876 $(top_builddir)/src/hello/libgnunethello.la \
877 $(top_builddir)/src/util/libgnunetutil.la \
878 libgnunettransporttesting.la
879endif
880
881if HAVE_EXPERIMENTAL
882test_communicator_basic_unix_SOURCES = \
883 test_communicator_basic.c
884test_communicator_basic_unix_LDADD = \
885 libgnunettransporttesting2.la \
886 $(top_builddir)/src/testing/libgnunettesting.la \
887 $(top_builddir)/src/util/libgnunetutil.la \
888 $(top_builddir)/src/statistics/libgnunetstatistics.la
889
890test_communicator_basic_tcp_SOURCES = \
891 test_communicator_basic.c
892test_communicator_basic_tcp_LDADD = \
893 libgnunettransporttesting2.la \
894 $(top_builddir)/src/testing/libgnunettesting.la \
895 $(top_builddir)/src/util/libgnunetutil.la \
896 $(top_builddir)/src/statistics/libgnunetstatistics.la
897
898test_communicator_basic_udp_SOURCES = \
899 test_communicator_basic.c
900test_communicator_basic_udp_LDADD = \
901 libgnunettransporttesting2.la \
902 $(top_builddir)/src/testing/libgnunettesting.la \
903 $(top_builddir)/src/util/libgnunetutil.la \
904 $(top_builddir)/src/statistics/libgnunetstatistics.la
905
906test_communicator_rekey_tcp_SOURCES = \
907 test_communicator_basic.c
908test_communicator_rekey_tcp_LDADD = \
909 libgnunettransporttesting2.la \
910 $(top_builddir)/src/testing/libgnunettesting.la \
911 $(top_builddir)/src/util/libgnunetutil.la \
912 $(top_builddir)/src/statistics/libgnunetstatistics.la
913
914test_communicator_rekey_udp_SOURCES = \
915 test_communicator_basic.c
916test_communicator_rekey_udp_LDADD = \
917 libgnunettransporttesting2.la \
918 $(top_builddir)/src/testing/libgnunettesting.la \
919 $(top_builddir)/src/util/libgnunetutil.la \
920 $(top_builddir)/src/statistics/libgnunetstatistics.la
921
922test_communicator_backchannel_udp_SOURCES = \
923 test_communicator_basic.c
924test_communicator_backchannel_udp_LDADD = \
925 libgnunettransporttesting2.la \
926 $(top_builddir)/src/testing/libgnunettesting.la \
927 $(top_builddir)/src/util/libgnunetutil.la \
928 $(top_builddir)/src/statistics/libgnunetstatistics.la
929
930test_communicator_bidirect_tcp_SOURCES = \
931 test_communicator_basic.c
932test_communicator_bidirect_tcp_LDADD = \
933 libgnunettransporttesting2.la \
934 $(top_builddir)/src/testing/libgnunettesting.la \
935 $(top_builddir)/src/util/libgnunetutil.la \
936 $(top_builddir)/src/statistics/libgnunetstatistics.la
937endif
938
939test_plugin_unix_SOURCES = \
940 test_plugin_transport.c
941test_plugin_unix_LDADD = \
942 libgnunettransport.la \
943 $(top_builddir)/src/statistics/libgnunetstatistics.la \
944 $(top_builddir)/src/hello/libgnunethello.la \
945 $(top_builddir)/src/util/libgnunetutil.la \
946 libgnunettransporttesting.la
947
948test_plugin_wlan_SOURCES = \
949 test_plugin_transport.c
950test_plugin_wlan_LDADD = \
951 libgnunettransport.la \
952 $(top_builddir)/src/statistics/libgnunetstatistics.la \
953 $(top_builddir)/src/hello/libgnunethello.la \
954 $(top_builddir)/src/util/libgnunetutil.la \
955 libgnunettransporttesting.la
956
957test_plugin_bluetooth_SOURCES = \
958 test_plugin_transport.c
959test_plugin_bluetooth_LDADD = \
960 libgnunettransport.la \
961 $(top_builddir)/src/statistics/libgnunetstatistics.la \
962 $(top_builddir)/src/hello/libgnunethello.la \
963 $(top_builddir)/src/util/libgnunetutil.la \
964 libgnunettransporttesting.la
965
966test_http_common_SOURCES = \
967 test_http_common.c plugin_transport_http_common.c
968test_http_common_LDADD = \
969 libgnunettransport.la \
970 $(top_builddir)/src/statistics/libgnunetstatistics.la \
971 $(top_builddir)/src/hello/libgnunethello.la \
972 $(top_builddir)/src/util/libgnunetutil.la \
973 libgnunettransporttesting.la
974
975test_plugin_http_server_SOURCES = \
976 test_plugin_transport.c
977test_plugin_http_server_LDADD = \
978 libgnunettransport.la \
979 $(top_builddir)/src/statistics/libgnunetstatistics.la \
980 $(top_builddir)/src/hello/libgnunethello.la \
981 $(top_builddir)/src/util/libgnunetutil.la \
982 libgnunettransporttesting.la
983
984test_plugin_https_server_SOURCES = \
985 test_plugin_transport.c
986test_plugin_https_server_LDADD = \
987 libgnunettransport.la \
988 $(top_builddir)/src/statistics/libgnunetstatistics.la \
989 $(top_builddir)/src/hello/libgnunethello.la \
990 $(top_builddir)/src/util/libgnunetutil.la \
991 libgnunettransporttesting.la
992
993test_plugin_http_client_SOURCES = \
994 test_plugin_transport.c
995test_plugin_http_client_LDADD = \
996 libgnunettransport.la \
997 $(top_builddir)/src/statistics/libgnunetstatistics.la \
998 $(top_builddir)/src/hello/libgnunethello.la \
999 $(top_builddir)/src/util/libgnunetutil.la \
1000 libgnunettransporttesting.la
1001
1002test_plugin_https_client_SOURCES = \
1003 test_plugin_transport.c
1004test_plugin_https_client_LDADD = \
1005 libgnunettransport.la \
1006 $(top_builddir)/src/statistics/libgnunetstatistics.la \
1007 $(top_builddir)/src/hello/libgnunethello.la \
1008 $(top_builddir)/src/util/libgnunetutil.la \
1009 libgnunettransporttesting.la
1010
1011test_transport_api_tcp_SOURCES = \
1012 test_transport_api.c
1013test_transport_api_tcp_LDADD = \
1014 libgnunettransport.la \
1015 $(top_builddir)/src/hello/libgnunethello.la \
1016 $(top_builddir)/src/util/libgnunetutil.la \
1017 libgnunettransporttesting.la
1018
1019test_transport_api2_tcp_SOURCES = \
1020 test_transport_api2.c
1021test_transport_api2_tcp_LDADD = \
1022 $(top_builddir)/src/hello/libgnunethello.la \
1023 $(top_builddir)/src/util/libgnunetutil.la \
1024 libgnunettransporttesting2.la
1025
1026test_transport_api_restart_1peer_SOURCES = \
1027 test_transport_api_restart_reconnect.c
1028test_transport_api_restart_1peer_LDADD = \
1029 libgnunettransport.la \
1030 $(top_builddir)/src/hello/libgnunethello.la \
1031 $(top_builddir)/src/ats/libgnunetats.la \
1032 $(top_builddir)/src/statistics/libgnunetstatistics.la \
1033 $(top_builddir)/src/util/libgnunetutil.la \
1034 libgnunettransporttesting.la
1035
1036test_transport_api_restart_2peers_SOURCES = \
1037 test_transport_api_restart_reconnect.c
1038test_transport_api_restart_2peers_LDADD = \
1039 libgnunettransport.la \
1040 $(top_builddir)/src/hello/libgnunethello.la \
1041 $(top_builddir)/src/ats/libgnunetats.la \
1042$(top_builddir)/src/statistics/libgnunetstatistics.la \
1043 $(top_builddir)/src/util/libgnunetutil.la \
1044 libgnunettransporttesting.la
1045
1046test_transport_api_limited_sockets_tcp_SOURCES = \
1047 test_transport_api_limited_sockets.c
1048test_transport_api_limited_sockets_tcp_LDADD = \
1049 libgnunettransport.la \
1050 $(top_builddir)/src/hello/libgnunethello.la \
1051 $(top_builddir)/src/util/libgnunetutil.la \
1052 libgnunettransporttesting.la
1053
1054test_transport_api_tcp_nat_SOURCES = \
1055 test_transport_api.c
1056test_transport_api_tcp_nat_LDADD = \
1057 libgnunettransport.la \
1058 $(top_builddir)/src/hello/libgnunethello.la \
1059 $(top_builddir)/src/util/libgnunetutil.la \
1060 libgnunettransporttesting.la
1061
1062test_transport_api_manipulation_send_tcp_SOURCES = \
1063 test_transport_api_manipulation_send_tcp.c
1064test_transport_api_manipulation_send_tcp_LDADD = \
1065 libgnunettransport.la \
1066 $(top_builddir)/src/hello/libgnunethello.la \
1067 $(top_builddir)/src/util/libgnunetutil.la \
1068 libgnunettransporttesting.la
1069
1070test_transport_api_manipulation_recv_tcp_SOURCES = \
1071 test_transport_api_manipulation_recv_tcp.c
1072test_transport_api_manipulation_recv_tcp_LDADD = \
1073 libgnunettransport.la \
1074 $(top_builddir)/src/hello/libgnunethello.la \
1075 $(top_builddir)/src/util/libgnunetutil.la \
1076 libgnunettransporttesting.la
1077
1078test_transport_api_manipulation_cfg_SOURCES = \
1079 test_transport_api_manipulation_cfg.c
1080test_transport_api_manipulation_cfg_LDADD = \
1081 libgnunettransport.la \
1082 $(top_builddir)/src/hello/libgnunethello.la \
1083 $(top_builddir)/src/util/libgnunetutil.la \
1084 libgnunettransporttesting.la
1085
1086test_transport_api_reliability_tcp_SOURCES = \
1087 test_transport_api_reliability.c
1088test_transport_api_reliability_tcp_LDADD = \
1089 libgnunettransport.la \
1090 $(top_builddir)/src/hello/libgnunethello.la \
1091 $(top_builddir)/src/util/libgnunetutil.la \
1092 libgnunettransporttesting.la
1093
1094test_transport_api_timeout_tcp_SOURCES = \
1095 test_transport_api_timeout.c
1096test_transport_api_timeout_tcp_LDADD = \
1097 libgnunettransport.la \
1098 $(top_builddir)/src/hello/libgnunethello.la \
1099 $(top_builddir)/src/util/libgnunetutil.la \
1100 libgnunettransporttesting.la
1101
1102test_transport_api_timeout_unix_SOURCES = \
1103 test_transport_api_timeout.c
1104test_transport_api_timeout_unix_LDADD = \
1105 libgnunettransport.la \
1106 $(top_builddir)/src/hello/libgnunethello.la \
1107 $(top_builddir)/src/util/libgnunetutil.la \
1108 libgnunettransporttesting.la
1109
1110test_transport_api_timeout_wlan_SOURCES = \
1111 test_transport_api_timeout.c
1112test_transport_api_timeout_wlan_LDADD = \
1113 libgnunettransport.la \
1114 $(top_builddir)/src/hello/libgnunethello.la \
1115 $(top_builddir)/src/util/libgnunetutil.la \
1116 libgnunettransporttesting.la
1117
1118test_transport_api_timeout_bluetooth_SOURCES = \
1119 test_transport_api_timeout.c
1120test_transport_api_timeout_bluetooth_LDADD = \
1121 libgnunettransport.la \
1122 $(top_builddir)/src/hello/libgnunethello.la \
1123 $(top_builddir)/src/util/libgnunetutil.la \
1124 libgnunettransporttesting.la
1125
1126test_transport_api_reliability_tcp_nat_SOURCES = \
1127 test_transport_api_reliability.c
1128test_transport_api_reliability_tcp_nat_LDADD = \
1129 libgnunettransport.la \
1130 $(top_builddir)/src/hello/libgnunethello.la \
1131 $(top_builddir)/src/util/libgnunetutil.la \
1132 libgnunettransporttesting.la
1133
1134test_transport_api_reliability_bluetooth_SOURCES = \
1135 test_transport_api_reliability.c
1136test_transport_api_reliability_bluetooth_LDADD = \
1137 libgnunettransport.la \
1138 $(top_builddir)/src/hello/libgnunethello.la \
1139 $(top_builddir)/src/util/libgnunetutil.la \
1140 libgnunettransporttesting.la
1141
1142test_transport_api_reliability_wlan_SOURCES = \
1143 test_transport_api_reliability.c
1144test_transport_api_reliability_wlan_LDADD = \
1145 libgnunettransport.la \
1146 $(top_builddir)/src/hello/libgnunethello.la \
1147 $(top_builddir)/src/util/libgnunetutil.la \
1148 libgnunettransporttesting.la
1149
1150if HAVE_EXPERIMENTAL
1151test_transport_api_udp_SOURCES = \
1152 test_transport_api.c
1153test_transport_api_udp_LDADD = \
1154 libgnunettransport.la \
1155 $(top_builddir)/src/hello/libgnunethello.la \
1156 $(top_builddir)/src/util/libgnunetutil.la \
1157 libgnunettransporttesting.la
1158
1159test_transport_api_timeout_udp_SOURCES = \
1160 test_transport_api_timeout.c
1161test_transport_api_timeout_udp_LDADD = \
1162 libgnunettransport.la \
1163 $(top_builddir)/src/hello/libgnunethello.la \
1164 $(top_builddir)/src/util/libgnunetutil.la \
1165 libgnunettransporttesting.la
1166
1167test_transport_api_udp_nat_SOURCES = \
1168 test_transport_api.c
1169test_transport_api_udp_nat_LDADD = \
1170 libgnunettransport.la \
1171 $(top_builddir)/src/hello/libgnunethello.la \
1172 $(top_builddir)/src/util/libgnunetutil.la \
1173 libgnunettransporttesting.la
1174endif
1175
1176test_transport_api_unix_SOURCES = \
1177 test_transport_api.c
1178test_transport_api_unix_LDADD = \
1179 libgnunettransport.la \
1180 $(top_builddir)/src/hello/libgnunethello.la \
1181 $(top_builddir)/src/util/libgnunetutil.la \
1182 libgnunettransporttesting.la
1183
1184test_transport_api_unix_abstract_SOURCES = \
1185 test_transport_api.c
1186test_transport_api_unix_abstract_LDADD = \
1187 libgnunettransport.la \
1188 $(top_builddir)/src/hello/libgnunethello.la \
1189 $(top_builddir)/src/util/libgnunetutil.la \
1190 libgnunettransporttesting.la
1191
1192# HTTP tests
1193test_transport_api_http_SOURCES = \
1194 test_transport_api.c
1195test_transport_api_http_LDADD = \
1196 libgnunettransport.la \
1197 $(top_builddir)/src/hello/libgnunethello.la \
1198 $(top_builddir)/src/util/libgnunetutil.la \
1199 libgnunettransporttesting.la
1200
1201test_transport_api_http_reverse_SOURCES = \
1202 test_transport_api.c
1203test_transport_api_http_reverse_LDADD = \
1204 libgnunettransport.la \
1205 $(top_builddir)/src/hello/libgnunethello.la \
1206 $(top_builddir)/src/util/libgnunetutil.la \
1207 libgnunettransporttesting.la
1208
1209test_transport_api_timeout_http_SOURCES = \
1210 test_transport_api_timeout.c
1211test_transport_api_timeout_http_LDADD = \
1212 libgnunettransport.la \
1213 $(top_builddir)/src/hello/libgnunethello.la \
1214 $(top_builddir)/src/util/libgnunetutil.la \
1215 libgnunettransporttesting.la
1216
1217test_transport_api_reliability_http_SOURCES = \
1218 test_transport_api_reliability.c
1219test_transport_api_reliability_http_LDADD = \
1220 libgnunettransport.la \
1221 $(top_builddir)/src/hello/libgnunethello.la \
1222 $(top_builddir)/src/util/libgnunetutil.la \
1223 libgnunettransporttesting.la
1224
1225test_transport_api_reliability_http_xhr_SOURCES = \
1226 test_transport_api_reliability.c
1227test_transport_api_reliability_http_xhr_LDADD = \
1228 libgnunettransport.la \
1229 $(top_builddir)/src/hello/libgnunethello.la \
1230 $(top_builddir)/src/util/libgnunetutil.la \
1231 libgnunettransporttesting.la
1232
1233test_quota_compliance_http_SOURCES = \
1234 test_quota_compliance.c
1235test_quota_compliance_http_LDADD = \
1236 libgnunettransport.la \
1237 $(top_builddir)/src/hello/libgnunethello.la \
1238 $(top_builddir)/src/ats/libgnunetats.la \
1239 $(top_builddir)/src/nt/libgnunetnt.la \
1240 $(top_builddir)/src/util/libgnunetutil.la \
1241 libgnunettransporttesting.la
1242
1243test_quota_compliance_http_asymmetric_SOURCES = \
1244 test_quota_compliance.c
1245test_quota_compliance_http_asymmetric_LDADD = \
1246 libgnunettransport.la \
1247 $(top_builddir)/src/hello/libgnunethello.la \
1248 $(top_builddir)/src/ats/libgnunetats.la \
1249 $(top_builddir)/src/nt/libgnunetnt.la \
1250 $(top_builddir)/src/util/libgnunetutil.la \
1251 libgnunettransporttesting.la
1252
1253test_quota_compliance_https_SOURCES = \
1254 test_quota_compliance.c
1255test_quota_compliance_https_LDADD = \
1256 libgnunettransport.la \
1257 $(top_builddir)/src/hello/libgnunethello.la \
1258 $(top_builddir)/src/ats/libgnunetats.la \
1259 $(top_builddir)/src/nt/libgnunetnt.la \
1260 $(top_builddir)/src/util/libgnunetutil.la \
1261 libgnunettransporttesting.la
1262
1263test_quota_compliance_https_asymmetric_SOURCES = \
1264 test_quota_compliance.c
1265test_quota_compliance_https_asymmetric_LDADD = \
1266 libgnunettransport.la \
1267 $(top_builddir)/src/hello/libgnunethello.la \
1268 $(top_builddir)/src/ats/libgnunetats.la \
1269 $(top_builddir)/src/nt/libgnunetnt.la \
1270 $(top_builddir)/src/util/libgnunetutil.la \
1271 libgnunettransporttesting.la
1272
1273# HTTPS tests
1274test_transport_api_https_SOURCES = \
1275 test_transport_api.c
1276test_transport_api_https_LDADD = \
1277 libgnunettransport.la \
1278 $(top_builddir)/src/hello/libgnunethello.la \
1279 $(top_builddir)/src/util/libgnunetutil.la \
1280 libgnunettransporttesting.la
1281
1282test_transport_api_timeout_https_SOURCES = \
1283 test_transport_api_timeout.c
1284test_transport_api_timeout_https_LDADD = \
1285 libgnunettransport.la \
1286 $(top_builddir)/src/hello/libgnunethello.la \
1287 $(top_builddir)/src/util/libgnunetutil.la \
1288 libgnunettransporttesting.la
1289
1290
1291test_transport_api_reliability_https_SOURCES = \
1292 test_transport_api_reliability.c
1293test_transport_api_reliability_https_LDADD = \
1294 libgnunettransport.la \
1295 $(top_builddir)/src/hello/libgnunethello.la \
1296 $(top_builddir)/src/util/libgnunetutil.la \
1297 libgnunettransporttesting.la
1298
1299test_transport_api_reliability_https_xhr_SOURCES = \
1300 test_transport_api_reliability.c
1301test_transport_api_reliability_https_xhr_LDADD = \
1302 libgnunettransport.la \
1303 $(top_builddir)/src/hello/libgnunethello.la \
1304 $(top_builddir)/src/util/libgnunetutil.la \
1305 libgnunettransporttesting.la
1306
1307test_transport_api_reliability_unix_SOURCES = \
1308 test_transport_api_reliability.c
1309test_transport_api_reliability_unix_LDADD = \
1310 libgnunettransport.la \
1311 $(top_builddir)/src/hello/libgnunethello.la \
1312 $(top_builddir)/src/util/libgnunetutil.la \
1313 libgnunettransporttesting.la
1314
1315if HAVE_EXPERIMENTAL
1316test_transport_api_reliability_udp_SOURCES = \
1317 test_transport_api_reliability.c
1318test_transport_api_reliability_udp_LDADD = \
1319 libgnunettransport.la \
1320 $(top_builddir)/src/hello/libgnunethello.la \
1321 $(top_builddir)/src/util/libgnunetutil.la \
1322 libgnunettransporttesting.la
1323endif
1324
1325if LINUX
1326test_transport_api_wlan_SOURCES = \
1327 test_transport_api.c
1328test_transport_api_wlan_LDADD = \
1329 libgnunettransport.la \
1330 $(top_builddir)/src/hello/libgnunethello.la \
1331 $(top_builddir)/src/util/libgnunetutil.la \
1332 libgnunettransporttesting.la
1333endif
1334
1335if LINUX
1336if HAVE_LIBBLUETOOTH
1337test_transport_api_bluetooth_SOURCES = \
1338 test_transport_api.c
1339test_transport_api_bluetooth_LDADD = \
1340 libgnunettransport.la \
1341 $(top_builddir)/src/hello/libgnunethello.la \
1342 $(top_builddir)/src/util/libgnunetutil.la \
1343 libgnunettransporttesting.la
1344endif
1345endif
1346
1347test_transport_address_switch_tcp_SOURCES = \
1348 test_transport_address_switch.c
1349test_transport_address_switch_tcp_LDADD = \
1350 libgnunettransport.la \
1351 $(top_builddir)/src/hello/libgnunethello.la \
1352 $(top_builddir)/src/statistics/libgnunetstatistics.la \
1353 $(top_builddir)/src/util/libgnunetutil.la \
1354 libgnunettransporttesting.la
1355
1356if HAVE_EXPERIMENTAL
1357test_transport_address_switch_udp_SOURCES = \
1358 test_transport_address_switch.c
1359test_transport_address_switch_udp_LDADD = \
1360 libgnunettransport.la \
1361 $(top_builddir)/src/hello/libgnunethello.la \
1362 $(top_builddir)/src/statistics/libgnunetstatistics.la \
1363 $(top_builddir)/src/util/libgnunetutil.la \
1364 libgnunettransporttesting.la
1365endif
1366
1367 test_transport_address_switch_http_SOURCES = \
1368 test_transport_address_switch.c
1369test_transport_address_switch_http_LDADD = \
1370 libgnunettransport.la \
1371 $(top_builddir)/src/hello/libgnunethello.la \
1372 $(top_builddir)/src/statistics/libgnunetstatistics.la \
1373 $(top_builddir)/src/util/libgnunetutil.la \
1374 libgnunettransporttesting.la
1375
1376 test_transport_address_switch_https_SOURCES = \
1377 test_transport_address_switch.c
1378test_transport_address_switch_https_LDADD = \
1379 libgnunettransport.la \
1380 $(top_builddir)/src/hello/libgnunethello.la \
1381 $(top_builddir)/src/statistics/libgnunetstatistics.la \
1382 $(top_builddir)/src/util/libgnunetutil.la \
1383 libgnunettransporttesting.la
1384
1385test_quota_compliance_tcp_SOURCES = \
1386 test_quota_compliance.c
1387test_quota_compliance_tcp_LDADD = \
1388 libgnunettransport.la \
1389 $(top_builddir)/src/hello/libgnunethello.la \
1390 $(top_builddir)/src/ats/libgnunetats.la \
1391 $(top_builddir)/src/nt/libgnunetnt.la \
1392 $(top_builddir)/src/util/libgnunetutil.la \
1393 libgnunettransporttesting.la
1394
1395test_quota_compliance_tcp_asymmetric_SOURCES = \
1396 test_quota_compliance.c
1397test_quota_compliance_tcp_asymmetric_LDADD = \
1398 libgnunettransport.la \
1399 $(top_builddir)/src/hello/libgnunethello.la \
1400 $(top_builddir)/src/nt/libgnunetnt.la \
1401 $(top_builddir)/src/ats/libgnunetats.la \
1402 $(top_builddir)/src/util/libgnunetutil.la \
1403 libgnunettransporttesting.la
1404
1405if HAVE_EXPERIMENTAL
1406test_quota_compliance_udp_SOURCES = \
1407 test_quota_compliance.c
1408test_quota_compliance_udp_LDADD = \
1409 libgnunettransport.la \
1410 $(top_builddir)/src/hello/libgnunethello.la \
1411 $(top_builddir)/src/ats/libgnunetats.la \
1412 $(top_builddir)/src/nt/libgnunetnt.la \
1413 $(top_builddir)/src/util/libgnunetutil.la \
1414 libgnunettransporttesting.la
1415endif
1416
1417test_quota_compliance_unix_SOURCES = \
1418 test_quota_compliance.c
1419test_quota_compliance_unix_LDADD = \
1420 libgnunettransport.la \
1421 $(top_builddir)/src/hello/libgnunethello.la \
1422 $(top_builddir)/src/ats/libgnunetats.la \
1423 $(top_builddir)/src/nt/libgnunetnt.la \
1424 $(top_builddir)/src/util/libgnunetutil.la \
1425 libgnunettransporttesting.la
1426
1427test_quota_compliance_unix_asymmetric_SOURCES = \
1428 test_quota_compliance.c
1429test_quota_compliance_unix_asymmetric_LDADD = \
1430 libgnunettransport.la \
1431 $(top_builddir)/src/hello/libgnunethello.la \
1432 $(top_builddir)/src/ats/libgnunetats.la \
1433 $(top_builddir)/src/nt/libgnunetnt.la \
1434 $(top_builddir)/src/util/libgnunetutil.la \
1435 libgnunettransporttesting.la
1436
1437test_quota_compliance_wlan_SOURCES = \
1438 test_quota_compliance.c
1439test_quota_compliance_wlan_LDADD = \
1440 libgnunettransport.la \
1441 $(top_builddir)/src/hello/libgnunethello.la \
1442 $(top_builddir)/src/ats/libgnunetats.la \
1443 $(top_builddir)/src/nt/libgnunetnt.la \
1444 $(top_builddir)/src/util/libgnunetutil.la \
1445 libgnunettransporttesting.la
1446
1447test_quota_compliance_wlan_asymmetric_SOURCES = \
1448 test_quota_compliance.c
1449test_quota_compliance_wlan_asymmetric_LDADD = \
1450 libgnunettransport.la \
1451 $(top_builddir)/src/hello/libgnunethello.la \
1452 $(top_builddir)/src/ats/libgnunetats.la \
1453 $(top_builddir)/src/nt/libgnunetnt.la \
1454 $(top_builddir)/src/util/libgnunetutil.la \
1455 libgnunettransporttesting.la
1456
1457test_quota_compliance_bluetooth_SOURCES = \
1458 test_quota_compliance.c
1459test_quota_compliance_bluetooth_LDADD = \
1460 libgnunettransport.la \
1461 $(top_builddir)/src/hello/libgnunethello.la \
1462 $(top_builddir)/src/ats/libgnunetats.la \
1463 $(top_builddir)/src/nt/libgnunetnt.la \
1464 $(top_builddir)/src/util/libgnunetutil.la \
1465 libgnunettransporttesting.la
1466
1467test_quota_compliance_bluetooth_asymmetric_SOURCES = \
1468 test_quota_compliance.c
1469test_quota_compliance_bluetooth_asymmetric_LDADD = \
1470 libgnunettransport.la \
1471 $(top_builddir)/src/hello/libgnunethello.la \
1472 $(top_builddir)/src/ats/libgnunetats.la \
1473 $(top_builddir)/src/nt/libgnunetnt.la \
1474 $(top_builddir)/src/util/libgnunetutil.la \
1475 libgnunettransporttesting.la
1476
1477test_transport_api_multi_SOURCES = \
1478 test_transport_api.c
1479test_transport_api_multi_LDADD = \
1480 libgnunettransport.la \
1481 $(top_builddir)/src/hello/libgnunethello.la \
1482 $(top_builddir)/src/util/libgnunetutil.la \
1483 libgnunettransporttesting.la
1484
1485test_transport_api_monitor_peers_SOURCES = \
1486 test_transport_api_monitor_peers.c
1487test_transport_api_monitor_peers_LDADD = \
1488 libgnunettransport.la \
1489 $(top_builddir)/src/hello/libgnunethello.la \
1490 $(top_builddir)/src/util/libgnunetutil.la \
1491 libgnunettransporttesting.la
1492
1493test_transport_api_slow_ats_SOURCES = \
1494 test_transport_api.c
1495test_transport_api_slow_ats_LDADD = \
1496 libgnunettransport.la \
1497 $(top_builddir)/src/hello/libgnunethello.la \
1498 $(top_builddir)/src/util/libgnunetutil.la \
1499 libgnunettransporttesting.la
1500
1501
1502EXTRA_DIST = \
1503gnunet-transport-certificate-creation.in \
1504communicator-unix.conf \
1505test_plugin_hostkey \
1506test_plugin_hostkey.ecc \
1507test_delay \
1508template_cfg_peer1.conf\
1509template_cfg_peer2.conf\
1510test_plugin_transport_data.conf\
1511test_plugin_transport_data_udp.conf\
1512test_quota_compliance_data.conf\
1513test_quota_compliance_http_peer1.conf\
1514test_quota_compliance_http_peer2.conf\
1515test_quota_compliance_https_peer1.conf\
1516test_quota_compliance_https_peer2.conf\
1517test_quota_compliance_tcp_peer1.conf\
1518test_quota_compliance_tcp_peer2.conf\
1519test_quota_compliance_udp_peer1.conf\
1520test_quota_compliance_udp_peer2.conf\
1521test_quota_compliance_unix_peer1.conf\
1522test_quota_compliance_unix_peer2.conf\
1523test_quota_compliance_wlan_peer1.conf\
1524test_quota_compliance_wlan_peer2.conf\
1525test_quota_compliance_bluetooth_peer1.conf\
1526test_quota_compliance_bluetooth_peer2.conf\
1527test_quota_compliance_http_asymmetric_peer1.conf\
1528test_quota_compliance_http_asymmetric_peer2.conf\
1529test_quota_compliance_https_asymmetric_peer1.conf\
1530test_quota_compliance_https_asymmetric_peer2.conf\
1531test_quota_compliance_tcp_asymmetric_peer1.conf\
1532test_quota_compliance_tcp_asymmetric_peer2.conf\
1533test_quota_compliance_unix_asymmetric_peer1.conf\
1534test_quota_compliance_unix_asymmetric_peer2.conf\
1535test_quota_compliance_wlan_asymmetric_peer1.conf\
1536test_quota_compliance_wlan_asymmetric_peer2.conf\
1537test_quota_compliance_bluetooth_asymmetric_peer1.conf\
1538test_quota_compliance_bluetooth_asymmetric_peer2.conf\
1539test_transport_api_data.conf\
1540test_transport_api_blacklisting_tcp_peer1.conf \
1541test_transport_api_blacklisting_tcp_peer2.conf \
1542test_transport_api_http_peer1.conf\
1543test_transport_api_http_peer2.conf\
1544test_transport_api_https_peer1.conf\
1545test_transport_api_https_peer2.conf\
1546test_transport_api_limited_sockets_tcp_peer1.conf\
1547test_transport_api_limited_sockets_tcp_peer2.conf\
1548test_transport_api_timeout_tcp_peer1.conf\
1549test_transport_api_timeout_tcp_peer2.conf\
1550test_transport_api_multi_peer1.conf\
1551test_transport_api_multi_peer2.conf\
1552test_transport_api_restart_1peer_peer1.conf\
1553test_transport_api_restart_1peer_peer2.conf\
1554test_transport_api_reliability_http_peer1.conf\
1555test_transport_api_reliability_http_peer2.conf\
1556test_transport_api_reliability_https_peer1.conf\
1557test_transport_api_reliability_https_peer2.conf\
1558test_transport_api_reliability_tcp_nat_peer1.conf\
1559test_transport_api_reliability_tcp_nat_peer2.conf\
1560test_transport_api_reliability_tcp_peer1.conf\
1561test_transport_api_reliability_tcp_peer2.conf\
1562test_transport_api_reliability_wlan_peer1.conf\
1563test_transport_api_reliability_wlan_peer2.conf\
1564test_transport_api_reliability_bluetooth_peer1.conf\
1565test_transport_api_reliability_bluetooth_peer2.conf\
1566test_transport_api_manipulation_send_tcp_peer1.conf\
1567test_transport_api_manipulation_send_tcp_peer2.conf\
1568test_transport_api_manipulation_recv_tcp_peer1.conf\
1569test_transport_api_manipulation_recv_tcp_peer2.conf\
1570test_transport_api_manipulation_cfg_peer1.conf\
1571test_transport_api_manipulation_cfg_peer2.conf\
1572test_transport_api_restart_1peer_peer1.conf\
1573test_transport_api_restart_1peer_peer2.conf\
1574test_transport_api_restart_2peers_peer1.conf\
1575test_transport_api_restart_2peers_peer2.conf\
1576test_transport_api_tcp_nat_peer1.conf\
1577test_transport_api_tcp_nat_peer2.conf\
1578test_transport_api_tcp_peer1.conf\
1579test_transport_api_tcp_peer2.conf\
1580test_transport_api2_tcp_peer1.conf\
1581test_transport_api2_tcp_peer2.conf\
1582test_transport_api_udp_nat_peer1.conf\
1583test_transport_api_udp_nat_peer2.conf\
1584test_transport_api_udp_peer1.conf\
1585test_transport_api_udp_peer2.conf\
1586test_transport_api_timeout_udp_peer1.conf\
1587test_transport_api_timeout_udp_peer2.conf\
1588test_transport_api_unix_peer1.conf\
1589test_transport_api_unix_peer2.conf\
1590test_transport_api_unix_abstract_peer1.conf \
1591test_transport_api_unix_abstract_peer2.conf \
1592test_transport_api_timeout_unix_peer1.conf\
1593test_transport_api_timeout_unix_peer2.conf\
1594test_transport_api_timeout_wlan_peer1.conf \
1595test_transport_api_timeout_wlan_peer2.conf \
1596test_transport_api_timeout_bluetooth_peer1.conf\
1597test_transport_api_timeout_bluetooth_peer2.conf\
1598test_transport_api_reliability_udp_peer1.conf\
1599test_transport_api_reliability_udp_peer2.conf\
1600test_transport_api_reliability_http_xhr_peer1.conf\
1601test_transport_api_reliability_http_xhr_peer2.conf\
1602test_transport_api_reliability_https_xhr_peer1.conf\
1603test_transport_api_reliability_https_xhr_peer2.conf\
1604test_transport_api_reliability_unix_peer1.conf\
1605test_transport_api_reliability_unix_peer2.conf\
1606test_transport_api_reliability_wlan_peer1.conf\
1607test_transport_api_reliability_wlan_peer2.conf\
1608test_transport_api_unreliability_wlan_peer1.conf\
1609test_transport_api_unreliability_wlan_peer2.conf\
1610test_transport_api_reliability_bluetooth_peer1.conf\
1611test_transport_api_reliability_bluetooth_peer2.conf\
1612test_transport_api_wlan_peer1.conf\
1613test_transport_api_wlan_peer2.conf\
1614test_transport_api_bluetooth_peer1.conf\
1615test_transport_api_bluetooth_peer2.conf\
1616test_transport_api_monitor_peers_peer1.conf\
1617test_transport_api_monitor_peers_peer2.conf\
1618test_transport_api_monitor_validation_peer1.conf\
1619test_transport_api_monitor_validation_peer2.conf\
1620test_transport_defaults.conf\
1621test_transport_api_disconnect_tcp_peer1.conf\
1622test_transport_api_disconnect_tcp_peer2.conf\
1623test_transport_api_timeout_http_peer1.conf\
1624test_transport_api_timeout_http_peer2.conf\
1625test_transport_api_timeout_https_peer1.conf\
1626test_transport_api_timeout_https_peer2.conf\
1627test_transport_blacklisting_cfg_peer1.conf \
1628test_transport_blacklisting_cfg_peer2.conf \
1629test_transport_blacklisting_cfg_blp_peer1_full.conf\
1630test_transport_blacklisting_cfg_blp_peer1_plugin.conf \
1631test_transport_blacklisting_cfg_blp_peer2_full.conf\
1632test_transport_blacklisting_cfg_blp_peer2_plugin.conf \
1633test_transport_blacklisting_cfg_blp_peer1_multiple_plugins.conf \
1634test_transport_blacklisting_cfg_blp_peer2_multiple_plugins.conf \
1635test_transport_api_http_reverse_peer1.conf \
1636test_transport_api_http_reverse_peer2.conf \
1637perf_tcp_peer1.conf \
1638perf_tcp_peer2.conf \
1639test_transport_api_slow_ats_peer1.conf \
1640test_transport_api_slow_ats_peer2.conf \
1641 tcp_connection_legacy.c \
1642 tcp_server_mst_legacy.c \
1643 tcp_server_legacy.c \
1644 tcp_service_legacy.c \
1645test_communicator_unix_basic_peer1.conf \
1646test_communicator_unix_basic_peer2.conf \
1647test_communicator_tcp_basic_peer1.conf \
1648test_communicator_tcp_basic_peer2.conf \
1649test_communicator_udp_basic_peer1.conf \
1650test_communicator_udp_basic_peer2.conf \
1651test_communicator_tcp_rekey_peer1.conf \
1652test_communicator_tcp_rekey_peer2.conf \
1653test_communicator_udp_rekey_peer1.conf \
1654test_communicator_udp_rekey_peer2.conf \
1655test_communicator_udp_backchannel_peer1.conf \
1656test_communicator_udp_backchannel_peer2.conf \
1657test_communicator_tcp_bidirect_peer1.conf \
1658test_communicator_tcp_bidirect_peer2.conf