aboutsummaryrefslogtreecommitdiff
path: root/src/transport/Makefile.am
diff options
context:
space:
mode:
authorMartin Schanzenbach <schanzen@gnunet.org>2023-10-04 22:52:00 +0200
committerMartin Schanzenbach <schanzen@gnunet.org>2023-10-04 22:52:00 +0200
commit5df04510362413a6c215365879058f5c445e1f3c (patch)
tree3c17f355f98529ba36cd4626b723240a7ef429d2 /src/transport/Makefile.am
parent9ff663cc02f81cd842fb07e7c29c44a809368423 (diff)
downloadgnunet-5df04510362413a6c215365879058f5c445e1f3c.tar.gz
gnunet-5df04510362413a6c215365879058f5c445e1f3c.zip
Remove most of old transport, ATS and PEERINFO. Disable TESTBED and related tests
Diffstat (limited to 'src/transport/Makefile.am')
-rw-r--r--src/transport/Makefile.am1339
1 files changed, 43 insertions, 1296 deletions
diff --git a/src/transport/Makefile.am b/src/transport/Makefile.am
index d7d25b7b0..fab32146d 100644
--- a/src/transport/Makefile.am
+++ b/src/transport/Makefile.am
@@ -8,121 +8,26 @@ pkgcfgdir= $(pkgdatadir)/config.d/
8libexecdir= $(pkglibdir)/libexec/ 8libexecdir= $(pkglibdir)/libexec/
9 9
10pkgcfg_DATA = \ 10pkgcfg_DATA = \
11 transport.conf \ 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 12
42if USE_COVERAGE 13if USE_COVERAGE
43 AM_CFLAGS = --coverage -O0 14 AM_CFLAGS = --coverage -O0
44endif 15endif
45 16
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 = \ 17noinst_PROGRAMS = \
91 test_transport_start_with_config \ 18 test_transport_start_with_config \
92 gnunet-transport-profiler \ 19 gnunet-communicator-udp
93 gnunet-communicator-udp \
94 $(WLAN_BIN_SENDER) \
95 $(WLAN_BIN_RECEIVER)
96 20
97TESTING_LIBS = \ 21TESTING_LIBS = \
98 libgnunettransporttesting.la \
99 libgnunettransporttesting2.la 22 libgnunettransporttesting2.la
100 23
101lib_LTLIBRARIES = \ 24lib_LTLIBRARIES = \
102 libgnunettransport.la \
103 libgnunettransportapplication.la \ 25 libgnunettransportapplication.la \
104 libgnunettransportcore.la \ 26 libgnunettransportcore.la \
105 libgnunettransportcommunicator.la \ 27 libgnunettransportcommunicator.la \
106 libgnunettransportmonitor.la \ 28 libgnunettransportmonitor.la \
107 $(TESTING_LIBS) 29 $(TESTING_LIBS)
108 30
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 = \ 31libgnunettransporttesting2_la_SOURCES = \
127 transport_api_traits.c \ 32 transport_api_traits.c \
128 transport_api_cmd_connecting_peers.c \ 33 transport_api_cmd_connecting_peers.c \
@@ -143,7 +48,6 @@ libgnunettransporttesting2_la_LIBADD = \
143 libgnunettransportcore.la \ 48 libgnunettransportcore.la \
144 $(top_builddir)/src/arm/libgnunetarm.la \ 49 $(top_builddir)/src/arm/libgnunetarm.la \
145 $(top_builddir)/src/testing/libgnunettesting.la \ 50 $(top_builddir)/src/testing/libgnunettesting.la \
146 $(top_builddir)/src/ats/libgnunetats.la \
147 $(top_builddir)/src/hello/libgnunethello.la \ 51 $(top_builddir)/src/hello/libgnunethello.la \
148 $(top_builddir)/src/peerstore/libgnunetpeerstore.la \ 52 $(top_builddir)/src/peerstore/libgnunetpeerstore.la \
149 $(top_builddir)/src/util/libgnunetutil.la 53 $(top_builddir)/src/util/libgnunetutil.la
@@ -152,26 +56,6 @@ libgnunettransporttesting2_la_LDFLAGS = \
152 $(GN_LIB_LDFLAGS) \ 56 $(GN_LIB_LDFLAGS) \
153 -version-info 0:0:0 57 -version-info 0:0:0
154 58
155libgnunettransport_la_SOURCES = \
156 transport.h \
157 transport_api_address_to_string.c \
158 transport_api_blacklist.c \
159 transport_api_core.c \
160 transport_api_hello_get.c \
161 transport_api_manipulation.c \
162 transport_api_monitor_peers.c \
163 transport_api_monitor_plugins.c \
164 transport_api_offer_hello.c
165
166libgnunettransport_la_LIBADD = \
167 $(top_builddir)/src/hello/libgnunethello.la \
168 $(top_builddir)/src/ats/libgnunetats.la \
169 $(top_builddir)/src/util/libgnunetutil.la \
170 $(GN_LIBINTL)
171libgnunettransport_la_LDFLAGS = \
172 $(GN_LIB_LDFLAGS) \
173 -version-info 4:0:2
174
175libgnunettransportapplication_la_SOURCES = \ 59libgnunettransportapplication_la_SOURCES = \
176 transport_api2_application.c 60 transport_api2_application.c
177libgnunettransportapplication_la_LIBADD = \ 61libgnunettransportapplication_la_LIBADD = \
@@ -212,10 +96,6 @@ libgnunettransportmonitor_la_LDFLAGS = \
212 96
213 97
214libexec_PROGRAMS = \ 98libexec_PROGRAMS = \
215 $(WLAN_BIN) \
216 $(WLAN_BIN_DUMMY) \
217 $(BT_BIN) \
218 gnunet-service-transport \
219 gnunet-service-tng \ 99 gnunet-service-tng \
220 gnunet-communicator-unix \ 100 gnunet-communicator-unix \
221 gnunet-communicator-udp \ 101 gnunet-communicator-udp \
@@ -228,8 +108,8 @@ endif
228endif 108endif
229 109
230 110
231bin_PROGRAMS = \ 111#bin_PROGRAMS = \
232 gnunet-transport 112# gnunet-transport
233 113
234bin_SCRIPTS = \ 114bin_SCRIPTS = \
235 gnunet-transport-certificate-creation 115 gnunet-transport-certificate-creation
@@ -291,74 +171,22 @@ gnunet_communicator_quic_LDADD = \
291endif 171endif
292endif 172endif
293 173
294gnunet_helper_transport_wlan_SOURCES = \ 174#gnunet_transport_profiler_SOURCES = \
295 gnunet-helper-transport-wlan.c 175# gnunet-transport-profiler.c
296 176#gnunet_transport_profiler_LDADD = \
297gnunet_helper_transport_wlan_dummy_SOURCES = \ 177# libgnunettransport.la \
298 gnunet-helper-transport-wlan-dummy.c 178# $(top_builddir)/src/hello/libgnunethello.la \
299gnunet_helper_transport_wlan_dummy_LDADD = \ 179# $(top_builddir)/src/ats/libgnunetats.la \
300 $(top_builddir)/src/util/libgnunetutil.la 180# $(top_builddir)/src/util/libgnunetutil.la \
301 181# $(GN_LIBINTL)
302gnunet_transport_wlan_sender_SOURCES = \ 182
303 gnunet-transport-wlan-sender.c 183#gnunet_transport_SOURCES = \
304gnunet_transport_wlan_sender_LDADD = \ 184# gnunet-transport.c
305 $(top_builddir)/src/util/libgnunetutil.la 185#gnunet_transport_LDADD = \
306 186# libgnunettransport.la \
307gnunet_transport_wlan_receiver_SOURCES = \ 187# $(top_builddir)/src/hello/libgnunethello.la \
308 gnunet-transport-wlan-receiver.c 188# $(top_builddir)/src/util/libgnunetutil.la \
309gnunet_transport_wlan_receiver_LDADD = \ 189# $(GN_LIBINTL)
310 $(top_builddir)/src/util/libgnunetutil.la
311
312gnunet_helper_transport_bluetooth_SOURCES = \
313 gnunet-helper-transport-bluetooth.c
314
315gnunet_helper_transport_bluetooth_LDFLAGS = -lbluetooth
316
317
318gnunet_transport_profiler_SOURCES = \
319 gnunet-transport-profiler.c
320gnunet_transport_profiler_LDADD = \
321 libgnunettransport.la \
322 $(top_builddir)/src/hello/libgnunethello.la \
323 $(top_builddir)/src/ats/libgnunetats.la \
324 $(top_builddir)/src/util/libgnunetutil.la \
325 $(GN_LIBINTL)
326
327gnunet_transport_SOURCES = \
328 gnunet-transport.c
329gnunet_transport_LDADD = \
330 libgnunettransport.la \
331 $(top_builddir)/src/hello/libgnunethello.la \
332 $(top_builddir)/src/util/libgnunetutil.la \
333 $(GN_LIBINTL)
334
335gnunet_service_transport_SOURCES = \
336 gnunet-service-transport.c gnunet-service-transport.h \
337 gnunet-service-transport_ats.h gnunet-service-transport_ats.c \
338 gnunet-service-transport_hello.h gnunet-service-transport_hello.c \
339 gnunet-service-transport_neighbours.h gnunet-service-transport_neighbours.c \
340 gnunet-service-transport_plugins.h gnunet-service-transport_plugins.c \
341 gnunet-service-transport_validation.h gnunet-service-transport_validation.c \
342 gnunet-service-transport_manipulation.h gnunet-service-transport_manipulation.c
343# Note that while gnunet-service-transport does not use libgnunetnat
344# directly, we must link against it as GNUNET_NAT_mini_map_stop will
345# leave a 'dangling' task to process_unmap_output which will cause
346# a crash on unloading of a plugin unless the service links against
347# that library as well.
348gnunet_service_transport_LDADD = \
349 libgnunettransport.la \
350 $(top_builddir)/src/ats/libgnunetats.la \
351 $(top_builddir)/src/hello/libgnunethello.la \
352 $(top_builddir)/src/nt/libgnunetnt.la \
353 $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
354 $(top_builddir)/src/statistics/libgnunetstatistics.la \
355 $(top_builddir)/src/util/libgnunetutil.la \
356 $(GN_GLPK) \
357 $(GN_LIBINTL)
358gnunet_service_transport_CFLAGS = \
359 $(AM_CFLAGS)
360# -DANALYZE
361
362 190
363gnunet_service_tng_SOURCES = \ 191gnunet_service_tng_SOURCES = \
364 gnunet-service-tng.c 192 gnunet-service-tng.c
@@ -371,20 +199,12 @@ gnunet_service_tng_LDADD = \
371 $(GN_LIBINTL) 199 $(GN_LIBINTL)
372 200
373plugin_LTLIBRARIES = \ 201plugin_LTLIBRARIES = \
374 libgnunet_plugin_transport_tcp.la \
375 $(UNIX_PLUGIN_LA) \
376 $(HTTP_CLIENT_PLUGIN_LA) \
377 $(HTTPS_CLIENT_PLUGIN_LA) \
378 $(HTTP_SERVER_PLUGIN_LA) \
379 $(HTTPS_SERVER_PLUGIN_LA) \
380 $(WLAN_PLUGIN_LA) \
381 $(BT_PLUGIN_LA) \
382 libgnunet_test_transport_plugin_cmd_simple_send_performance.la \ 202 libgnunet_test_transport_plugin_cmd_simple_send_performance.la \
383 libgnunet_test_transport_plugin_cmd_nat_upnp.la \ 203 libgnunet_test_transport_plugin_cmd_nat_upnp.la \
384 libgnunet_test_transport_plugin_cmd_simple_send.la \ 204 libgnunet_test_transport_plugin_cmd_simple_send.la \
385 libgnunet_test_transport_plugin_cmd_simple_send_broadcast.la \ 205 libgnunet_test_transport_plugin_cmd_simple_send_broadcast.la \
386 libgnunet_test_transport_plugin_cmd_simple_send_dv.la \ 206 libgnunet_test_transport_plugin_cmd_simple_send_dv.la \
387 libgnunet_test_transport_plugin_cmd_udp_backchannel.la 207 libgnunet_test_transport_plugin_cmd_udp_backchannel.la
388 208
389libgnunet_test_transport_plugin_cmd_nat_upnp_la_SOURCES = \ 209libgnunet_test_transport_plugin_cmd_nat_upnp_la_SOURCES = \
390 test_transport_plugin_cmd_nat_upnp.c 210 test_transport_plugin_cmd_nat_upnp.c
@@ -396,7 +216,6 @@ libgnunet_test_transport_plugin_cmd_nat_upnp_la_LIBADD = \
396 $(top_builddir)/src/peerstore/libgnunetpeerstore.la \ 216 $(top_builddir)/src/peerstore/libgnunetpeerstore.la \
397 $(top_builddir)/src/statistics/libgnunetstatistics.la \ 217 $(top_builddir)/src/statistics/libgnunetstatistics.la \
398 $(top_builddir)/src/hello/libgnunethello.la \ 218 $(top_builddir)/src/hello/libgnunethello.la \
399 $(top_builddir)/src/ats/libgnunetats.la \
400 $(top_builddir)/src/arm/libgnunetarm.la \ 219 $(top_builddir)/src/arm/libgnunetarm.la \
401 $(top_builddir)/src/util/libgnunetutil.la \ 220 $(top_builddir)/src/util/libgnunetutil.la \
402 $(LTLIBINTL) 221 $(LTLIBINTL)
@@ -413,7 +232,6 @@ libgnunet_test_transport_plugin_cmd_udp_backchannel_la_LIBADD = \
413 $(top_builddir)/src/peerstore/libgnunetpeerstore.la \ 232 $(top_builddir)/src/peerstore/libgnunetpeerstore.la \
414 $(top_builddir)/src/statistics/libgnunetstatistics.la \ 233 $(top_builddir)/src/statistics/libgnunetstatistics.la \
415 $(top_builddir)/src/hello/libgnunethello.la \ 234 $(top_builddir)/src/hello/libgnunethello.la \
416 $(top_builddir)/src/ats/libgnunetats.la \
417 $(top_builddir)/src/arm/libgnunetarm.la \ 235 $(top_builddir)/src/arm/libgnunetarm.la \
418 $(top_builddir)/src/util/libgnunetutil.la \ 236 $(top_builddir)/src/util/libgnunetutil.la \
419 $(LTLIBINTL) 237 $(LTLIBINTL)
@@ -430,7 +248,6 @@ libgnunet_test_transport_plugin_cmd_simple_send_la_LIBADD = \
430 $(top_builddir)/src/peerstore/libgnunetpeerstore.la \ 248 $(top_builddir)/src/peerstore/libgnunetpeerstore.la \
431 $(top_builddir)/src/statistics/libgnunetstatistics.la \ 249 $(top_builddir)/src/statistics/libgnunetstatistics.la \
432 $(top_builddir)/src/hello/libgnunethello.la \ 250 $(top_builddir)/src/hello/libgnunethello.la \
433 $(top_builddir)/src/ats/libgnunetats.la \
434 $(top_builddir)/src/arm/libgnunetarm.la \ 251 $(top_builddir)/src/arm/libgnunetarm.la \
435 $(top_builddir)/src/util/libgnunetutil.la \ 252 $(top_builddir)/src/util/libgnunetutil.la \
436 $(LTLIBINTL) 253 $(LTLIBINTL)
@@ -447,7 +264,6 @@ libgnunet_test_transport_plugin_cmd_simple_send_performance_la_LIBADD = \
447 $(top_builddir)/src/peerstore/libgnunetpeerstore.la \ 264 $(top_builddir)/src/peerstore/libgnunetpeerstore.la \
448 $(top_builddir)/src/statistics/libgnunetstatistics.la \ 265 $(top_builddir)/src/statistics/libgnunetstatistics.la \
449 $(top_builddir)/src/hello/libgnunethello.la \ 266 $(top_builddir)/src/hello/libgnunethello.la \
450 $(top_builddir)/src/ats/libgnunetats.la \
451 $(top_builddir)/src/arm/libgnunetarm.la \ 267 $(top_builddir)/src/arm/libgnunetarm.la \
452 $(top_builddir)/src/util/libgnunetutil.la \ 268 $(top_builddir)/src/util/libgnunetutil.la \
453 $(LTLIBINTL) 269 $(LTLIBINTL)
@@ -464,7 +280,6 @@ libgnunet_test_transport_plugin_cmd_simple_send_broadcast_la_LIBADD = \
464 $(top_builddir)/src/peerstore/libgnunetpeerstore.la \ 280 $(top_builddir)/src/peerstore/libgnunetpeerstore.la \
465 $(top_builddir)/src/statistics/libgnunetstatistics.la \ 281 $(top_builddir)/src/statistics/libgnunetstatistics.la \
466 $(top_builddir)/src/hello/libgnunethello.la \ 282 $(top_builddir)/src/hello/libgnunethello.la \
467 $(top_builddir)/src/ats/libgnunetats.la \
468 $(top_builddir)/src/arm/libgnunetarm.la \ 283 $(top_builddir)/src/arm/libgnunetarm.la \
469 $(top_builddir)/src/util/libgnunetutil.la \ 284 $(top_builddir)/src/util/libgnunetutil.la \
470 $(LTLIBINTL) 285 $(LTLIBINTL)
@@ -481,313 +296,41 @@ libgnunet_test_transport_plugin_cmd_simple_send_dv_la_LIBADD = \
481 $(top_builddir)/src/peerstore/libgnunetpeerstore.la \ 296 $(top_builddir)/src/peerstore/libgnunetpeerstore.la \
482 $(top_builddir)/src/statistics/libgnunetstatistics.la \ 297 $(top_builddir)/src/statistics/libgnunetstatistics.la \
483 $(top_builddir)/src/hello/libgnunethello.la \ 298 $(top_builddir)/src/hello/libgnunethello.la \
484 $(top_builddir)/src/ats/libgnunetats.la \
485 $(top_builddir)/src/arm/libgnunetarm.la \ 299 $(top_builddir)/src/arm/libgnunetarm.la \
486 $(top_builddir)/src/util/libgnunetutil.la \ 300 $(top_builddir)/src/util/libgnunetutil.la \
487 $(LTLIBINTL) 301 $(LTLIBINTL)
488libgnunet_test_transport_plugin_cmd_simple_send_dv_la_LDFLAGS = \ 302libgnunet_test_transport_plugin_cmd_simple_send_dv_la_LDFLAGS = \
489 $(GN_PLUGIN_LDFLAGS) 303 $(GN_PLUGIN_LDFLAGS)
490 304
491if HAVE_EXPERIMENTAL
492plugin_LTLIBRARIES += \
493 libgnunet_plugin_transport_udp.la
494endif
495
496# Note: real plugins of course need to be added
497# to the plugin_LTLIBRARIES above
498noinst_LTLIBRARIES = \
499 libgnunet_plugin_transport_template.la
500
501libgnunet_plugin_transport_tcp_la_SOURCES = \
502 plugin_transport_tcp.c
503libgnunet_plugin_transport_tcp_la_LIBADD = \
504 $(top_builddir)/src/hello/libgnunethello.la \
505 $(top_builddir)/src/statistics/libgnunetstatistics.la \
506 $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
507 $(top_builddir)/src/nat/libgnunetnatnew.la \
508 $(top_builddir)/src/util/libgnunetutil.la \
509 $(LTLIBINTL)
510libgnunet_plugin_transport_tcp_la_LDFLAGS = \
511 $(GN_PLUGIN_LDFLAGS)
512
513libgnunet_plugin_transport_template_la_SOURCES = \
514 plugin_transport_template.c
515libgnunet_plugin_transport_template_la_LIBADD = \
516 $(top_builddir)/src/util/libgnunetutil.la \
517 $(LTLIBINTL)
518libgnunet_plugin_transport_template_la_LDFLAGS = \
519 $(GN_PLUGIN_LDFLAGS)
520
521libgnunet_plugin_transport_wlan_la_SOURCES = \
522 plugin_transport_wlan.c plugin_transport_wlan.h
523libgnunet_plugin_transport_wlan_la_LIBADD = \
524 $(top_builddir)/src/hello/libgnunethello.la \
525 $(top_builddir)/src/statistics/libgnunetstatistics.la \
526 $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
527 $(top_builddir)/src/fragmentation/libgnunetfragmentation.la \
528 $(top_builddir)/src/util/libgnunetutil.la
529libgnunet_plugin_transport_wlan_la_LDFLAGS = \
530 $(GN_PLUGIN_LDFLAGS)
531libgnunet_plugin_transport_wlan_la_CFLAGS = \
532 $(AM_CFLAGS) -DBUILD_WLAN
533
534libgnunet_plugin_transport_bluetooth_la_SOURCES = \
535 plugin_transport_wlan.c plugin_transport_wlan.h
536libgnunet_plugin_transport_bluetooth_la_LIBADD = \
537 $(top_builddir)/src/hello/libgnunethello.la \
538 $(top_builddir)/src/statistics/libgnunetstatistics.la \
539 $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
540 $(top_builddir)/src/fragmentation/libgnunetfragmentation.la \
541 $(top_builddir)/src/util/libgnunetutil.la
542libgnunet_plugin_transport_bluetooth_la_LDFLAGS = \
543 $(GN_PLUGIN_LDFLAGS)
544libgnunet_plugin_transport_bluetooth_la_CFLAGS = \
545 $(AM_CFLAGS) -DBUILD_BLUETOOTH
546
547if HAVE_EXPERIMENTAL
548libgnunet_plugin_transport_udp_la_SOURCES = \
549 plugin_transport_udp.c plugin_transport_udp.h \
550 plugin_transport_udp_broadcasting.c
551libgnunet_plugin_transport_udp_la_LIBADD = \
552 $(top_builddir)/src/hello/libgnunethello.la \
553 $(top_builddir)/src/fragmentation/libgnunetfragmentation.la \
554 $(top_builddir)/src/statistics/libgnunetstatistics.la \
555 $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
556 $(top_builddir)/src/nat/libgnunetnatnew.la \
557 $(top_builddir)/src/util/libgnunetutil.la \
558 $(LTLIBINTL)
559libgnunet_plugin_transport_udp_la_LDFLAGS = \
560 $(GN_PLUGIN_LDFLAGS)
561endif
562
563libgnunet_plugin_transport_unix_la_SOURCES = \
564 plugin_transport_unix.c
565libgnunet_plugin_transport_unix_la_LIBADD = \
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/util/libgnunetutil.la \
570 $(LTLIBINTL)
571libgnunet_plugin_transport_unix_la_LDFLAGS = \
572 $(GN_PLUGIN_LDFLAGS)
573
574
575libgnunet_plugin_transport_http_client_la_SOURCES = \
576 plugin_transport_http_client.c plugin_transport_http_common.c plugin_transport_http_common.h
577libgnunet_plugin_transport_http_client_la_LIBADD = \
578 $(top_builddir)/src/hello/libgnunethello.la \
579 $(top_builddir)/src/statistics/libgnunetstatistics.la \
580 $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
581 @LIBCURL@ \
582 $(top_builddir)/src/util/libgnunetutil.la
583libgnunet_plugin_transport_http_client_la_LDFLAGS = \
584 $(GN_LIBINTL) \
585 $(GN_PLUGIN_LDFLAGS)
586libgnunet_plugin_transport_http_client_la_CFLAGS = \
587 @LIBCURL_CPPFLAGS@ $(AM_CFLAGS)
588
589
590libgnunet_plugin_transport_http_server_la_SOURCES = \
591 plugin_transport_http_server.c plugin_transport_http_common.c
592libgnunet_plugin_transport_http_server_la_LIBADD = \
593 $(MHD_LIBS) \
594 $(top_builddir)/src/hello/libgnunethello.la \
595 $(top_builddir)/src/statistics/libgnunetstatistics.la \
596 $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
597 $(top_builddir)/src/nat/libgnunetnatnew.la \
598 $(top_builddir)/src/util/libgnunetutil.la
599libgnunet_plugin_transport_http_server_la_LDFLAGS = \
600 $(GN_LIBINTL) \
601 $(GN_PLUGIN_LDFLAGS)
602libgnunet_plugin_transport_http_server_la_CFLAGS = \
603 $(MHD_CFLAGS) $(AM_CFLAGS)
604
605libgnunet_plugin_transport_https_client_la_SOURCES = \
606 plugin_transport_http_client.c plugin_transport_http_common.c
607libgnunet_plugin_transport_https_client_la_LIBADD = \
608 $(top_builddir)/src/hello/libgnunethello.la \
609 $(top_builddir)/src/statistics/libgnunetstatistics.la \
610 $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
611 @LIBCURL@ \
612 $(top_builddir)/src/util/libgnunetutil.la
613libgnunet_plugin_transport_https_client_la_LDFLAGS = \
614 $(GN_LIBINTL) \
615 $(GN_PLUGIN_LDFLAGS)
616libgnunet_plugin_transport_https_client_la_CFLAGS = \
617 @LIBCURL_CPPFLAGS@ $(AM_CFLAGS) -DBUILD_HTTPS
618
619
620libgnunet_plugin_transport_https_server_la_SOURCES = \
621 plugin_transport_http_server.c plugin_transport_http_common.c
622libgnunet_plugin_transport_https_server_la_LIBADD = \
623 $(MHD_LIBS) \
624 $(top_builddir)/src/hello/libgnunethello.la \
625 $(top_builddir)/src/statistics/libgnunetstatistics.la \
626 $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
627 $(top_builddir)/src/nat/libgnunetnatnew.la \
628 $(top_builddir)/src/util/libgnunetutil.la
629libgnunet_plugin_transport_https_server_la_LDFLAGS = \
630 $(GN_LIBINTL) \
631 $(GN_PLUGIN_LDFLAGS)
632libgnunet_plugin_transport_https_server_la_CFLAGS = \
633 $(MHD_CFLAGS) $(AM_CFLAGS) -DBUILD_HTTPS
634
635check_PROGRAMS = \ 305check_PROGRAMS = \
636 test_transport_address_switch_tcp \ 306 test_communicator_basic-unix \
637 test_transport_testing_startstop \ 307 test_communicator_basic-tcp \
638 test_transport_testing_restart \ 308 test_communicator_basic-udp \
639 test_plugin_tcp \ 309 test_communicator_basic-quic \
640 $(UNIX_TEST) \ 310 test_communicator_rekey-tcp \
641 $(WLAN_PLUGIN_TEST) \ 311 test_communicator_rekey-udp \
642 $(BT_PLUGIN_TEST) \ 312 test_communicator_backchannel-udp \
643 test_http_common \ 313 test_communicator_bidirect-tcp
644 $(HTTP_CLIENT_PLUGIN_TEST) \ 314
645 $(HTTPS_CLIENT_PLUGIN_TEST) \ 315# Only test TNG if we run experimental
646 $(HTTP_SERVER_PLUGIN_TEST) \
647 $(HTTPS_SERVER_PLUGIN_TEST) \
648 test_transport_api_blacklisting_tcp \
649 test_transport_api_disconnect_tcp \
650 test_transport_api_tcp \
651 test_transport_api2_tcp \
652 test_transport_api_restart_1peer \
653 test_transport_api_restart_2peers \
654 test_transport_api_timeout_tcp \
655 test_transport_api_limited_sockets_tcp \
656 test_transport_api_tcp_nat \
657 $(UNIX_PLUGIN_TEST) \
658 $(UNIX_PLUGIN_TIMEOUT_TEST) \
659 $(UNIX_API_ABSTRACT_TEST) \
660 $(HTTP_API_TEST) \
661 $(HTTP_REVERSE_API_TEST) \
662 $(HTTP_API_TIMEOUT_TEST) \
663 $(HTTP_SWITCH) \
664 $(HTTPS_API_TEST) \
665 $(HTTPS_API_TIMEOUT_TEST) \
666 $(HTTPS_SWITCH) \
667 $(WLAN_API_TEST) \
668 $(WLAN_TIMEOUT_TEST) \
669 $(BT_API_TEST) \
670 $(BT_TIMEOUT_TEST) \
671 test_transport_api_multi \
672 test_transport_api_monitor_peers \
673 test_transport_blacklisting_no_bl \
674 test_transport_blacklisting_outbound_bl_full \
675 test_transport_blacklisting_outbound_bl_plugin \
676 test_transport_blacklisting_inbound_bl_plugin \
677 test_transport_blacklisting_inbound_bl_full \
678 test_transport_blacklisting_multiple_plugins \
679 test_transport_api_manipulation_send_tcp \
680 test_transport_api_manipulation_recv_tcp \
681 test_transport_api_manipulation_cfg \
682 test_transport_api_reliability_tcp \
683 test_transport_api_reliability_tcp_nat \
684 $(UNIX_REL_TEST) \
685 $(HTTP_REL_TEST) \
686 $(HTTPS_REL_TEST) \
687 $(WLAN_REL_TEST) \
688 $(WLAN_UREL_TEST) \
689 $(BT_REL_TEST) \
690 $(BT_UREL_TEST) \
691 test_quota_compliance_tcp \
692 test_quota_compliance_tcp_asymmetric \
693 $(UNIX_QUOTA_TEST) \
694 $(HTTP_QUOTA_TEST) \
695 $(HTTPS_QUOTA_TEST) \
696 $(WLAN_QUOTA_TEST) \
697 $(BT_QUOTA_TEST)
698if HAVE_GETOPT_BINARY
699check_PROGRAMS += \
700test_transport_api_slow_ats
701endif
702if HAVE_EXPERIMENTAL 316if HAVE_EXPERIMENTAL
703check_PROGRAMS += \ 317check_SCRIPTS= \
704 test_transport_address_switch_udp \ 318 test_transport_start_testcase.sh \
705 test_plugin_udp \ 319 test_transport_simple_send_performance.sh \
706 test_transport_api_udp \ 320 test_transport_nat_icmp_tcp.sh \
707 test_transport_api_timeout_udp \ 321 test_transport_nat_upnp.sh \
708 test_transport_api_udp_nat \ 322 test_transport_simple_send_string.sh \
709 test_transport_api_reliability_udp \ 323 test_transport_simple_send.sh \
710 test_quota_compliance_udp \ 324 test_transport_simple_send_broadcast.sh \
711 test_communicator_basic-unix \ 325 test_transport_udp_backchannel.sh \
712 test_communicator_basic-tcp \ 326 test_transport_simple_send_dv_circle.sh \
713 test_communicator_basic-udp \ 327 test_transport_simple_send_dv_inverse.sh
714 test_communicator_basic-quic \
715 test_communicator_rekey-tcp \
716 test_communicator_rekey-udp \
717 test_communicator_backchannel-udp \
718 test_communicator_bidirect-tcp
719endif 328endif
720 329
721if ENABLE_TEST_RUN 330if ENABLE_TEST_RUN
722AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;unset XDG_DATA_HOME;unset XDG_CONFIG_HOME; 331AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;unset XDG_DATA_HOME;unset XDG_CONFIG_HOME;
723TESTS = \ 332TESTS = \
724 test_transport_address_switch_tcp \ 333 $(check_SCRIPTS) \
725 $(HTTP_SWITCH) \
726 $(HTTPS_SWITCH) \
727 test_transport_testing_startstop \
728 test_transport_testing_restart \
729 test_plugin_tcp \
730 $(UNIX_TEST) \
731 $(WLAN_PLUGIN_TEST) \
732 $(BT_PLUGIN_TEST) \
733 test_transport_api_blacklisting_tcp \
734 test_transport_api_disconnect_tcp \
735 test_transport_api_tcp \
736 test_transport_api_restart_1peer \
737 test_transport_api_restart_2peers \
738 test_transport_api_limited_sockets_tcp \
739 test_transport_api_tcp_nat \
740 $(UNIX_PLUGIN_TEST) \
741 $(UNIX_API_ABSTRACT_TEST) \
742 $(HTTP_API_TEST) \
743 $(HTTPS_API_TEST) \
744 $(WLAN_API_TEST) \
745 $(BT_API_TEST) \
746 test_transport_api_multi \
747 test_transport_api_monitor_peers \
748 test_transport_blacklisting_no_bl \
749 test_transport_blacklisting_outbound_bl_full \
750 test_transport_blacklisting_outbound_bl_plugin \
751 test_transport_blacklisting_inbound_bl_plugin \
752 test_transport_blacklisting_inbound_bl_full \
753 test_transport_blacklisting_multiple_plugins \
754 test_transport_api_manipulation_send_tcp \
755 test_transport_api_manipulation_recv_tcp \
756 test_transport_api_manipulation_cfg \
757 test_transport_api_reliability_tcp \
758 test_transport_api_reliability_tcp_nat \
759 $(UNIX_REL_TEST) \
760 $(HTTP_REL_TEST) \
761 $(HTTPS_REL_TEST) \
762 $(WLAN_REL_TEST) \
763 $(WLAN_UREL_TEST) \
764 $(BT_REL_TEST) \
765 $(BT_UREL_TEST) \
766 test_quota_compliance_tcp \
767 test_quota_compliance_tcp_asymmetric \
768 $(UNIX_QUOTA_TEST) \
769 $(HTTP_QUOTA_TEST) \
770 $(HTTPS_QUOTA_TEST) \
771 test_transport_api_timeout_tcp \
772 $(UNIX_PLUGIN_TIMEOUT_TEST) \
773 $(HTTP_API_TIMEOUT_TEST) \
774 $(HTTPS_API_TIMEOUT_TEST) \
775 $(WLAN_TIMEOUT_TEST) \
776 $(BT_TIMEOUT_TEST) \
777 $(check_SCRIPTS)
778if HAVE_GETOPT_BINARY
779TESTS += \
780test_transport_api_slow_ats
781endif
782if HAVE_EXPERIMENTAL
783TESTS += \
784 test_transport_address_switch_udp \
785 test_plugin_udp \
786 test_transport_api_udp \
787 test_transport_api_timeout_udp \
788 test_transport_api_udp_nat \
789 test_transport_api_reliability_udp \
790 test_quota_compliance_udp \
791 test_communicator_basic-unix \ 334 test_communicator_basic-unix \
792 test_communicator_basic-tcp \ 335 test_communicator_basic-tcp \
793 test_communicator_basic-quic \ 336 test_communicator_basic-quic \
@@ -797,22 +340,7 @@ TESTS += \
797 test_communicator_backchannel-udp \ 340 test_communicator_backchannel-udp \
798 test_communicator_bidirect-tcp 341 test_communicator_bidirect-tcp
799endif 342endif
800endif
801 343
802# Only test TNG if we run experimental
803if HAVE_EXPERIMENTAL
804check_SCRIPTS= \
805 test_transport_start_testcase.sh \
806 test_transport_simple_send_performance.sh \
807 test_transport_nat_icmp_tcp.sh \
808 test_transport_nat_upnp.sh \
809 test_transport_simple_send_string.sh \
810 test_transport_simple_send.sh \
811 test_transport_simple_send_broadcast.sh \
812 test_transport_udp_backchannel.sh \
813 test_transport_simple_send_dv_circle.sh \
814 test_transport_simple_send_dv_inverse.sh
815endif
816 344
817test_transport_start_with_config_SOURCES = \ 345test_transport_start_with_config_SOURCES = \
818 test_transport_start_with_config.c 346 test_transport_start_with_config.c
@@ -823,116 +351,6 @@ test_transport_start_with_config_LDADD = \
823 libgnunettransportcore.la \ 351 libgnunettransportcore.la \
824 libgnunettransporttesting2.la 352 libgnunettransporttesting2.la
825 353
826test_transport_testing_startstop_SOURCES = \
827 test_transport_testing_startstop.c
828test_transport_testing_startstop_LDADD = \
829 $(top_builddir)/src/util/libgnunetutil.la \
830 libgnunettransport.la \
831 $(top_builddir)/src/hello/libgnunethello.la \
832 libgnunettransporttesting.la
833
834test_transport_testing_restart_SOURCES = \
835 test_transport_testing_restart.c
836test_transport_testing_restart_LDADD = \
837 $(top_builddir)/src/util/libgnunetutil.la \
838 libgnunettransport.la \
839 $(top_builddir)/src/hello/libgnunethello.la \
840 libgnunettransporttesting.la
841
842test_transport_api_blacklisting_tcp_SOURCES = \
843 test_transport_api_blacklisting.c
844test_transport_api_blacklisting_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_transport_blacklisting_no_bl_SOURCES = \
852 test_transport_blacklisting.c
853test_transport_blacklisting_no_bl_LDADD = \
854 libgnunettransport.la \
855 $(top_builddir)/src/hello/libgnunethello.la \
856 $(top_builddir)/src/statistics/libgnunetstatistics.la \
857 $(top_builddir)/src/util/libgnunetutil.la \
858 libgnunettransporttesting.la
859
860test_transport_blacklisting_outbound_bl_full_SOURCES = \
861 test_transport_blacklisting.c
862test_transport_blacklisting_outbound_bl_full_LDADD = \
863 libgnunettransport.la \
864 $(top_builddir)/src/hello/libgnunethello.la \
865 $(top_builddir)/src/statistics/libgnunetstatistics.la \
866 $(top_builddir)/src/util/libgnunetutil.la \
867 libgnunettransporttesting.la
868
869test_transport_blacklisting_outbound_bl_plugin_SOURCES = \
870 test_transport_blacklisting.c
871test_transport_blacklisting_outbound_bl_plugin_LDADD = \
872 libgnunettransport.la \
873 $(top_builddir)/src/hello/libgnunethello.la \
874 $(top_builddir)/src/statistics/libgnunetstatistics.la \
875 $(top_builddir)/src/util/libgnunetutil.la \
876 libgnunettransporttesting.la
877
878test_transport_blacklisting_inbound_bl_full_SOURCES = \
879 test_transport_blacklisting.c
880test_transport_blacklisting_inbound_bl_full_LDADD = \
881 libgnunettransport.la \
882 $(top_builddir)/src/hello/libgnunethello.la \
883 $(top_builddir)/src/statistics/libgnunetstatistics.la \
884 $(top_builddir)/src/util/libgnunetutil.la \
885 libgnunettransporttesting.la
886
887test_transport_blacklisting_inbound_bl_plugin_SOURCES = \
888 test_transport_blacklisting.c
889test_transport_blacklisting_inbound_bl_plugin_LDADD = \
890 libgnunettransport.la \
891 $(top_builddir)/src/hello/libgnunethello.la \
892 $(top_builddir)/src/statistics/libgnunetstatistics.la \
893 $(top_builddir)/src/util/libgnunetutil.la \
894 libgnunettransporttesting.la
895
896test_transport_blacklisting_multiple_plugins_SOURCES = \
897 test_transport_blacklisting.c
898test_transport_blacklisting_multiple_plugins_LDADD = \
899 libgnunettransport.la \
900 $(top_builddir)/src/hello/libgnunethello.la \
901 $(top_builddir)/src/statistics/libgnunetstatistics.la \
902 $(top_builddir)/src/util/libgnunetutil.la \
903 libgnunettransporttesting.la
904
905
906test_transport_api_disconnect_tcp_SOURCES = \
907 test_transport_api_disconnect.c
908test_transport_api_disconnect_tcp_LDADD = \
909 libgnunettransport.la \
910 $(top_builddir)/src/hello/libgnunethello.la \
911 $(top_builddir)/src/statistics/libgnunetstatistics.la \
912 $(top_builddir)/src/util/libgnunetutil.la \
913 libgnunettransporttesting.la
914
915test_plugin_tcp_SOURCES = \
916 test_plugin_transport.c
917test_plugin_tcp_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
924if HAVE_EXPERIMENTAL
925test_plugin_udp_SOURCES = \
926 test_plugin_transport.c
927test_plugin_udp_LDADD = \
928 libgnunettransport.la \
929 $(top_builddir)/src/statistics/libgnunetstatistics.la \
930 $(top_builddir)/src/hello/libgnunethello.la \
931 $(top_builddir)/src/util/libgnunetutil.la \
932 libgnunettransporttesting.la
933endif
934
935if HAVE_EXPERIMENTAL
936test_communicator_basic_unix_SOURCES = \ 354test_communicator_basic_unix_SOURCES = \
937 test_communicator_basic.c 355 test_communicator_basic.c
938test_communicator_basic_unix_LDADD = \ 356test_communicator_basic_unix_LDADD = \
@@ -996,87 +414,6 @@ test_communicator_bidirect_tcp_LDADD = \
996 $(top_builddir)/src/testing/libgnunettesting.la \ 414 $(top_builddir)/src/testing/libgnunettesting.la \
997 $(top_builddir)/src/util/libgnunetutil.la \ 415 $(top_builddir)/src/util/libgnunetutil.la \
998 $(top_builddir)/src/statistics/libgnunetstatistics.la 416 $(top_builddir)/src/statistics/libgnunetstatistics.la
999endif
1000
1001test_plugin_unix_SOURCES = \
1002 test_plugin_transport.c
1003test_plugin_unix_LDADD = \
1004 libgnunettransport.la \
1005 $(top_builddir)/src/statistics/libgnunetstatistics.la \
1006 $(top_builddir)/src/hello/libgnunethello.la \
1007 $(top_builddir)/src/util/libgnunetutil.la \
1008 libgnunettransporttesting.la
1009
1010test_plugin_wlan_SOURCES = \
1011 test_plugin_transport.c
1012test_plugin_wlan_LDADD = \
1013 libgnunettransport.la \
1014 $(top_builddir)/src/statistics/libgnunetstatistics.la \
1015 $(top_builddir)/src/hello/libgnunethello.la \
1016 $(top_builddir)/src/util/libgnunetutil.la \
1017 libgnunettransporttesting.la
1018
1019test_plugin_bluetooth_SOURCES = \
1020 test_plugin_transport.c
1021test_plugin_bluetooth_LDADD = \
1022 libgnunettransport.la \
1023 $(top_builddir)/src/statistics/libgnunetstatistics.la \
1024 $(top_builddir)/src/hello/libgnunethello.la \
1025 $(top_builddir)/src/util/libgnunetutil.la \
1026 libgnunettransporttesting.la
1027
1028test_http_common_SOURCES = \
1029 test_http_common.c plugin_transport_http_common.c
1030test_http_common_LDADD = \
1031 libgnunettransport.la \
1032 $(top_builddir)/src/statistics/libgnunetstatistics.la \
1033 $(top_builddir)/src/hello/libgnunethello.la \
1034 $(top_builddir)/src/util/libgnunetutil.la \
1035 libgnunettransporttesting.la
1036
1037test_plugin_http_server_SOURCES = \
1038 test_plugin_transport.c
1039test_plugin_http_server_LDADD = \
1040 libgnunettransport.la \
1041 $(top_builddir)/src/statistics/libgnunetstatistics.la \
1042 $(top_builddir)/src/hello/libgnunethello.la \
1043 $(top_builddir)/src/util/libgnunetutil.la \
1044 libgnunettransporttesting.la
1045
1046test_plugin_https_server_SOURCES = \
1047 test_plugin_transport.c
1048test_plugin_https_server_LDADD = \
1049 libgnunettransport.la \
1050 $(top_builddir)/src/statistics/libgnunetstatistics.la \
1051 $(top_builddir)/src/hello/libgnunethello.la \
1052 $(top_builddir)/src/util/libgnunetutil.la \
1053 libgnunettransporttesting.la
1054
1055test_plugin_http_client_SOURCES = \
1056 test_plugin_transport.c
1057test_plugin_http_client_LDADD = \
1058 libgnunettransport.la \
1059 $(top_builddir)/src/statistics/libgnunetstatistics.la \
1060 $(top_builddir)/src/hello/libgnunethello.la \
1061 $(top_builddir)/src/util/libgnunetutil.la \
1062 libgnunettransporttesting.la
1063
1064test_plugin_https_client_SOURCES = \
1065 test_plugin_transport.c
1066test_plugin_https_client_LDADD = \
1067 libgnunettransport.la \
1068 $(top_builddir)/src/statistics/libgnunetstatistics.la \
1069 $(top_builddir)/src/hello/libgnunethello.la \
1070 $(top_builddir)/src/util/libgnunetutil.la \
1071 libgnunettransporttesting.la
1072
1073test_transport_api_tcp_SOURCES = \
1074 test_transport_api.c
1075test_transport_api_tcp_LDADD = \
1076 libgnunettransport.la \
1077 $(top_builddir)/src/hello/libgnunethello.la \
1078 $(top_builddir)/src/util/libgnunetutil.la \
1079 libgnunettransporttesting.la
1080 417
1081test_transport_api2_tcp_SOURCES = \ 418test_transport_api2_tcp_SOURCES = \
1082 test_transport_api2.c 419 test_transport_api2.c
@@ -1085,482 +422,6 @@ test_transport_api2_tcp_LDADD = \
1085 $(top_builddir)/src/util/libgnunetutil.la \ 422 $(top_builddir)/src/util/libgnunetutil.la \
1086 libgnunettransporttesting2.la 423 libgnunettransporttesting2.la
1087 424
1088test_transport_api_restart_1peer_SOURCES = \
1089 test_transport_api_restart_reconnect.c
1090test_transport_api_restart_1peer_LDADD = \
1091 libgnunettransport.la \
1092 $(top_builddir)/src/hello/libgnunethello.la \
1093 $(top_builddir)/src/ats/libgnunetats.la \
1094 $(top_builddir)/src/statistics/libgnunetstatistics.la \
1095 $(top_builddir)/src/util/libgnunetutil.la \
1096 libgnunettransporttesting.la
1097
1098test_transport_api_restart_2peers_SOURCES = \
1099 test_transport_api_restart_reconnect.c
1100test_transport_api_restart_2peers_LDADD = \
1101 libgnunettransport.la \
1102 $(top_builddir)/src/hello/libgnunethello.la \
1103 $(top_builddir)/src/ats/libgnunetats.la \
1104$(top_builddir)/src/statistics/libgnunetstatistics.la \
1105 $(top_builddir)/src/util/libgnunetutil.la \
1106 libgnunettransporttesting.la
1107
1108test_transport_api_limited_sockets_tcp_SOURCES = \
1109 test_transport_api_limited_sockets.c
1110test_transport_api_limited_sockets_tcp_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_tcp_nat_SOURCES = \
1117 test_transport_api.c
1118test_transport_api_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_manipulation_send_tcp_SOURCES = \
1125 test_transport_api_manipulation_send_tcp.c
1126test_transport_api_manipulation_send_tcp_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_manipulation_recv_tcp_SOURCES = \
1133 test_transport_api_manipulation_recv_tcp.c
1134test_transport_api_manipulation_recv_tcp_LDADD = \
1135 libgnunettransport.la \
1136 $(top_builddir)/src/hello/libgnunethello.la \
1137 $(top_builddir)/src/util/libgnunetutil.la \
1138 libgnunettransporttesting.la
1139
1140test_transport_api_manipulation_cfg_SOURCES = \
1141 test_transport_api_manipulation_cfg.c
1142test_transport_api_manipulation_cfg_LDADD = \
1143 libgnunettransport.la \
1144 $(top_builddir)/src/hello/libgnunethello.la \
1145 $(top_builddir)/src/util/libgnunetutil.la \
1146 libgnunettransporttesting.la
1147
1148test_transport_api_reliability_tcp_SOURCES = \
1149 test_transport_api_reliability.c
1150test_transport_api_reliability_tcp_LDADD = \
1151 libgnunettransport.la \
1152 $(top_builddir)/src/hello/libgnunethello.la \
1153 $(top_builddir)/src/util/libgnunetutil.la \
1154 libgnunettransporttesting.la
1155
1156test_transport_api_timeout_tcp_SOURCES = \
1157 test_transport_api_timeout.c
1158test_transport_api_timeout_tcp_LDADD = \
1159 libgnunettransport.la \
1160 $(top_builddir)/src/hello/libgnunethello.la \
1161 $(top_builddir)/src/util/libgnunetutil.la \
1162 libgnunettransporttesting.la
1163
1164test_transport_api_timeout_unix_SOURCES = \
1165 test_transport_api_timeout.c
1166test_transport_api_timeout_unix_LDADD = \
1167 libgnunettransport.la \
1168 $(top_builddir)/src/hello/libgnunethello.la \
1169 $(top_builddir)/src/util/libgnunetutil.la \
1170 libgnunettransporttesting.la
1171
1172test_transport_api_timeout_wlan_SOURCES = \
1173 test_transport_api_timeout.c
1174test_transport_api_timeout_wlan_LDADD = \
1175 libgnunettransport.la \
1176 $(top_builddir)/src/hello/libgnunethello.la \
1177 $(top_builddir)/src/util/libgnunetutil.la \
1178 libgnunettransporttesting.la
1179
1180test_transport_api_timeout_bluetooth_SOURCES = \
1181 test_transport_api_timeout.c
1182test_transport_api_timeout_bluetooth_LDADD = \
1183 libgnunettransport.la \
1184 $(top_builddir)/src/hello/libgnunethello.la \
1185 $(top_builddir)/src/util/libgnunetutil.la \
1186 libgnunettransporttesting.la
1187
1188test_transport_api_reliability_tcp_nat_SOURCES = \
1189 test_transport_api_reliability.c
1190test_transport_api_reliability_tcp_nat_LDADD = \
1191 libgnunettransport.la \
1192 $(top_builddir)/src/hello/libgnunethello.la \
1193 $(top_builddir)/src/util/libgnunetutil.la \
1194 libgnunettransporttesting.la
1195
1196test_transport_api_reliability_bluetooth_SOURCES = \
1197 test_transport_api_reliability.c
1198test_transport_api_reliability_bluetooth_LDADD = \
1199 libgnunettransport.la \
1200 $(top_builddir)/src/hello/libgnunethello.la \
1201 $(top_builddir)/src/util/libgnunetutil.la \
1202 libgnunettransporttesting.la
1203
1204test_transport_api_reliability_wlan_SOURCES = \
1205 test_transport_api_reliability.c
1206test_transport_api_reliability_wlan_LDADD = \
1207 libgnunettransport.la \
1208 $(top_builddir)/src/hello/libgnunethello.la \
1209 $(top_builddir)/src/util/libgnunetutil.la \
1210 libgnunettransporttesting.la
1211
1212if HAVE_EXPERIMENTAL
1213test_transport_api_udp_SOURCES = \
1214 test_transport_api.c
1215test_transport_api_udp_LDADD = \
1216 libgnunettransport.la \
1217 $(top_builddir)/src/hello/libgnunethello.la \
1218 $(top_builddir)/src/util/libgnunetutil.la \
1219 libgnunettransporttesting.la
1220
1221test_transport_api_timeout_udp_SOURCES = \
1222 test_transport_api_timeout.c
1223test_transport_api_timeout_udp_LDADD = \
1224 libgnunettransport.la \
1225 $(top_builddir)/src/hello/libgnunethello.la \
1226 $(top_builddir)/src/util/libgnunetutil.la \
1227 libgnunettransporttesting.la
1228
1229test_transport_api_udp_nat_SOURCES = \
1230 test_transport_api.c
1231test_transport_api_udp_nat_LDADD = \
1232 libgnunettransport.la \
1233 $(top_builddir)/src/hello/libgnunethello.la \
1234 $(top_builddir)/src/util/libgnunetutil.la \
1235 libgnunettransporttesting.la
1236endif
1237
1238test_transport_api_unix_SOURCES = \
1239 test_transport_api.c
1240test_transport_api_unix_LDADD = \
1241 libgnunettransport.la \
1242 $(top_builddir)/src/hello/libgnunethello.la \
1243 $(top_builddir)/src/util/libgnunetutil.la \
1244 libgnunettransporttesting.la
1245
1246test_transport_api_unix_abstract_SOURCES = \
1247 test_transport_api.c
1248test_transport_api_unix_abstract_LDADD = \
1249 libgnunettransport.la \
1250 $(top_builddir)/src/hello/libgnunethello.la \
1251 $(top_builddir)/src/util/libgnunetutil.la \
1252 libgnunettransporttesting.la
1253
1254# HTTP tests
1255test_transport_api_http_SOURCES = \
1256 test_transport_api.c
1257test_transport_api_http_LDADD = \
1258 libgnunettransport.la \
1259 $(top_builddir)/src/hello/libgnunethello.la \
1260 $(top_builddir)/src/util/libgnunetutil.la \
1261 libgnunettransporttesting.la
1262
1263test_transport_api_http_reverse_SOURCES = \
1264 test_transport_api.c
1265test_transport_api_http_reverse_LDADD = \
1266 libgnunettransport.la \
1267 $(top_builddir)/src/hello/libgnunethello.la \
1268 $(top_builddir)/src/util/libgnunetutil.la \
1269 libgnunettransporttesting.la
1270
1271test_transport_api_timeout_http_SOURCES = \
1272 test_transport_api_timeout.c
1273test_transport_api_timeout_http_LDADD = \
1274 libgnunettransport.la \
1275 $(top_builddir)/src/hello/libgnunethello.la \
1276 $(top_builddir)/src/util/libgnunetutil.la \
1277 libgnunettransporttesting.la
1278
1279test_transport_api_reliability_http_SOURCES = \
1280 test_transport_api_reliability.c
1281test_transport_api_reliability_http_LDADD = \
1282 libgnunettransport.la \
1283 $(top_builddir)/src/hello/libgnunethello.la \
1284 $(top_builddir)/src/util/libgnunetutil.la \
1285 libgnunettransporttesting.la
1286
1287test_transport_api_reliability_http_xhr_SOURCES = \
1288 test_transport_api_reliability.c
1289test_transport_api_reliability_http_xhr_LDADD = \
1290 libgnunettransport.la \
1291 $(top_builddir)/src/hello/libgnunethello.la \
1292 $(top_builddir)/src/util/libgnunetutil.la \
1293 libgnunettransporttesting.la
1294
1295test_quota_compliance_http_SOURCES = \
1296 test_quota_compliance.c
1297test_quota_compliance_http_LDADD = \
1298 libgnunettransport.la \
1299 $(top_builddir)/src/hello/libgnunethello.la \
1300 $(top_builddir)/src/ats/libgnunetats.la \
1301 $(top_builddir)/src/nt/libgnunetnt.la \
1302 $(top_builddir)/src/util/libgnunetutil.la \
1303 libgnunettransporttesting.la
1304
1305test_quota_compliance_http_asymmetric_SOURCES = \
1306 test_quota_compliance.c
1307test_quota_compliance_http_asymmetric_LDADD = \
1308 libgnunettransport.la \
1309 $(top_builddir)/src/hello/libgnunethello.la \
1310 $(top_builddir)/src/ats/libgnunetats.la \
1311 $(top_builddir)/src/nt/libgnunetnt.la \
1312 $(top_builddir)/src/util/libgnunetutil.la \
1313 libgnunettransporttesting.la
1314
1315test_quota_compliance_https_SOURCES = \
1316 test_quota_compliance.c
1317test_quota_compliance_https_LDADD = \
1318 libgnunettransport.la \
1319 $(top_builddir)/src/hello/libgnunethello.la \
1320 $(top_builddir)/src/ats/libgnunetats.la \
1321 $(top_builddir)/src/nt/libgnunetnt.la \
1322 $(top_builddir)/src/util/libgnunetutil.la \
1323 libgnunettransporttesting.la
1324
1325test_quota_compliance_https_asymmetric_SOURCES = \
1326 test_quota_compliance.c
1327test_quota_compliance_https_asymmetric_LDADD = \
1328 libgnunettransport.la \
1329 $(top_builddir)/src/hello/libgnunethello.la \
1330 $(top_builddir)/src/ats/libgnunetats.la \
1331 $(top_builddir)/src/nt/libgnunetnt.la \
1332 $(top_builddir)/src/util/libgnunetutil.la \
1333 libgnunettransporttesting.la
1334
1335# HTTPS tests
1336test_transport_api_https_SOURCES = \
1337 test_transport_api.c
1338test_transport_api_https_LDADD = \
1339 libgnunettransport.la \
1340 $(top_builddir)/src/hello/libgnunethello.la \
1341 $(top_builddir)/src/util/libgnunetutil.la \
1342 libgnunettransporttesting.la
1343
1344test_transport_api_timeout_https_SOURCES = \
1345 test_transport_api_timeout.c
1346test_transport_api_timeout_https_LDADD = \
1347 libgnunettransport.la \
1348 $(top_builddir)/src/hello/libgnunethello.la \
1349 $(top_builddir)/src/util/libgnunetutil.la \
1350 libgnunettransporttesting.la
1351
1352
1353test_transport_api_reliability_https_SOURCES = \
1354 test_transport_api_reliability.c
1355test_transport_api_reliability_https_LDADD = \
1356 libgnunettransport.la \
1357 $(top_builddir)/src/hello/libgnunethello.la \
1358 $(top_builddir)/src/util/libgnunetutil.la \
1359 libgnunettransporttesting.la
1360
1361test_transport_api_reliability_https_xhr_SOURCES = \
1362 test_transport_api_reliability.c
1363test_transport_api_reliability_https_xhr_LDADD = \
1364 libgnunettransport.la \
1365 $(top_builddir)/src/hello/libgnunethello.la \
1366 $(top_builddir)/src/util/libgnunetutil.la \
1367 libgnunettransporttesting.la
1368
1369test_transport_api_reliability_unix_SOURCES = \
1370 test_transport_api_reliability.c
1371test_transport_api_reliability_unix_LDADD = \
1372 libgnunettransport.la \
1373 $(top_builddir)/src/hello/libgnunethello.la \
1374 $(top_builddir)/src/util/libgnunetutil.la \
1375 libgnunettransporttesting.la
1376
1377if HAVE_EXPERIMENTAL
1378test_transport_api_reliability_udp_SOURCES = \
1379 test_transport_api_reliability.c
1380test_transport_api_reliability_udp_LDADD = \
1381 libgnunettransport.la \
1382 $(top_builddir)/src/hello/libgnunethello.la \
1383 $(top_builddir)/src/util/libgnunetutil.la \
1384 libgnunettransporttesting.la
1385endif
1386
1387if LINUX
1388test_transport_api_wlan_SOURCES = \
1389 test_transport_api.c
1390test_transport_api_wlan_LDADD = \
1391 libgnunettransport.la \
1392 $(top_builddir)/src/hello/libgnunethello.la \
1393 $(top_builddir)/src/util/libgnunetutil.la \
1394 libgnunettransporttesting.la
1395endif
1396
1397if LINUX
1398if HAVE_LIBBLUETOOTH
1399test_transport_api_bluetooth_SOURCES = \
1400 test_transport_api.c
1401test_transport_api_bluetooth_LDADD = \
1402 libgnunettransport.la \
1403 $(top_builddir)/src/hello/libgnunethello.la \
1404 $(top_builddir)/src/util/libgnunetutil.la \
1405 libgnunettransporttesting.la
1406endif
1407endif
1408
1409test_transport_address_switch_tcp_SOURCES = \
1410 test_transport_address_switch.c
1411test_transport_address_switch_tcp_LDADD = \
1412 libgnunettransport.la \
1413 $(top_builddir)/src/hello/libgnunethello.la \
1414 $(top_builddir)/src/statistics/libgnunetstatistics.la \
1415 $(top_builddir)/src/util/libgnunetutil.la \
1416 libgnunettransporttesting.la
1417
1418if HAVE_EXPERIMENTAL
1419test_transport_address_switch_udp_SOURCES = \
1420 test_transport_address_switch.c
1421test_transport_address_switch_udp_LDADD = \
1422 libgnunettransport.la \
1423 $(top_builddir)/src/hello/libgnunethello.la \
1424 $(top_builddir)/src/statistics/libgnunetstatistics.la \
1425 $(top_builddir)/src/util/libgnunetutil.la \
1426 libgnunettransporttesting.la
1427endif
1428
1429 test_transport_address_switch_http_SOURCES = \
1430 test_transport_address_switch.c
1431test_transport_address_switch_http_LDADD = \
1432 libgnunettransport.la \
1433 $(top_builddir)/src/hello/libgnunethello.la \
1434 $(top_builddir)/src/statistics/libgnunetstatistics.la \
1435 $(top_builddir)/src/util/libgnunetutil.la \
1436 libgnunettransporttesting.la
1437
1438 test_transport_address_switch_https_SOURCES = \
1439 test_transport_address_switch.c
1440test_transport_address_switch_https_LDADD = \
1441 libgnunettransport.la \
1442 $(top_builddir)/src/hello/libgnunethello.la \
1443 $(top_builddir)/src/statistics/libgnunetstatistics.la \
1444 $(top_builddir)/src/util/libgnunetutil.la \
1445 libgnunettransporttesting.la
1446
1447test_quota_compliance_tcp_SOURCES = \
1448 test_quota_compliance.c
1449test_quota_compliance_tcp_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_tcp_asymmetric_SOURCES = \
1458 test_quota_compliance.c
1459test_quota_compliance_tcp_asymmetric_LDADD = \
1460 libgnunettransport.la \
1461 $(top_builddir)/src/hello/libgnunethello.la \
1462 $(top_builddir)/src/nt/libgnunetnt.la \
1463 $(top_builddir)/src/ats/libgnunetats.la \
1464 $(top_builddir)/src/util/libgnunetutil.la \
1465 libgnunettransporttesting.la
1466
1467if HAVE_EXPERIMENTAL
1468test_quota_compliance_udp_SOURCES = \
1469 test_quota_compliance.c
1470test_quota_compliance_udp_LDADD = \
1471 libgnunettransport.la \
1472 $(top_builddir)/src/hello/libgnunethello.la \
1473 $(top_builddir)/src/ats/libgnunetats.la \
1474 $(top_builddir)/src/nt/libgnunetnt.la \
1475 $(top_builddir)/src/util/libgnunetutil.la \
1476 libgnunettransporttesting.la
1477endif
1478
1479test_quota_compliance_unix_SOURCES = \
1480 test_quota_compliance.c
1481test_quota_compliance_unix_LDADD = \
1482 libgnunettransport.la \
1483 $(top_builddir)/src/hello/libgnunethello.la \
1484 $(top_builddir)/src/ats/libgnunetats.la \
1485 $(top_builddir)/src/nt/libgnunetnt.la \
1486 $(top_builddir)/src/util/libgnunetutil.la \
1487 libgnunettransporttesting.la
1488
1489test_quota_compliance_unix_asymmetric_SOURCES = \
1490 test_quota_compliance.c
1491test_quota_compliance_unix_asymmetric_LDADD = \
1492 libgnunettransport.la \
1493 $(top_builddir)/src/hello/libgnunethello.la \
1494 $(top_builddir)/src/ats/libgnunetats.la \
1495 $(top_builddir)/src/nt/libgnunetnt.la \
1496 $(top_builddir)/src/util/libgnunetutil.la \
1497 libgnunettransporttesting.la
1498
1499test_quota_compliance_wlan_SOURCES = \
1500 test_quota_compliance.c
1501test_quota_compliance_wlan_LDADD = \
1502 libgnunettransport.la \
1503 $(top_builddir)/src/hello/libgnunethello.la \
1504 $(top_builddir)/src/ats/libgnunetats.la \
1505 $(top_builddir)/src/nt/libgnunetnt.la \
1506 $(top_builddir)/src/util/libgnunetutil.la \
1507 libgnunettransporttesting.la
1508
1509test_quota_compliance_wlan_asymmetric_SOURCES = \
1510 test_quota_compliance.c
1511test_quota_compliance_wlan_asymmetric_LDADD = \
1512 libgnunettransport.la \
1513 $(top_builddir)/src/hello/libgnunethello.la \
1514 $(top_builddir)/src/ats/libgnunetats.la \
1515 $(top_builddir)/src/nt/libgnunetnt.la \
1516 $(top_builddir)/src/util/libgnunetutil.la \
1517 libgnunettransporttesting.la
1518
1519test_quota_compliance_bluetooth_SOURCES = \
1520 test_quota_compliance.c
1521test_quota_compliance_bluetooth_LDADD = \
1522 libgnunettransport.la \
1523 $(top_builddir)/src/hello/libgnunethello.la \
1524 $(top_builddir)/src/ats/libgnunetats.la \
1525 $(top_builddir)/src/nt/libgnunetnt.la \
1526 $(top_builddir)/src/util/libgnunetutil.la \
1527 libgnunettransporttesting.la
1528
1529test_quota_compliance_bluetooth_asymmetric_SOURCES = \
1530 test_quota_compliance.c
1531test_quota_compliance_bluetooth_asymmetric_LDADD = \
1532 libgnunettransport.la \
1533 $(top_builddir)/src/hello/libgnunethello.la \
1534 $(top_builddir)/src/ats/libgnunetats.la \
1535 $(top_builddir)/src/nt/libgnunetnt.la \
1536 $(top_builddir)/src/util/libgnunetutil.la \
1537 libgnunettransporttesting.la
1538
1539test_transport_api_multi_SOURCES = \
1540 test_transport_api.c
1541test_transport_api_multi_LDADD = \
1542 libgnunettransport.la \
1543 $(top_builddir)/src/hello/libgnunethello.la \
1544 $(top_builddir)/src/util/libgnunetutil.la \
1545 libgnunettransporttesting.la
1546
1547test_transport_api_monitor_peers_SOURCES = \
1548 test_transport_api_monitor_peers.c
1549test_transport_api_monitor_peers_LDADD = \
1550 libgnunettransport.la \
1551 $(top_builddir)/src/hello/libgnunethello.la \
1552 $(top_builddir)/src/util/libgnunetutil.la \
1553 libgnunettransporttesting.la
1554
1555test_transport_api_slow_ats_SOURCES = \
1556 test_transport_api.c
1557test_transport_api_slow_ats_LDADD = \
1558 libgnunettransport.la \
1559 $(top_builddir)/src/hello/libgnunethello.la \
1560 $(top_builddir)/src/util/libgnunetutil.la \
1561 libgnunettransporttesting.la
1562
1563
1564EXTRA_DIST = \ 425EXTRA_DIST = \
1565test_transport_start_testcase.sh \ 426test_transport_start_testcase.sh \
1566test_transport_simple_send_performance.sh \ 427test_transport_simple_send_performance.sh \
@@ -1573,78 +434,16 @@ test_transport_udp_backchannel.sh \
1573test_transport_simple_send_dv_circle.sh \ 434test_transport_simple_send_dv_circle.sh \
1574test_transport_simple_send_dv_inverse.sh \ 435test_transport_simple_send_dv_inverse.sh \
1575gnunet-transport-certificate-creation.in \ 436gnunet-transport-certificate-creation.in \
1576communicator-unix.conf \
1577test_plugin_hostkey \ 437test_plugin_hostkey \
1578test_plugin_hostkey.ecc \ 438test_plugin_hostkey.ecc \
1579test_delay \ 439test_delay \
1580template_cfg_peer1.conf\ 440template_cfg_peer1.conf\
1581template_cfg_peer2.conf\ 441template_cfg_peer2.conf\
1582test_plugin_transport_data.conf\
1583test_plugin_transport_data_udp.conf\
1584test_quota_compliance_data.conf\
1585test_quota_compliance_http_peer1.conf\
1586test_quota_compliance_http_peer2.conf\
1587test_quota_compliance_https_peer1.conf\
1588test_quota_compliance_https_peer2.conf\
1589test_quota_compliance_tcp_peer1.conf\
1590test_quota_compliance_tcp_peer2.conf\
1591test_quota_compliance_udp_peer1.conf\
1592test_quota_compliance_udp_peer2.conf\
1593test_quota_compliance_unix_peer1.conf\
1594test_quota_compliance_unix_peer2.conf\
1595test_quota_compliance_wlan_peer1.conf\
1596test_quota_compliance_wlan_peer2.conf\
1597test_quota_compliance_bluetooth_peer1.conf\
1598test_quota_compliance_bluetooth_peer2.conf\
1599test_quota_compliance_http_asymmetric_peer1.conf\
1600test_quota_compliance_http_asymmetric_peer2.conf\
1601test_quota_compliance_https_asymmetric_peer1.conf\
1602test_quota_compliance_https_asymmetric_peer2.conf\
1603test_quota_compliance_tcp_asymmetric_peer1.conf\
1604test_quota_compliance_tcp_asymmetric_peer2.conf\
1605test_quota_compliance_unix_asymmetric_peer1.conf\
1606test_quota_compliance_unix_asymmetric_peer2.conf\
1607test_quota_compliance_wlan_asymmetric_peer1.conf\
1608test_quota_compliance_wlan_asymmetric_peer2.conf\
1609test_quota_compliance_bluetooth_asymmetric_peer1.conf\
1610test_quota_compliance_bluetooth_asymmetric_peer2.conf\
1611test_transport_api_data.conf\ 442test_transport_api_data.conf\
1612test_transport_api_blacklisting_tcp_peer1.conf \
1613test_transport_api_blacklisting_tcp_peer2.conf \
1614test_transport_api_http_peer1.conf\
1615test_transport_api_http_peer2.conf\
1616test_transport_api_https_peer1.conf\
1617test_transport_api_https_peer2.conf\
1618test_transport_api_limited_sockets_tcp_peer1.conf\
1619test_transport_api_limited_sockets_tcp_peer2.conf\
1620test_transport_api_timeout_tcp_peer1.conf\ 443test_transport_api_timeout_tcp_peer1.conf\
1621test_transport_api_timeout_tcp_peer2.conf\ 444test_transport_api_timeout_tcp_peer2.conf\
1622test_transport_api_multi_peer1.conf\ 445test_transport_api_multi_peer1.conf\
1623test_transport_api_multi_peer2.conf\ 446test_transport_api_multi_peer2.conf\
1624test_transport_api_restart_1peer_peer1.conf\
1625test_transport_api_restart_1peer_peer2.conf\
1626test_transport_api_reliability_http_peer1.conf\
1627test_transport_api_reliability_http_peer2.conf\
1628test_transport_api_reliability_https_peer1.conf\
1629test_transport_api_reliability_https_peer2.conf\
1630test_transport_api_reliability_tcp_nat_peer1.conf\
1631test_transport_api_reliability_tcp_nat_peer2.conf\
1632test_transport_api_reliability_tcp_peer1.conf\
1633test_transport_api_reliability_tcp_peer2.conf\
1634test_transport_api_reliability_wlan_peer1.conf\
1635test_transport_api_reliability_wlan_peer2.conf\
1636test_transport_api_reliability_bluetooth_peer1.conf\
1637test_transport_api_reliability_bluetooth_peer2.conf\
1638test_transport_api_manipulation_send_tcp_peer1.conf\
1639test_transport_api_manipulation_send_tcp_peer2.conf\
1640test_transport_api_manipulation_recv_tcp_peer1.conf\
1641test_transport_api_manipulation_recv_tcp_peer2.conf\
1642test_transport_api_manipulation_cfg_peer1.conf\
1643test_transport_api_manipulation_cfg_peer2.conf\
1644test_transport_api_restart_1peer_peer1.conf\
1645test_transport_api_restart_1peer_peer2.conf\
1646test_transport_api_restart_2peers_peer1.conf\
1647test_transport_api_restart_2peers_peer2.conf\
1648test_transport_api_tcp_nat_peer1.conf\ 447test_transport_api_tcp_nat_peer1.conf\
1649test_transport_api_tcp_nat_peer2.conf\ 448test_transport_api_tcp_nat_peer2.conf\
1650test_transport_api_tcp_peer1.conf\ 449test_transport_api_tcp_peer1.conf\
@@ -1655,65 +454,13 @@ test_transport_api_udp_nat_peer1.conf\
1655test_transport_api_udp_nat_peer2.conf\ 454test_transport_api_udp_nat_peer2.conf\
1656test_transport_api_udp_peer1.conf\ 455test_transport_api_udp_peer1.conf\
1657test_transport_api_udp_peer2.conf\ 456test_transport_api_udp_peer2.conf\
1658test_transport_api_timeout_udp_peer1.conf\
1659test_transport_api_timeout_udp_peer2.conf\
1660test_transport_api_unix_peer1.conf\ 457test_transport_api_unix_peer1.conf\
1661test_transport_api_unix_peer2.conf\ 458test_transport_api_unix_peer2.conf\
1662test_transport_api_unix_abstract_peer1.conf \
1663test_transport_api_unix_abstract_peer2.conf \
1664test_transport_api_timeout_unix_peer1.conf\
1665test_transport_api_timeout_unix_peer2.conf\
1666test_transport_api_timeout_wlan_peer1.conf \
1667test_transport_api_timeout_wlan_peer2.conf \
1668test_transport_api_timeout_bluetooth_peer1.conf\
1669test_transport_api_timeout_bluetooth_peer2.conf\
1670test_transport_api_reliability_udp_peer1.conf\
1671test_transport_api_reliability_udp_peer2.conf\
1672test_transport_api_reliability_http_xhr_peer1.conf\
1673test_transport_api_reliability_http_xhr_peer2.conf\
1674test_transport_api_reliability_https_xhr_peer1.conf\
1675test_transport_api_reliability_https_xhr_peer2.conf\
1676test_transport_api_reliability_unix_peer1.conf\
1677test_transport_api_reliability_unix_peer2.conf\
1678test_transport_api_reliability_wlan_peer1.conf\
1679test_transport_api_reliability_wlan_peer2.conf\
1680test_transport_api_unreliability_wlan_peer1.conf\
1681test_transport_api_unreliability_wlan_peer2.conf\
1682test_transport_api_reliability_bluetooth_peer1.conf\
1683test_transport_api_reliability_bluetooth_peer2.conf\
1684test_transport_api_wlan_peer1.conf\
1685test_transport_api_wlan_peer2.conf\
1686test_transport_api_bluetooth_peer1.conf\
1687test_transport_api_bluetooth_peer2.conf\
1688test_transport_api_monitor_peers_peer1.conf\ 459test_transport_api_monitor_peers_peer1.conf\
1689test_transport_api_monitor_peers_peer2.conf\ 460test_transport_api_monitor_peers_peer2.conf\
1690test_transport_api_monitor_validation_peer1.conf\ 461test_transport_api_monitor_validation_peer1.conf\
1691test_transport_api_monitor_validation_peer2.conf\ 462test_transport_api_monitor_validation_peer2.conf\
1692test_transport_defaults.conf\ 463test_transport_defaults.conf\
1693test_transport_api_disconnect_tcp_peer1.conf\
1694test_transport_api_disconnect_tcp_peer2.conf\
1695test_transport_api_timeout_http_peer1.conf\
1696test_transport_api_timeout_http_peer2.conf\
1697test_transport_api_timeout_https_peer1.conf\
1698test_transport_api_timeout_https_peer2.conf\
1699test_transport_blacklisting_cfg_peer1.conf \
1700test_transport_blacklisting_cfg_peer2.conf \
1701test_transport_blacklisting_cfg_blp_peer1_full.conf\
1702test_transport_blacklisting_cfg_blp_peer1_plugin.conf \
1703test_transport_blacklisting_cfg_blp_peer2_full.conf\
1704test_transport_blacklisting_cfg_blp_peer2_plugin.conf \
1705test_transport_blacklisting_cfg_blp_peer1_multiple_plugins.conf \
1706test_transport_blacklisting_cfg_blp_peer2_multiple_plugins.conf \
1707test_transport_api_http_reverse_peer1.conf \
1708test_transport_api_http_reverse_peer2.conf \
1709perf_tcp_peer1.conf \
1710perf_tcp_peer2.conf \
1711test_transport_api_slow_ats_peer1.conf \
1712test_transport_api_slow_ats_peer2.conf \
1713 tcp_connection_legacy.c \
1714 tcp_server_mst_legacy.c \
1715 tcp_server_legacy.c \
1716 tcp_service_legacy.c \
1717test_communicator_unix_basic_peer1.conf \ 464test_communicator_unix_basic_peer1.conf \
1718test_communicator_unix_basic_peer2.conf \ 465test_communicator_unix_basic_peer2.conf \
1719test_communicator_tcp_basic_peer1.conf \ 466test_communicator_tcp_basic_peer1.conf \