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.am1687
1 files changed, 0 insertions, 1687 deletions
diff --git a/src/transport/Makefile.am b/src/transport/Makefile.am
deleted file mode 100644
index 2b09ccf63..000000000
--- a/src/transport/Makefile.am
+++ /dev/null
@@ -1,1687 +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
776# Only test TNG if we run experimental
777if HAVE_EXPERIMENTAL
778check_SCRIPTS= \
779 test_transport_simple_send_string.sh \
780 test_transport_simple_send.sh \
781 test_transport_simple_send_broadcast.sh \
782 test_transport_udp_backchannel.sh \
783 test_transport_simple_send_dv_circle.sh
784 # test_transport_simple_send_dv_inverse.sh
785endif
786
787test_transport_start_with_config_SOURCES = \
788 test_transport_start_with_config.c
789test_transport_start_with_config_LDADD = \
790 $(top_builddir)/src/testing/libgnunettesting.la \
791 $(top_builddir)/src/util/libgnunetutil.la \
792 $(top_builddir)/src/hello/libgnunethello.la \
793 libgnunettransportcore.la \
794 libgnunettransporttesting2.la
795
796test_transport_testing_startstop_SOURCES = \
797 test_transport_testing_startstop.c
798test_transport_testing_startstop_LDADD = \
799 $(top_builddir)/src/util/libgnunetutil.la \
800 libgnunettransport.la \
801 $(top_builddir)/src/hello/libgnunethello.la \
802 libgnunettransporttesting.la
803
804test_transport_testing_restart_SOURCES = \
805 test_transport_testing_restart.c
806test_transport_testing_restart_LDADD = \
807 $(top_builddir)/src/util/libgnunetutil.la \
808 libgnunettransport.la \
809 $(top_builddir)/src/hello/libgnunethello.la \
810 libgnunettransporttesting.la
811
812test_transport_api_blacklisting_tcp_SOURCES = \
813 test_transport_api_blacklisting.c
814test_transport_api_blacklisting_tcp_LDADD = \
815 libgnunettransport.la \
816 $(top_builddir)/src/hello/libgnunethello.la \
817 $(top_builddir)/src/statistics/libgnunetstatistics.la \
818 $(top_builddir)/src/util/libgnunetutil.la \
819 libgnunettransporttesting.la
820
821test_transport_blacklisting_no_bl_SOURCES = \
822 test_transport_blacklisting.c
823test_transport_blacklisting_no_bl_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_outbound_bl_full_SOURCES = \
831 test_transport_blacklisting.c
832test_transport_blacklisting_outbound_bl_full_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_plugin_SOURCES = \
840 test_transport_blacklisting.c
841test_transport_blacklisting_outbound_bl_plugin_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_inbound_bl_full_SOURCES = \
849 test_transport_blacklisting.c
850test_transport_blacklisting_inbound_bl_full_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_plugin_SOURCES = \
858 test_transport_blacklisting.c
859test_transport_blacklisting_inbound_bl_plugin_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_multiple_plugins_SOURCES = \
867 test_transport_blacklisting.c
868test_transport_blacklisting_multiple_plugins_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
875
876test_transport_api_disconnect_tcp_SOURCES = \
877 test_transport_api_disconnect.c
878test_transport_api_disconnect_tcp_LDADD = \
879 libgnunettransport.la \
880 $(top_builddir)/src/hello/libgnunethello.la \
881 $(top_builddir)/src/statistics/libgnunetstatistics.la \
882 $(top_builddir)/src/util/libgnunetutil.la \
883 libgnunettransporttesting.la
884
885test_plugin_tcp_SOURCES = \
886 test_plugin_transport.c
887test_plugin_tcp_LDADD = \
888 libgnunettransport.la \
889 $(top_builddir)/src/statistics/libgnunetstatistics.la \
890 $(top_builddir)/src/hello/libgnunethello.la \
891 $(top_builddir)/src/util/libgnunetutil.la \
892 libgnunettransporttesting.la
893
894if HAVE_EXPERIMENTAL
895test_plugin_udp_SOURCES = \
896 test_plugin_transport.c
897test_plugin_udp_LDADD = \
898 libgnunettransport.la \
899 $(top_builddir)/src/statistics/libgnunetstatistics.la \
900 $(top_builddir)/src/hello/libgnunethello.la \
901 $(top_builddir)/src/util/libgnunetutil.la \
902 libgnunettransporttesting.la
903endif
904
905if HAVE_EXPERIMENTAL
906test_communicator_basic_unix_SOURCES = \
907 test_communicator_basic.c
908test_communicator_basic_unix_LDADD = \
909 libgnunettransporttesting2.la \
910 $(top_builddir)/src/testing/libgnunettesting.la \
911 $(top_builddir)/src/util/libgnunetutil.la \
912 $(top_builddir)/src/statistics/libgnunetstatistics.la
913
914test_communicator_basic_tcp_SOURCES = \
915 test_communicator_basic.c
916test_communicator_basic_tcp_LDADD = \
917 libgnunettransporttesting2.la \
918 $(top_builddir)/src/testing/libgnunettesting.la \
919 $(top_builddir)/src/util/libgnunetutil.la \
920 $(top_builddir)/src/statistics/libgnunetstatistics.la
921
922test_communicator_basic_udp_SOURCES = \
923 test_communicator_basic.c
924test_communicator_basic_udp_LDADD = \
925 libgnunettransporttesting2.la \
926 $(top_builddir)/src/testing/libgnunettesting.la \
927 $(top_builddir)/src/util/libgnunetutil.la \
928 $(top_builddir)/src/statistics/libgnunetstatistics.la
929
930test_communicator_rekey_tcp_SOURCES = \
931 test_communicator_basic.c
932test_communicator_rekey_tcp_LDADD = \
933 libgnunettransporttesting2.la \
934 $(top_builddir)/src/testing/libgnunettesting.la \
935 $(top_builddir)/src/util/libgnunetutil.la \
936 $(top_builddir)/src/statistics/libgnunetstatistics.la
937
938test_communicator_rekey_udp_SOURCES = \
939 test_communicator_basic.c
940test_communicator_rekey_udp_LDADD = \
941 libgnunettransporttesting2.la \
942 $(top_builddir)/src/testing/libgnunettesting.la \
943 $(top_builddir)/src/util/libgnunetutil.la \
944 $(top_builddir)/src/statistics/libgnunetstatistics.la
945
946test_communicator_backchannel_udp_SOURCES = \
947 test_communicator_basic.c
948test_communicator_backchannel_udp_LDADD = \
949 libgnunettransporttesting2.la \
950 $(top_builddir)/src/testing/libgnunettesting.la \
951 $(top_builddir)/src/util/libgnunetutil.la \
952 $(top_builddir)/src/statistics/libgnunetstatistics.la
953
954test_communicator_bidirect_tcp_SOURCES = \
955 test_communicator_basic.c
956test_communicator_bidirect_tcp_LDADD = \
957 libgnunettransporttesting2.la \
958 $(top_builddir)/src/testing/libgnunettesting.la \
959 $(top_builddir)/src/util/libgnunetutil.la \
960 $(top_builddir)/src/statistics/libgnunetstatistics.la
961endif
962
963test_plugin_unix_SOURCES = \
964 test_plugin_transport.c
965test_plugin_unix_LDADD = \
966 libgnunettransport.la \
967 $(top_builddir)/src/statistics/libgnunetstatistics.la \
968 $(top_builddir)/src/hello/libgnunethello.la \
969 $(top_builddir)/src/util/libgnunetutil.la \
970 libgnunettransporttesting.la
971
972test_plugin_wlan_SOURCES = \
973 test_plugin_transport.c
974test_plugin_wlan_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_bluetooth_SOURCES = \
982 test_plugin_transport.c
983test_plugin_bluetooth_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_http_common_SOURCES = \
991 test_http_common.c plugin_transport_http_common.c
992test_http_common_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_plugin_http_server_SOURCES = \
1000 test_plugin_transport.c
1001test_plugin_http_server_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_https_server_SOURCES = \
1009 test_plugin_transport.c
1010test_plugin_https_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_http_client_SOURCES = \
1018 test_plugin_transport.c
1019test_plugin_http_client_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_https_client_SOURCES = \
1027 test_plugin_transport.c
1028test_plugin_https_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_transport_api_tcp_SOURCES = \
1036 test_transport_api.c
1037test_transport_api_tcp_LDADD = \
1038 libgnunettransport.la \
1039 $(top_builddir)/src/hello/libgnunethello.la \
1040 $(top_builddir)/src/util/libgnunetutil.la \
1041 libgnunettransporttesting.la
1042
1043test_transport_api2_tcp_SOURCES = \
1044 test_transport_api2.c
1045test_transport_api2_tcp_LDADD = \
1046 $(top_builddir)/src/hello/libgnunethello.la \
1047 $(top_builddir)/src/util/libgnunetutil.la \
1048 libgnunettransporttesting2.la
1049
1050test_transport_api_restart_1peer_SOURCES = \
1051 test_transport_api_restart_reconnect.c
1052test_transport_api_restart_1peer_LDADD = \
1053 libgnunettransport.la \
1054 $(top_builddir)/src/hello/libgnunethello.la \
1055 $(top_builddir)/src/ats/libgnunetats.la \
1056 $(top_builddir)/src/statistics/libgnunetstatistics.la \
1057 $(top_builddir)/src/util/libgnunetutil.la \
1058 libgnunettransporttesting.la
1059
1060test_transport_api_restart_2peers_SOURCES = \
1061 test_transport_api_restart_reconnect.c
1062test_transport_api_restart_2peers_LDADD = \
1063 libgnunettransport.la \
1064 $(top_builddir)/src/hello/libgnunethello.la \
1065 $(top_builddir)/src/ats/libgnunetats.la \
1066$(top_builddir)/src/statistics/libgnunetstatistics.la \
1067 $(top_builddir)/src/util/libgnunetutil.la \
1068 libgnunettransporttesting.la
1069
1070test_transport_api_limited_sockets_tcp_SOURCES = \
1071 test_transport_api_limited_sockets.c
1072test_transport_api_limited_sockets_tcp_LDADD = \
1073 libgnunettransport.la \
1074 $(top_builddir)/src/hello/libgnunethello.la \
1075 $(top_builddir)/src/util/libgnunetutil.la \
1076 libgnunettransporttesting.la
1077
1078test_transport_api_tcp_nat_SOURCES = \
1079 test_transport_api.c
1080test_transport_api_tcp_nat_LDADD = \
1081 libgnunettransport.la \
1082 $(top_builddir)/src/hello/libgnunethello.la \
1083 $(top_builddir)/src/util/libgnunetutil.la \
1084 libgnunettransporttesting.la
1085
1086test_transport_api_manipulation_send_tcp_SOURCES = \
1087 test_transport_api_manipulation_send_tcp.c
1088test_transport_api_manipulation_send_tcp_LDADD = \
1089 libgnunettransport.la \
1090 $(top_builddir)/src/hello/libgnunethello.la \
1091 $(top_builddir)/src/util/libgnunetutil.la \
1092 libgnunettransporttesting.la
1093
1094test_transport_api_manipulation_recv_tcp_SOURCES = \
1095 test_transport_api_manipulation_recv_tcp.c
1096test_transport_api_manipulation_recv_tcp_LDADD = \
1097 libgnunettransport.la \
1098 $(top_builddir)/src/hello/libgnunethello.la \
1099 $(top_builddir)/src/util/libgnunetutil.la \
1100 libgnunettransporttesting.la
1101
1102test_transport_api_manipulation_cfg_SOURCES = \
1103 test_transport_api_manipulation_cfg.c
1104test_transport_api_manipulation_cfg_LDADD = \
1105 libgnunettransport.la \
1106 $(top_builddir)/src/hello/libgnunethello.la \
1107 $(top_builddir)/src/util/libgnunetutil.la \
1108 libgnunettransporttesting.la
1109
1110test_transport_api_reliability_tcp_SOURCES = \
1111 test_transport_api_reliability.c
1112test_transport_api_reliability_tcp_LDADD = \
1113 libgnunettransport.la \
1114 $(top_builddir)/src/hello/libgnunethello.la \
1115 $(top_builddir)/src/util/libgnunetutil.la \
1116 libgnunettransporttesting.la
1117
1118test_transport_api_timeout_tcp_SOURCES = \
1119 test_transport_api_timeout.c
1120test_transport_api_timeout_tcp_LDADD = \
1121 libgnunettransport.la \
1122 $(top_builddir)/src/hello/libgnunethello.la \
1123 $(top_builddir)/src/util/libgnunetutil.la \
1124 libgnunettransporttesting.la
1125
1126test_transport_api_timeout_unix_SOURCES = \
1127 test_transport_api_timeout.c
1128test_transport_api_timeout_unix_LDADD = \
1129 libgnunettransport.la \
1130 $(top_builddir)/src/hello/libgnunethello.la \
1131 $(top_builddir)/src/util/libgnunetutil.la \
1132 libgnunettransporttesting.la
1133
1134test_transport_api_timeout_wlan_SOURCES = \
1135 test_transport_api_timeout.c
1136test_transport_api_timeout_wlan_LDADD = \
1137 libgnunettransport.la \
1138 $(top_builddir)/src/hello/libgnunethello.la \
1139 $(top_builddir)/src/util/libgnunetutil.la \
1140 libgnunettransporttesting.la
1141
1142test_transport_api_timeout_bluetooth_SOURCES = \
1143 test_transport_api_timeout.c
1144test_transport_api_timeout_bluetooth_LDADD = \
1145 libgnunettransport.la \
1146 $(top_builddir)/src/hello/libgnunethello.la \
1147 $(top_builddir)/src/util/libgnunetutil.la \
1148 libgnunettransporttesting.la
1149
1150test_transport_api_reliability_tcp_nat_SOURCES = \
1151 test_transport_api_reliability.c
1152test_transport_api_reliability_tcp_nat_LDADD = \
1153 libgnunettransport.la \
1154 $(top_builddir)/src/hello/libgnunethello.la \
1155 $(top_builddir)/src/util/libgnunetutil.la \
1156 libgnunettransporttesting.la
1157
1158test_transport_api_reliability_bluetooth_SOURCES = \
1159 test_transport_api_reliability.c
1160test_transport_api_reliability_bluetooth_LDADD = \
1161 libgnunettransport.la \
1162 $(top_builddir)/src/hello/libgnunethello.la \
1163 $(top_builddir)/src/util/libgnunetutil.la \
1164 libgnunettransporttesting.la
1165
1166test_transport_api_reliability_wlan_SOURCES = \
1167 test_transport_api_reliability.c
1168test_transport_api_reliability_wlan_LDADD = \
1169 libgnunettransport.la \
1170 $(top_builddir)/src/hello/libgnunethello.la \
1171 $(top_builddir)/src/util/libgnunetutil.la \
1172 libgnunettransporttesting.la
1173
1174if HAVE_EXPERIMENTAL
1175test_transport_api_udp_SOURCES = \
1176 test_transport_api.c
1177test_transport_api_udp_LDADD = \
1178 libgnunettransport.la \
1179 $(top_builddir)/src/hello/libgnunethello.la \
1180 $(top_builddir)/src/util/libgnunetutil.la \
1181 libgnunettransporttesting.la
1182
1183test_transport_api_timeout_udp_SOURCES = \
1184 test_transport_api_timeout.c
1185test_transport_api_timeout_udp_LDADD = \
1186 libgnunettransport.la \
1187 $(top_builddir)/src/hello/libgnunethello.la \
1188 $(top_builddir)/src/util/libgnunetutil.la \
1189 libgnunettransporttesting.la
1190
1191test_transport_api_udp_nat_SOURCES = \
1192 test_transport_api.c
1193test_transport_api_udp_nat_LDADD = \
1194 libgnunettransport.la \
1195 $(top_builddir)/src/hello/libgnunethello.la \
1196 $(top_builddir)/src/util/libgnunetutil.la \
1197 libgnunettransporttesting.la
1198endif
1199
1200test_transport_api_unix_SOURCES = \
1201 test_transport_api.c
1202test_transport_api_unix_LDADD = \
1203 libgnunettransport.la \
1204 $(top_builddir)/src/hello/libgnunethello.la \
1205 $(top_builddir)/src/util/libgnunetutil.la \
1206 libgnunettransporttesting.la
1207
1208test_transport_api_unix_abstract_SOURCES = \
1209 test_transport_api.c
1210test_transport_api_unix_abstract_LDADD = \
1211 libgnunettransport.la \
1212 $(top_builddir)/src/hello/libgnunethello.la \
1213 $(top_builddir)/src/util/libgnunetutil.la \
1214 libgnunettransporttesting.la
1215
1216# HTTP tests
1217test_transport_api_http_SOURCES = \
1218 test_transport_api.c
1219test_transport_api_http_LDADD = \
1220 libgnunettransport.la \
1221 $(top_builddir)/src/hello/libgnunethello.la \
1222 $(top_builddir)/src/util/libgnunetutil.la \
1223 libgnunettransporttesting.la
1224
1225test_transport_api_http_reverse_SOURCES = \
1226 test_transport_api.c
1227test_transport_api_http_reverse_LDADD = \
1228 libgnunettransport.la \
1229 $(top_builddir)/src/hello/libgnunethello.la \
1230 $(top_builddir)/src/util/libgnunetutil.la \
1231 libgnunettransporttesting.la
1232
1233test_transport_api_timeout_http_SOURCES = \
1234 test_transport_api_timeout.c
1235test_transport_api_timeout_http_LDADD = \
1236 libgnunettransport.la \
1237 $(top_builddir)/src/hello/libgnunethello.la \
1238 $(top_builddir)/src/util/libgnunetutil.la \
1239 libgnunettransporttesting.la
1240
1241test_transport_api_reliability_http_SOURCES = \
1242 test_transport_api_reliability.c
1243test_transport_api_reliability_http_LDADD = \
1244 libgnunettransport.la \
1245 $(top_builddir)/src/hello/libgnunethello.la \
1246 $(top_builddir)/src/util/libgnunetutil.la \
1247 libgnunettransporttesting.la
1248
1249test_transport_api_reliability_http_xhr_SOURCES = \
1250 test_transport_api_reliability.c
1251test_transport_api_reliability_http_xhr_LDADD = \
1252 libgnunettransport.la \
1253 $(top_builddir)/src/hello/libgnunethello.la \
1254 $(top_builddir)/src/util/libgnunetutil.la \
1255 libgnunettransporttesting.la
1256
1257test_quota_compliance_http_SOURCES = \
1258 test_quota_compliance.c
1259test_quota_compliance_http_LDADD = \
1260 libgnunettransport.la \
1261 $(top_builddir)/src/hello/libgnunethello.la \
1262 $(top_builddir)/src/ats/libgnunetats.la \
1263 $(top_builddir)/src/nt/libgnunetnt.la \
1264 $(top_builddir)/src/util/libgnunetutil.la \
1265 libgnunettransporttesting.la
1266
1267test_quota_compliance_http_asymmetric_SOURCES = \
1268 test_quota_compliance.c
1269test_quota_compliance_http_asymmetric_LDADD = \
1270 libgnunettransport.la \
1271 $(top_builddir)/src/hello/libgnunethello.la \
1272 $(top_builddir)/src/ats/libgnunetats.la \
1273 $(top_builddir)/src/nt/libgnunetnt.la \
1274 $(top_builddir)/src/util/libgnunetutil.la \
1275 libgnunettransporttesting.la
1276
1277test_quota_compliance_https_SOURCES = \
1278 test_quota_compliance.c
1279test_quota_compliance_https_LDADD = \
1280 libgnunettransport.la \
1281 $(top_builddir)/src/hello/libgnunethello.la \
1282 $(top_builddir)/src/ats/libgnunetats.la \
1283 $(top_builddir)/src/nt/libgnunetnt.la \
1284 $(top_builddir)/src/util/libgnunetutil.la \
1285 libgnunettransporttesting.la
1286
1287test_quota_compliance_https_asymmetric_SOURCES = \
1288 test_quota_compliance.c
1289test_quota_compliance_https_asymmetric_LDADD = \
1290 libgnunettransport.la \
1291 $(top_builddir)/src/hello/libgnunethello.la \
1292 $(top_builddir)/src/ats/libgnunetats.la \
1293 $(top_builddir)/src/nt/libgnunetnt.la \
1294 $(top_builddir)/src/util/libgnunetutil.la \
1295 libgnunettransporttesting.la
1296
1297# HTTPS tests
1298test_transport_api_https_SOURCES = \
1299 test_transport_api.c
1300test_transport_api_https_LDADD = \
1301 libgnunettransport.la \
1302 $(top_builddir)/src/hello/libgnunethello.la \
1303 $(top_builddir)/src/util/libgnunetutil.la \
1304 libgnunettransporttesting.la
1305
1306test_transport_api_timeout_https_SOURCES = \
1307 test_transport_api_timeout.c
1308test_transport_api_timeout_https_LDADD = \
1309 libgnunettransport.la \
1310 $(top_builddir)/src/hello/libgnunethello.la \
1311 $(top_builddir)/src/util/libgnunetutil.la \
1312 libgnunettransporttesting.la
1313
1314
1315test_transport_api_reliability_https_SOURCES = \
1316 test_transport_api_reliability.c
1317test_transport_api_reliability_https_LDADD = \
1318 libgnunettransport.la \
1319 $(top_builddir)/src/hello/libgnunethello.la \
1320 $(top_builddir)/src/util/libgnunetutil.la \
1321 libgnunettransporttesting.la
1322
1323test_transport_api_reliability_https_xhr_SOURCES = \
1324 test_transport_api_reliability.c
1325test_transport_api_reliability_https_xhr_LDADD = \
1326 libgnunettransport.la \
1327 $(top_builddir)/src/hello/libgnunethello.la \
1328 $(top_builddir)/src/util/libgnunetutil.la \
1329 libgnunettransporttesting.la
1330
1331test_transport_api_reliability_unix_SOURCES = \
1332 test_transport_api_reliability.c
1333test_transport_api_reliability_unix_LDADD = \
1334 libgnunettransport.la \
1335 $(top_builddir)/src/hello/libgnunethello.la \
1336 $(top_builddir)/src/util/libgnunetutil.la \
1337 libgnunettransporttesting.la
1338
1339if HAVE_EXPERIMENTAL
1340test_transport_api_reliability_udp_SOURCES = \
1341 test_transport_api_reliability.c
1342test_transport_api_reliability_udp_LDADD = \
1343 libgnunettransport.la \
1344 $(top_builddir)/src/hello/libgnunethello.la \
1345 $(top_builddir)/src/util/libgnunetutil.la \
1346 libgnunettransporttesting.la
1347endif
1348
1349if LINUX
1350test_transport_api_wlan_SOURCES = \
1351 test_transport_api.c
1352test_transport_api_wlan_LDADD = \
1353 libgnunettransport.la \
1354 $(top_builddir)/src/hello/libgnunethello.la \
1355 $(top_builddir)/src/util/libgnunetutil.la \
1356 libgnunettransporttesting.la
1357endif
1358
1359if LINUX
1360if HAVE_LIBBLUETOOTH
1361test_transport_api_bluetooth_SOURCES = \
1362 test_transport_api.c
1363test_transport_api_bluetooth_LDADD = \
1364 libgnunettransport.la \
1365 $(top_builddir)/src/hello/libgnunethello.la \
1366 $(top_builddir)/src/util/libgnunetutil.la \
1367 libgnunettransporttesting.la
1368endif
1369endif
1370
1371test_transport_address_switch_tcp_SOURCES = \
1372 test_transport_address_switch.c
1373test_transport_address_switch_tcp_LDADD = \
1374 libgnunettransport.la \
1375 $(top_builddir)/src/hello/libgnunethello.la \
1376 $(top_builddir)/src/statistics/libgnunetstatistics.la \
1377 $(top_builddir)/src/util/libgnunetutil.la \
1378 libgnunettransporttesting.la
1379
1380if HAVE_EXPERIMENTAL
1381test_transport_address_switch_udp_SOURCES = \
1382 test_transport_address_switch.c
1383test_transport_address_switch_udp_LDADD = \
1384 libgnunettransport.la \
1385 $(top_builddir)/src/hello/libgnunethello.la \
1386 $(top_builddir)/src/statistics/libgnunetstatistics.la \
1387 $(top_builddir)/src/util/libgnunetutil.la \
1388 libgnunettransporttesting.la
1389endif
1390
1391 test_transport_address_switch_http_SOURCES = \
1392 test_transport_address_switch.c
1393test_transport_address_switch_http_LDADD = \
1394 libgnunettransport.la \
1395 $(top_builddir)/src/hello/libgnunethello.la \
1396 $(top_builddir)/src/statistics/libgnunetstatistics.la \
1397 $(top_builddir)/src/util/libgnunetutil.la \
1398 libgnunettransporttesting.la
1399
1400 test_transport_address_switch_https_SOURCES = \
1401 test_transport_address_switch.c
1402test_transport_address_switch_https_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
1409test_quota_compliance_tcp_SOURCES = \
1410 test_quota_compliance.c
1411test_quota_compliance_tcp_LDADD = \
1412 libgnunettransport.la \
1413 $(top_builddir)/src/hello/libgnunethello.la \
1414 $(top_builddir)/src/ats/libgnunetats.la \
1415 $(top_builddir)/src/nt/libgnunetnt.la \
1416 $(top_builddir)/src/util/libgnunetutil.la \
1417 libgnunettransporttesting.la
1418
1419test_quota_compliance_tcp_asymmetric_SOURCES = \
1420 test_quota_compliance.c
1421test_quota_compliance_tcp_asymmetric_LDADD = \
1422 libgnunettransport.la \
1423 $(top_builddir)/src/hello/libgnunethello.la \
1424 $(top_builddir)/src/nt/libgnunetnt.la \
1425 $(top_builddir)/src/ats/libgnunetats.la \
1426 $(top_builddir)/src/util/libgnunetutil.la \
1427 libgnunettransporttesting.la
1428
1429if HAVE_EXPERIMENTAL
1430test_quota_compliance_udp_SOURCES = \
1431 test_quota_compliance.c
1432test_quota_compliance_udp_LDADD = \
1433 libgnunettransport.la \
1434 $(top_builddir)/src/hello/libgnunethello.la \
1435 $(top_builddir)/src/ats/libgnunetats.la \
1436 $(top_builddir)/src/nt/libgnunetnt.la \
1437 $(top_builddir)/src/util/libgnunetutil.la \
1438 libgnunettransporttesting.la
1439endif
1440
1441test_quota_compliance_unix_SOURCES = \
1442 test_quota_compliance.c
1443test_quota_compliance_unix_LDADD = \
1444 libgnunettransport.la \
1445 $(top_builddir)/src/hello/libgnunethello.la \
1446 $(top_builddir)/src/ats/libgnunetats.la \
1447 $(top_builddir)/src/nt/libgnunetnt.la \
1448 $(top_builddir)/src/util/libgnunetutil.la \
1449 libgnunettransporttesting.la
1450
1451test_quota_compliance_unix_asymmetric_SOURCES = \
1452 test_quota_compliance.c
1453test_quota_compliance_unix_asymmetric_LDADD = \
1454 libgnunettransport.la \
1455 $(top_builddir)/src/hello/libgnunethello.la \
1456 $(top_builddir)/src/ats/libgnunetats.la \
1457 $(top_builddir)/src/nt/libgnunetnt.la \
1458 $(top_builddir)/src/util/libgnunetutil.la \
1459 libgnunettransporttesting.la
1460
1461test_quota_compliance_wlan_SOURCES = \
1462 test_quota_compliance.c
1463test_quota_compliance_wlan_LDADD = \
1464 libgnunettransport.la \
1465 $(top_builddir)/src/hello/libgnunethello.la \
1466 $(top_builddir)/src/ats/libgnunetats.la \
1467 $(top_builddir)/src/nt/libgnunetnt.la \
1468 $(top_builddir)/src/util/libgnunetutil.la \
1469 libgnunettransporttesting.la
1470
1471test_quota_compliance_wlan_asymmetric_SOURCES = \
1472 test_quota_compliance.c
1473test_quota_compliance_wlan_asymmetric_LDADD = \
1474 libgnunettransport.la \
1475 $(top_builddir)/src/hello/libgnunethello.la \
1476 $(top_builddir)/src/ats/libgnunetats.la \
1477 $(top_builddir)/src/nt/libgnunetnt.la \
1478 $(top_builddir)/src/util/libgnunetutil.la \
1479 libgnunettransporttesting.la
1480
1481test_quota_compliance_bluetooth_SOURCES = \
1482 test_quota_compliance.c
1483test_quota_compliance_bluetooth_LDADD = \
1484 libgnunettransport.la \
1485 $(top_builddir)/src/hello/libgnunethello.la \
1486 $(top_builddir)/src/ats/libgnunetats.la \
1487 $(top_builddir)/src/nt/libgnunetnt.la \
1488 $(top_builddir)/src/util/libgnunetutil.la \
1489 libgnunettransporttesting.la
1490
1491test_quota_compliance_bluetooth_asymmetric_SOURCES = \
1492 test_quota_compliance.c
1493test_quota_compliance_bluetooth_asymmetric_LDADD = \
1494 libgnunettransport.la \
1495 $(top_builddir)/src/hello/libgnunethello.la \
1496 $(top_builddir)/src/ats/libgnunetats.la \
1497 $(top_builddir)/src/nt/libgnunetnt.la \
1498 $(top_builddir)/src/util/libgnunetutil.la \
1499 libgnunettransporttesting.la
1500
1501test_transport_api_multi_SOURCES = \
1502 test_transport_api.c
1503test_transport_api_multi_LDADD = \
1504 libgnunettransport.la \
1505 $(top_builddir)/src/hello/libgnunethello.la \
1506 $(top_builddir)/src/util/libgnunetutil.la \
1507 libgnunettransporttesting.la
1508
1509test_transport_api_monitor_peers_SOURCES = \
1510 test_transport_api_monitor_peers.c
1511test_transport_api_monitor_peers_LDADD = \
1512 libgnunettransport.la \
1513 $(top_builddir)/src/hello/libgnunethello.la \
1514 $(top_builddir)/src/util/libgnunetutil.la \
1515 libgnunettransporttesting.la
1516
1517test_transport_api_slow_ats_SOURCES = \
1518 test_transport_api.c
1519test_transport_api_slow_ats_LDADD = \
1520 libgnunettransport.la \
1521 $(top_builddir)/src/hello/libgnunethello.la \
1522 $(top_builddir)/src/util/libgnunetutil.la \
1523 libgnunettransporttesting.la
1524
1525
1526EXTRA_DIST = \
1527test_transport_simple_send_string.sh \
1528test_transport_simple_send.sh \
1529test_transport_simple_send_broadcast.sh \
1530test_transport_udp_backchannel.sh \
1531test_transport_simple_send_dv_circle.sh \
1532gnunet-transport-certificate-creation.in \
1533communicator-unix.conf \
1534test_plugin_hostkey \
1535test_plugin_hostkey.ecc \
1536test_delay \
1537template_cfg_peer1.conf\
1538template_cfg_peer2.conf\
1539test_plugin_transport_data.conf\
1540test_plugin_transport_data_udp.conf\
1541test_quota_compliance_data.conf\
1542test_quota_compliance_http_peer1.conf\
1543test_quota_compliance_http_peer2.conf\
1544test_quota_compliance_https_peer1.conf\
1545test_quota_compliance_https_peer2.conf\
1546test_quota_compliance_tcp_peer1.conf\
1547test_quota_compliance_tcp_peer2.conf\
1548test_quota_compliance_udp_peer1.conf\
1549test_quota_compliance_udp_peer2.conf\
1550test_quota_compliance_unix_peer1.conf\
1551test_quota_compliance_unix_peer2.conf\
1552test_quota_compliance_wlan_peer1.conf\
1553test_quota_compliance_wlan_peer2.conf\
1554test_quota_compliance_bluetooth_peer1.conf\
1555test_quota_compliance_bluetooth_peer2.conf\
1556test_quota_compliance_http_asymmetric_peer1.conf\
1557test_quota_compliance_http_asymmetric_peer2.conf\
1558test_quota_compliance_https_asymmetric_peer1.conf\
1559test_quota_compliance_https_asymmetric_peer2.conf\
1560test_quota_compliance_tcp_asymmetric_peer1.conf\
1561test_quota_compliance_tcp_asymmetric_peer2.conf\
1562test_quota_compliance_unix_asymmetric_peer1.conf\
1563test_quota_compliance_unix_asymmetric_peer2.conf\
1564test_quota_compliance_wlan_asymmetric_peer1.conf\
1565test_quota_compliance_wlan_asymmetric_peer2.conf\
1566test_quota_compliance_bluetooth_asymmetric_peer1.conf\
1567test_quota_compliance_bluetooth_asymmetric_peer2.conf\
1568test_transport_api_data.conf\
1569test_transport_api_blacklisting_tcp_peer1.conf \
1570test_transport_api_blacklisting_tcp_peer2.conf \
1571test_transport_api_http_peer1.conf\
1572test_transport_api_http_peer2.conf\
1573test_transport_api_https_peer1.conf\
1574test_transport_api_https_peer2.conf\
1575test_transport_api_limited_sockets_tcp_peer1.conf\
1576test_transport_api_limited_sockets_tcp_peer2.conf\
1577test_transport_api_timeout_tcp_peer1.conf\
1578test_transport_api_timeout_tcp_peer2.conf\
1579test_transport_api_multi_peer1.conf\
1580test_transport_api_multi_peer2.conf\
1581test_transport_api_restart_1peer_peer1.conf\
1582test_transport_api_restart_1peer_peer2.conf\
1583test_transport_api_reliability_http_peer1.conf\
1584test_transport_api_reliability_http_peer2.conf\
1585test_transport_api_reliability_https_peer1.conf\
1586test_transport_api_reliability_https_peer2.conf\
1587test_transport_api_reliability_tcp_nat_peer1.conf\
1588test_transport_api_reliability_tcp_nat_peer2.conf\
1589test_transport_api_reliability_tcp_peer1.conf\
1590test_transport_api_reliability_tcp_peer2.conf\
1591test_transport_api_reliability_wlan_peer1.conf\
1592test_transport_api_reliability_wlan_peer2.conf\
1593test_transport_api_reliability_bluetooth_peer1.conf\
1594test_transport_api_reliability_bluetooth_peer2.conf\
1595test_transport_api_manipulation_send_tcp_peer1.conf\
1596test_transport_api_manipulation_send_tcp_peer2.conf\
1597test_transport_api_manipulation_recv_tcp_peer1.conf\
1598test_transport_api_manipulation_recv_tcp_peer2.conf\
1599test_transport_api_manipulation_cfg_peer1.conf\
1600test_transport_api_manipulation_cfg_peer2.conf\
1601test_transport_api_restart_1peer_peer1.conf\
1602test_transport_api_restart_1peer_peer2.conf\
1603test_transport_api_restart_2peers_peer1.conf\
1604test_transport_api_restart_2peers_peer2.conf\
1605test_transport_api_tcp_nat_peer1.conf\
1606test_transport_api_tcp_nat_peer2.conf\
1607test_transport_api_tcp_peer1.conf\
1608test_transport_api_tcp_peer2.conf\
1609test_transport_api2_tcp_peer1.conf\
1610test_transport_api2_tcp_peer2.conf\
1611test_transport_api_udp_nat_peer1.conf\
1612test_transport_api_udp_nat_peer2.conf\
1613test_transport_api_udp_peer1.conf\
1614test_transport_api_udp_peer2.conf\
1615test_transport_api_timeout_udp_peer1.conf\
1616test_transport_api_timeout_udp_peer2.conf\
1617test_transport_api_unix_peer1.conf\
1618test_transport_api_unix_peer2.conf\
1619test_transport_api_unix_abstract_peer1.conf \
1620test_transport_api_unix_abstract_peer2.conf \
1621test_transport_api_timeout_unix_peer1.conf\
1622test_transport_api_timeout_unix_peer2.conf\
1623test_transport_api_timeout_wlan_peer1.conf \
1624test_transport_api_timeout_wlan_peer2.conf \
1625test_transport_api_timeout_bluetooth_peer1.conf\
1626test_transport_api_timeout_bluetooth_peer2.conf\
1627test_transport_api_reliability_udp_peer1.conf\
1628test_transport_api_reliability_udp_peer2.conf\
1629test_transport_api_reliability_http_xhr_peer1.conf\
1630test_transport_api_reliability_http_xhr_peer2.conf\
1631test_transport_api_reliability_https_xhr_peer1.conf\
1632test_transport_api_reliability_https_xhr_peer2.conf\
1633test_transport_api_reliability_unix_peer1.conf\
1634test_transport_api_reliability_unix_peer2.conf\
1635test_transport_api_reliability_wlan_peer1.conf\
1636test_transport_api_reliability_wlan_peer2.conf\
1637test_transport_api_unreliability_wlan_peer1.conf\
1638test_transport_api_unreliability_wlan_peer2.conf\
1639test_transport_api_reliability_bluetooth_peer1.conf\
1640test_transport_api_reliability_bluetooth_peer2.conf\
1641test_transport_api_wlan_peer1.conf\
1642test_transport_api_wlan_peer2.conf\
1643test_transport_api_bluetooth_peer1.conf\
1644test_transport_api_bluetooth_peer2.conf\
1645test_transport_api_monitor_peers_peer1.conf\
1646test_transport_api_monitor_peers_peer2.conf\
1647test_transport_api_monitor_validation_peer1.conf\
1648test_transport_api_monitor_validation_peer2.conf\
1649test_transport_defaults.conf\
1650test_transport_api_disconnect_tcp_peer1.conf\
1651test_transport_api_disconnect_tcp_peer2.conf\
1652test_transport_api_timeout_http_peer1.conf\
1653test_transport_api_timeout_http_peer2.conf\
1654test_transport_api_timeout_https_peer1.conf\
1655test_transport_api_timeout_https_peer2.conf\
1656test_transport_blacklisting_cfg_peer1.conf \
1657test_transport_blacklisting_cfg_peer2.conf \
1658test_transport_blacklisting_cfg_blp_peer1_full.conf\
1659test_transport_blacklisting_cfg_blp_peer1_plugin.conf \
1660test_transport_blacklisting_cfg_blp_peer2_full.conf\
1661test_transport_blacklisting_cfg_blp_peer2_plugin.conf \
1662test_transport_blacklisting_cfg_blp_peer1_multiple_plugins.conf \
1663test_transport_blacklisting_cfg_blp_peer2_multiple_plugins.conf \
1664test_transport_api_http_reverse_peer1.conf \
1665test_transport_api_http_reverse_peer2.conf \
1666perf_tcp_peer1.conf \
1667perf_tcp_peer2.conf \
1668test_transport_api_slow_ats_peer1.conf \
1669test_transport_api_slow_ats_peer2.conf \
1670 tcp_connection_legacy.c \
1671 tcp_server_mst_legacy.c \
1672 tcp_server_legacy.c \
1673 tcp_service_legacy.c \
1674test_communicator_unix_basic_peer1.conf \
1675test_communicator_unix_basic_peer2.conf \
1676test_communicator_tcp_basic_peer1.conf \
1677test_communicator_tcp_basic_peer2.conf \
1678test_communicator_udp_basic_peer1.conf \
1679test_communicator_udp_basic_peer2.conf \
1680test_communicator_tcp_rekey_peer1.conf \
1681test_communicator_tcp_rekey_peer2.conf \
1682test_communicator_udp_rekey_peer1.conf \
1683test_communicator_udp_rekey_peer2.conf \
1684test_communicator_udp_backchannel_peer1.conf \
1685test_communicator_udp_backchannel_peer2.conf \
1686test_communicator_tcp_bidirect_peer1.conf \
1687test_communicator_tcp_bidirect_peer2.conf