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