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