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