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