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