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