4ace2bc1e76a809bc30e6bc1cb0eea4dada07949
[oweals/gnunet.git] / src / transport / Makefile.am
1 INCLUDES = -I$(top_srcdir)/src/include -I$(top_builddir)/src/include
2
3 plugindir = $(libdir)/gnunet
4
5 pkgcfgdir= $(pkgdatadir)/config.d/
6
7 libexecdir= $(pkglibdir)/libexec/
8
9 pkgcfg_DATA = \
10   transport.conf
11
12
13 if HAVE_MHD
14  GN_LIBMHD = -lmicrohttpd
15  HTTP_SERVER_PLUGIN_LA = libgnunet_plugin_transport_http_server.la
16  HTTPS_SERVER_PLUGIN_LA = libgnunet_plugin_transport_https_server.la
17  HTTP_SERVER_PLUGIN_TEST = test_plugin_http_server
18  HTTPS_SERVER_PLUGIN_TEST = test_plugin_https_server
19 endif
20
21 if HAVE_LIBCURL
22  HTTP_CLIENT_PLUGIN_TEST = test_plugin_http_client
23  HTTPS_CLIENT_PLUGIN_TEST = test_plugin_https_client
24  HTTP_CLIENT_PLUGIN_LA = libgnunet_plugin_transport_http_client.la
25  HTTPS_CLIENT_PLUGIN_LA = libgnunet_plugin_transport_https_client.la
26 endif
27
28 if HAVE_MHD 
29 if HAVE_LIBCURL
30  HTTP_API_TEST = test_transport_api_http
31  HTTP_REVERSE_API_TEST = test_transport_api_http_reverse
32  HTTP_API_TIMEOUT_TEST = test_transport_api_timeout_http
33  HTTP_REL_TEST = test_transport_api_reliability_http
34  HTTP_QUOTA_TEST = test_quota_compliance_http \
35                    test_quota_compliance_http_asymmetric
36  HTTPS_API_TEST = test_transport_api_https
37  HTTPS_API_TIMEOUT_TEST = test_transport_api_timeout_https
38  HTTPS_REL_TEST = test_transport_api_reliability_https
39  HTTPS_QUOTA_TEST = test_quota_compliance_https \
40                 test_quota_compliance_https_asymmetric 
41 endif
42 endif 
43
44 if USE_COVERAGE
45   AM_CFLAGS = --coverage -O0
46 endif
47
48 if LINUX
49  WLAN_BIN = gnunet-helper-transport-wlan
50  WLAN_BIN_DUMMY = gnunet-helper-transport-wlan-dummy
51  WLAN_BIN_SENDER = gnunet-transport-wlan-sender
52  WLAN_BIN_RECEIVER = gnunet-transport-wlan-receiver
53  WLAN_PLUGIN_LA = libgnunet_plugin_transport_wlan.la
54  WLAN_PLUGIN_TEST = test_plugin_wlan
55  WLAN_API_TEST = test_transport_api_wlan
56  WLAN_REL_TEST = test_transport_api_reliability_wlan
57  WLAN_UREL_TEST = test_transport_api_unreliability_wlan
58  WLAN_QUOTA_TEST = test_quota_compliance_wlan \
59                 test_quota_compliance_wlan_asymmetric
60 endif
61
62
63 if LINUX
64 install-exec-hook:
65         $(top_srcdir)/src/transport/install-wlan-helper.sh $(libexecdir) $(SUDO_BINARY) || true
66 else
67 install-exec-hook:
68 endif
69
70 if !MINGW
71 UNIX_PLUGIN_LA = libgnunet_plugin_transport_unix.la
72 UNIX_PLUGIN_TEST = test_transport_api_unix 
73 UNIX_TEST = test_plugin_unix
74 UNIX_PLUGIN_TIMEOUT_TEST = test_transport_api_timeout_unix
75 UNIX_REL_TEST = test_transport_api_unreliability_unix
76 UNIX_QUOTA_TEST = test_quota_compliance_unix \
77      test_quota_compliance_unix_asymmetric
78 endif
79
80 noinst_PROGRAMS = \
81  $(WLAN_BIN_SENDER) \
82  $(WLAN_BIN_RECEIVER)
83
84 if HAVE_TESTING
85 TESTING_LIBS = libgnunettransporttesting.la
86 endif
87
88 lib_LTLIBRARIES = \
89   libgnunettransport.la \
90   $(TESTING_LIBS)
91
92 libgnunettransporttesting_la_SOURCES = \
93   transport-testing.c transport-testing.h
94 libgnunettransporttesting_la_LIBADD = \
95   $(top_builddir)/src/transport/libgnunettransport.la \
96   $(top_builddir)/src/hello/libgnunethello.la \
97   $(top_builddir)/src/util/libgnunetutil.la \
98   $(top_builddir)/src/testing/libgnunettesting.la \
99   $(GN_LIBINTL) 
100 libgnunettransporttesting_la_DEPENDENCIES = \
101   libgnunettransport.la
102 libgnunettransporttesting_la_LDFLAGS = \
103  $(GN_LIB_LDFLAGS)
104
105 libgnunettransport_la_SOURCES = \
106   transport_api.c transport.h \
107   transport_api_blacklist.c \
108   transport_api_address_to_string.c \
109   transport_api_address_lookup.c
110 libgnunettransport_la_LIBADD = \
111   $(top_builddir)/src/hello/libgnunethello.la \
112   $(top_builddir)/src/util/libgnunetutil.la \
113   $(GN_LIBINTL) 
114 libgnunettransport_la_LDFLAGS = \
115   $(GN_LIB_LDFLAGS) $(WINFLAGS) \
116   -version-info 3:0:1
117
118 libexec_PROGRAMS = \
119  $(WLAN_BIN) \
120  $(WLAN_BIN_DUMMY) \
121  gnunet-service-transport 
122
123 bin_PROGRAMS = \
124  gnunet-transport \
125  gnunet-transport-certificate-creation
126
127 #bin_SCRIPTS = \
128 # gnunet-transport-certificate-creation
129
130 gnunet_transport_certificate_creation_SOURCES = \
131  gnunet-transport-certificate-creation.c
132 gnunet_transport_certificate_creation_LDADD = \
133   $(top_builddir)/src/util/libgnunetutil.la
134
135 gnunet_helper_transport_wlan_SOURCES = \
136  gnunet-helper-transport-wlan.c
137
138 gnunet_helper_transport_wlan_dummy_SOURCES = \
139  gnunet-helper-transport-wlan-dummy.c
140 gnunet_helper_transport_wlan_dummy_LDADD = \
141   $(top_builddir)/src/util/libgnunetutil.la 
142
143 gnunet_transport_wlan_sender_SOURCES = \
144  gnunet-transport-wlan-sender.c
145 gnunet_transport_wlan_sender_LDADD = \
146   $(top_builddir)/src/util/libgnunetutil.la 
147
148 gnunet_transport_wlan_receiver_SOURCES = \
149  gnunet-transport-wlan-receiver.c
150 gnunet_transport_wlan_receiver_LDADD = \
151   $(top_builddir)/src/util/libgnunetutil.la 
152
153 gnunet_transport_SOURCES = \
154  gnunet-transport.c         
155 gnunet_transport_LDADD = \
156   $(top_builddir)/src/transport/libgnunettransport.la \
157   $(top_builddir)/src/nat/libgnunetnat.la \
158   $(top_builddir)/src/hello/libgnunethello.la \
159   $(top_builddir)/src/util/libgnunetutil.la \
160   $(GN_LIBINTL)
161 gnunet_transport_DEPENDENCIES = \
162   libgnunettransport.la                         
163
164 gnunet_service_transport_SOURCES = \
165  gnunet-service-transport.c gnunet-service-transport.h \
166  gnunet-service-transport_blacklist.h gnunet-service-transport_blacklist.c \
167  gnunet-service-transport_clients.h gnunet-service-transport_clients.c \
168  gnunet-service-transport_hello.h gnunet-service-transport_hello.c \
169  gnunet-service-transport_neighbours.h gnunet-service-transport_neighbours.c \
170  gnunet-service-transport_plugins.h gnunet-service-transport_plugins.c \
171  gnunet-service-transport_validation.h gnunet-service-transport_validation.c \
172  gnunet-service-transport_manipulation.h gnunet-service-transport_manipulation.c 
173 gnunet_service_transport_LDADD = \
174   $(top_builddir)/src/ats/libgnunetats.la \
175   $(top_builddir)/src/hello/libgnunethello.la \
176   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
177   $(top_builddir)/src/statistics/libgnunetstatistics.la \
178   $(top_builddir)/src/util/libgnunetutil.la \
179   $(GN_GLPK) \
180   $(GN_LIBINTL)
181 gnunet_service_transport_CFLAGS = \
182   $(CFLAGS)
183 # -DANALYZE
184
185 plugin_LTLIBRARIES = \
186   libgnunet_plugin_transport_tcp.la \
187   libgnunet_plugin_transport_udp.la \
188   $(UNIX_PLUGIN_LA) \
189   $(HTTP_CLIENT_PLUGIN_LA) \
190   $(HTTPS_CLIENT_PLUGIN_LA) \
191   $(HTTP_SERVER_PLUGIN_LA) \
192   $(HTTPS_SERVER_PLUGIN_LA) \
193   $(WLAN_PLUGIN_LA) \
194   libgnunet_plugin_transport_template.la
195
196 libgnunet_plugin_transport_tcp_la_SOURCES = \
197   plugin_transport_tcp.c
198 libgnunet_plugin_transport_tcp_la_LIBADD = \
199   $(top_builddir)/src/hello/libgnunethello.la \
200   $(top_builddir)/src/statistics/libgnunetstatistics.la \
201   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
202   $(top_builddir)/src/nat/libgnunetnat.la \
203   $(top_builddir)/src/util/libgnunetutil.la \
204   $(LTLIBINTL)
205 libgnunet_plugin_transport_tcp_la_LDFLAGS = \
206  $(GN_PLUGIN_LDFLAGS)
207
208 libgnunet_plugin_transport_template_la_SOURCES = \
209   plugin_transport_template.c
210 libgnunet_plugin_transport_template_la_LIBADD = \
211   $(top_builddir)/src/util/libgnunetutil.la \
212   $(LTLIBINTL)
213 libgnunet_plugin_transport_template_la_LDFLAGS = \
214  $(GN_PLUGIN_LDFLAGS)
215
216 libgnunet_plugin_transport_wlan_la_SOURCES = \
217   plugin_transport_wlan.c plugin_transport_wlan.h
218 libgnunet_plugin_transport_wlan_la_LIBADD = \
219   $(top_builddir)/src/hello/libgnunethello.la \
220   $(top_builddir)/src/statistics/libgnunetstatistics.la \
221   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
222   $(top_builddir)/src/fragmentation/libgnunetfragmentation.la \
223   $(top_builddir)/src/util/libgnunetutil.la 
224 libgnunet_plugin_transport_wlan_la_LDFLAGS = \
225   $(GN_PLUGIN_LDFLAGS)
226
227 libgnunet_plugin_transport_udp_la_SOURCES = \
228   plugin_transport_udp.c plugin_transport_udp.h \
229   plugin_transport_udp_broadcasting.c
230 libgnunet_plugin_transport_udp_la_LIBADD = \
231   $(top_builddir)/src/hello/libgnunethello.la \
232   $(top_builddir)/src/fragmentation/libgnunetfragmentation.la \
233   $(top_builddir)/src/statistics/libgnunetstatistics.la \
234   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
235   $(top_builddir)/src/nat/libgnunetnat.la \
236   $(top_builddir)/src/util/libgnunetutil.la \
237   $(LTLIBINTL)
238 libgnunet_plugin_transport_udp_la_LDFLAGS = \
239  $(GN_PLUGIN_LDFLAGS)
240
241 libgnunet_plugin_transport_unix_la_SOURCES = \
242   plugin_transport_unix.c
243 libgnunet_plugin_transport_unix_la_LIBADD = \
244   $(top_builddir)/src/hello/libgnunethello.la \
245   $(top_builddir)/src/statistics/libgnunetstatistics.la \
246   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
247   $(top_builddir)/src/util/libgnunetutil.la \
248   $(LTLIBINTL)
249 libgnunet_plugin_transport_unix_la_LDFLAGS = \
250  $(GN_PLUGIN_LDFLAGS)
251
252
253 libgnunet_plugin_transport_http_client_la_SOURCES = \
254   plugin_transport_http_client.c plugin_transport_http_common.c plugin_transport_http_common.h
255 libgnunet_plugin_transport_http_client_la_LIBADD = \
256   $(top_builddir)/src/hello/libgnunethello.la \
257   $(top_builddir)/src/statistics/libgnunetstatistics.la \
258   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
259   @LIBCURL@ \
260   $(top_builddir)/src/nat/libgnunetnat.la \
261   $(top_builddir)/src/util/libgnunetutil.la 
262 libgnunet_plugin_transport_http_client_la_LDFLAGS = \
263  $(GN_PLUGIN_LDFLAGS)
264 libgnunet_plugin_transport_http_client_la_CFLAGS = \
265  $(CFLAGS) 
266 libgnunet_plugin_transport_http_client_la_CPPFLAGS = \
267  @LIBCURL_CPPFLAGS@
268
269
270 libgnunet_plugin_transport_http_server_la_SOURCES = \
271   plugin_transport_http_server.c plugin_transport_http_common.c 
272 libgnunet_plugin_transport_http_server_la_LIBADD = \
273   $(top_builddir)/src/hello/libgnunethello.la \
274   $(top_builddir)/src/statistics/libgnunetstatistics.la \
275   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
276   $(top_builddir)/src/nat/libgnunetnat.la \
277   $(top_builddir)/src/util/libgnunetutil.la 
278 libgnunet_plugin_transport_http_server_la_LDFLAGS = \
279  $(GN_LIBMHD) \
280  $(GN_PLUGIN_LDFLAGS)
281 libgnunet_plugin_transport_http_server_la_CFLAGS = \
282  $(CFLAGS) 
283
284 libgnunet_plugin_transport_https_client_la_SOURCES = \
285   plugin_transport_http_client.c plugin_transport_http_common.c
286 libgnunet_plugin_transport_https_client_la_LIBADD = \
287   $(top_builddir)/src/hello/libgnunethello.la \
288   $(top_builddir)/src/statistics/libgnunetstatistics.la \
289   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
290   @LIBCURL@ \
291   $(top_builddir)/src/nat/libgnunetnat.la \
292   $(top_builddir)/src/util/libgnunetutil.la 
293 libgnunet_plugin_transport_https_client_la_LDFLAGS = \
294  $(GN_PLUGIN_LDFLAGS)
295 libgnunet_plugin_transport_https_client_la_CFLAGS = \
296  $(CFLAGS) -DBUILD_HTTPS 
297 libgnunet_plugin_transport_https_client_la_CPPFLAGS = \
298  @LIBCURL_CPPFLAGS@
299
300
301 libgnunet_plugin_transport_https_server_la_SOURCES = \
302   plugin_transport_http_server.c plugin_transport_http_common.c
303 libgnunet_plugin_transport_https_server_la_LIBADD = \
304   $(top_builddir)/src/hello/libgnunethello.la \
305   $(top_builddir)/src/statistics/libgnunetstatistics.la \
306   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
307   $(top_builddir)/src/nat/libgnunetnat.la \
308   $(top_builddir)/src/util/libgnunetutil.la 
309 libgnunet_plugin_transport_https_server_la_LDFLAGS = \
310  $(GN_LIBMHD) \
311  $(GN_PLUGIN_LDFLAGS)
312 libgnunet_plugin_transport_https_server_la_CFLAGS = \
313  $(CFLAGS) -DBUILD_HTTPS 
314
315 if HAVE_TESTING
316 check_PROGRAMS = \
317  test_transport_testing_startstop \
318  test_transport_testing_restart \
319  test_transport_testing \
320  test_transport_startonly \
321  test_plugin_tcp \
322  test_plugin_udp \
323  $(UNIX_TEST) \
324  $(WLAN_PLUGIN_TEST) \
325  test_http_common \
326  $(HTTP_CLIENT_PLUGIN_TEST) \
327  $(HTTPS_CLIENT_PLUGIN_TEST) \
328  $(HTTP_SERVER_PLUGIN_TEST) \
329  $(HTTPS_SERVER_PLUGIN_TEST) \
330  test_transport_api_blacklisting \
331  test_transport_api_disconnect_tcp \
332  test_transport_api_bidirectional_connect \
333  test_transport_api_tcp \
334  test_transport_api_restart_1peer \
335  test_transport_api_restart_2peers \
336  test_transport_api_timeout_tcp \
337  test_transport_api_limited_sockets_tcp \
338  test_transport_api_tcp_nat \
339  test_transport_api_udp \
340  test_transport_api_timeout_udp \
341  $(UNIX_PLUGIN_TEST) \
342  $(UNIX_PLUGIN_TIMEOUT_TEST) \
343  test_transport_api_udp_nat \
344  $(HTTP_API_TEST) \
345  $(HTTP_REVERSE_API_TEST) \
346  $(HTTP_API_TIMEOUT_TEST) \
347  $(HTTPS_API_TEST) \
348  $(HTTPS_API_TIMEOUT_TEST) \
349  $(WLAN_API_TEST) \
350  test_transport_api_multi \
351  test_transport_blacklisting_no_bl \
352  test_transport_blacklisting_outbound_bl_full \
353  test_transport_blacklisting_outbound_bl_plugin \
354  test_transport_blacklisting_inbound_bl_plugin \
355  test_transport_blacklisting_inbound_bl_full \
356  test_transport_blacklisting_multiple_plugins \
357  test_transport_api_manipulation_send_tcp \
358  test_transport_api_manipulation_recv_tcp \
359  test_transport_api_manipulation_cfg \
360  test_transport_api_reliability_tcp \
361  test_transport_api_reliability_tcp_nat \
362  test_transport_api_unreliability_udp \
363  test_transport_api_unreliability_constant_udp \
364  $(UNIX_REL_TEST) \
365  $(HTTP_REL_TEST) \
366  $(HTTPS_REL_TEST) \
367  $(WLAN_REL_TEST) \
368  $(WLAN_UREL_TEST) \
369  test_quota_compliance_tcp \
370  test_quota_compliance_tcp_asymmetric \
371  test_quota_compliance_udp \
372  $(UNIX_QUOTA_TEST) \
373  $(HTTP_QUOTA_TEST) \
374  $(HTTPS_QUOTA_TEST) \
375  $(WLAN_QUOTA_TEST)
376 endif
377
378 if ENABLE_TEST_RUN
379 TESTS = \
380  test_transport_testing_startstop \
381  test_transport_testing_restart \
382  test_transport_testing \
383  test_transport_startonly \
384  test_plugin_tcp \
385  test_plugin_udp \
386  $(UNIX_TEST) \
387  $(WLAN_PLUGIN_TEST) \
388  test_transport_api_blacklisting \
389  test_transport_api_disconnect_tcp \
390  test_transport_api_bidirectional_connect \
391  test_transport_api_tcp \
392  test_transport_api_restart_1peer \
393  test_transport_api_restart_2peers \
394  test_transport_api_timeout_tcp \
395  test_transport_api_limited_sockets_tcp \
396  test_transport_api_tcp_nat \
397  test_transport_api_udp \
398  test_transport_api_timeout_udp \
399  $(UNIX_PLUGIN_TEST) \
400  $(UNIX_PLUGIN_TIMEOUT_TEST) \
401  test_transport_api_udp_nat \
402  $(HTTP_API_TEST) \
403  $(HTTP_API_TIMEOUT_TEST) \
404  $(HTTPS_API_TEST) \
405  $(HTTPS_API_TIMEOUT_TEST) \
406  $(WLAN_API_TEST) \
407  test_transport_api_multi \
408  test_transport_blacklisting_no_bl \
409  test_transport_blacklisting_outbound_bl_full \
410  test_transport_blacklisting_outbound_bl_plugin \
411  test_transport_blacklisting_inbound_bl_plugin \
412  test_transport_blacklisting_inbound_bl_full \
413  test_transport_blacklisting_multiple_plugins \
414  test_transport_api_manipulation_send_tcp \
415  test_transport_api_manipulation_recv_tcp \
416  test_transport_api_manipulation_cfg \
417  test_transport_api_reliability_tcp \
418  test_transport_api_reliability_tcp_nat \
419  test_transport_api_unreliability_udp \
420  test_transport_api_unreliability_constant_udp \
421  $(UNIX_REL_TEST) \
422  $(HTTP_REL_TEST) \
423  $(HTTPS_REL_TEST) \
424  $(WLAN_REL_TEST) \
425  $(WLAN_UREL_TEST) \
426  test_quota_compliance_tcp \
427  test_quota_compliance_tcp_asymmetric \
428  test_quota_compliance_udp \
429  $(UNIX_QUOTA_TEST) \
430  $(HTTP_QUOTA_TEST) \
431  $(HTTPS_QUOTA_TEST)
432 endif
433
434 test_transport_testing_startstop_SOURCES = \
435  test_transport_testing_startstop.c
436 test_transport_testing_startstop_LDADD = \
437  $(top_builddir)/src/util/libgnunetutil.la \
438  $(top_builddir)/src/transport/libgnunettransport.la \
439  $(top_builddir)/src/hello/libgnunethello.la \
440  $(top_builddir)/src/transport/libgnunettransporttesting.la 
441
442 test_transport_testing_restart_SOURCES = \
443  test_transport_testing_restart.c
444 test_transport_testing_restart_LDADD = \
445  $(top_builddir)/src/util/libgnunetutil.la \
446  $(top_builddir)/src/transport/libgnunettransport.la \
447  $(top_builddir)/src/hello/libgnunethello.la \
448  $(top_builddir)/src/transport/libgnunettransporttesting.la 
449
450 test_transport_testing_SOURCES = \
451  test_transport_testing.c
452 test_transport_testing_LDADD = \
453  $(top_builddir)/src/util/libgnunetutil.la \
454  $(top_builddir)/src/transport/libgnunettransport.la \
455  $(top_builddir)/src/hello/libgnunethello.la \
456  $(top_builddir)/src/transport/libgnunettransporttesting.la 
457
458 test_transport_api_blacklisting_SOURCES = \
459  test_transport_api_blacklisting.c
460 test_transport_api_blacklisting_LDADD = \
461  $(top_builddir)/src/transport/libgnunettransport.la \
462  $(top_builddir)/src/hello/libgnunethello.la \
463  $(top_builddir)/src/statistics/libgnunetstatistics.la \
464  $(top_builddir)/src/util/libgnunetutil.la \
465  $(top_builddir)/src/transport/libgnunettransporttesting.la 
466
467 test_transport_blacklisting_no_bl_SOURCES = \
468  test_transport_blacklisting.c
469 test_transport_blacklisting_no_bl_LDADD = \
470  $(top_builddir)/src/transport/libgnunettransport.la \
471  $(top_builddir)/src/hello/libgnunethello.la \
472  $(top_builddir)/src/statistics/libgnunetstatistics.la \
473  $(top_builddir)/src/util/libgnunetutil.la \
474  $(top_builddir)/src/transport/libgnunettransporttesting.la 
475  
476 test_transport_blacklisting_outbound_bl_full_SOURCES = \
477  test_transport_blacklisting.c
478 test_transport_blacklisting_outbound_bl_full_LDADD = \
479  $(top_builddir)/src/transport/libgnunettransport.la \
480  $(top_builddir)/src/hello/libgnunethello.la \
481  $(top_builddir)/src/statistics/libgnunetstatistics.la \
482  $(top_builddir)/src/util/libgnunetutil.la \
483  $(top_builddir)/src/transport/libgnunettransporttesting.la  
484  
485 test_transport_blacklisting_outbound_bl_plugin_SOURCES = \
486  test_transport_blacklisting.c
487 test_transport_blacklisting_outbound_bl_plugin_LDADD = \
488  $(top_builddir)/src/transport/libgnunettransport.la \
489  $(top_builddir)/src/hello/libgnunethello.la \
490  $(top_builddir)/src/statistics/libgnunetstatistics.la \
491  $(top_builddir)/src/util/libgnunetutil.la \
492  $(top_builddir)/src/transport/libgnunettransporttesting.la   
493
494 test_transport_blacklisting_inbound_bl_full_SOURCES = \
495  test_transport_blacklisting.c
496 test_transport_blacklisting_inbound_bl_full_LDADD = \
497  $(top_builddir)/src/transport/libgnunettransport.la \
498  $(top_builddir)/src/hello/libgnunethello.la \
499  $(top_builddir)/src/statistics/libgnunetstatistics.la \
500  $(top_builddir)/src/util/libgnunetutil.la \
501  $(top_builddir)/src/transport/libgnunettransporttesting.la   
502  
503 test_transport_blacklisting_inbound_bl_plugin_SOURCES = \
504  test_transport_blacklisting.c
505 test_transport_blacklisting_inbound_bl_plugin_LDADD = \
506  $(top_builddir)/src/transport/libgnunettransport.la \
507  $(top_builddir)/src/hello/libgnunethello.la \
508  $(top_builddir)/src/statistics/libgnunetstatistics.la \
509  $(top_builddir)/src/util/libgnunetutil.la \
510  $(top_builddir)/src/transport/libgnunettransporttesting.la  
511
512 test_transport_blacklisting_multiple_plugins_SOURCES = \
513  test_transport_blacklisting.c
514 test_transport_blacklisting_multiple_plugins_LDADD = \
515  $(top_builddir)/src/transport/libgnunettransport.la \
516  $(top_builddir)/src/hello/libgnunethello.la \
517  $(top_builddir)/src/statistics/libgnunetstatistics.la \
518  $(top_builddir)/src/util/libgnunetutil.la \
519  $(top_builddir)/src/transport/libgnunettransporttesting.la  
520
521
522 test_transport_api_disconnect_tcp_SOURCES = \
523  test_transport_api_disconnect.c
524 test_transport_api_disconnect_tcp_LDADD = \
525  $(top_builddir)/src/transport/libgnunettransport.la \
526  $(top_builddir)/src/hello/libgnunethello.la \
527  $(top_builddir)/src/statistics/libgnunetstatistics.la \
528  $(top_builddir)/src/util/libgnunetutil.la \
529  $(top_builddir)/src/transport/libgnunettransporttesting.la 
530
531 test_transport_startonly_SOURCES = \
532  test_transport_startonly.c
533 test_transport_startonly_LDADD = \
534  $(top_builddir)/src/transport/libgnunettransport.la \
535  $(top_builddir)/src/hello/libgnunethello.la \
536  $(top_builddir)/src/statistics/libgnunetstatistics.la \
537  $(top_builddir)/src/util/libgnunetutil.la \
538  $(top_builddir)/src/transport/libgnunettransporttesting.la 
539
540 test_plugin_tcp_SOURCES = \
541  test_plugin_transport.c
542 test_plugin_tcp_LDADD = \
543  $(top_builddir)/src/transport/libgnunettransport.la \
544  $(top_builddir)/src/statistics/libgnunetstatistics.la \
545  $(top_builddir)/src/hello/libgnunethello.la \
546  $(top_builddir)/src/util/libgnunetutil.la  \
547  $(top_builddir)/src/transport/libgnunettransporttesting.la
548  
549 test_plugin_udp_SOURCES = \
550  test_plugin_transport.c
551 test_plugin_udp_LDADD = \
552  $(top_builddir)/src/transport/libgnunettransport.la \
553  $(top_builddir)/src/statistics/libgnunetstatistics.la \
554  $(top_builddir)/src/hello/libgnunethello.la \
555  $(top_builddir)/src/util/libgnunetutil.la  \
556  $(top_builddir)/src/transport/libgnunettransporttesting.la
557
558 test_plugin_unix_SOURCES = \
559  test_plugin_transport.c
560 test_plugin_unix_LDADD = \
561  $(top_builddir)/src/transport/libgnunettransport.la \
562  $(top_builddir)/src/statistics/libgnunetstatistics.la \
563  $(top_builddir)/src/hello/libgnunethello.la \
564  $(top_builddir)/src/util/libgnunetutil.la  \
565  $(top_builddir)/src/transport/libgnunettransporttesting.la
566
567 test_plugin_wlan_SOURCES = \
568  test_plugin_transport.c
569 test_plugin_wlan_LDADD = \
570  $(top_builddir)/src/transport/libgnunettransport.la \
571  $(top_builddir)/src/statistics/libgnunetstatistics.la \
572  $(top_builddir)/src/hello/libgnunethello.la \
573  $(top_builddir)/src/util/libgnunetutil.la  \
574  $(top_builddir)/src/transport/libgnunettransporttesting.la 
575
576
577 test_http_common_SOURCES = \
578  test_http_common.c plugin_transport_http_common.c
579 test_http_common_LDADD = \
580  $(top_builddir)/src/transport/libgnunettransport.la \
581  $(top_builddir)/src/statistics/libgnunetstatistics.la \
582  $(top_builddir)/src/hello/libgnunethello.la \
583  $(top_builddir)/src/util/libgnunetutil.la  \
584  $(top_builddir)/src/transport/libgnunettransporttesting.la 
585
586 test_plugin_http_server_SOURCES = \
587  test_plugin_transport.c
588 test_plugin_http_server_LDADD = \
589  $(top_builddir)/src/transport/libgnunettransport.la \
590  $(top_builddir)/src/statistics/libgnunetstatistics.la \
591  $(top_builddir)/src/hello/libgnunethello.la \
592  $(top_builddir)/src/util/libgnunetutil.la  \
593  $(top_builddir)/src/transport/libgnunettransporttesting.la 
594
595 test_plugin_https_server_SOURCES = \
596  test_plugin_transport.c
597 test_plugin_https_server_LDADD = \
598  $(top_builddir)/src/transport/libgnunettransport.la \
599  $(top_builddir)/src/statistics/libgnunetstatistics.la \
600  $(top_builddir)/src/hello/libgnunethello.la \
601  $(top_builddir)/src/util/libgnunetutil.la  \
602  $(top_builddir)/src/transport/libgnunettransporttesting.la
603
604 test_plugin_http_client_SOURCES = \
605  test_plugin_transport.c
606 test_plugin_http_client_LDADD = \
607  $(top_builddir)/src/transport/libgnunettransport.la \
608  $(top_builddir)/src/statistics/libgnunetstatistics.la \
609  $(top_builddir)/src/hello/libgnunethello.la \
610  $(top_builddir)/src/util/libgnunetutil.la  \
611  $(top_builddir)/src/transport/libgnunettransporttesting.la 
612
613 test_plugin_https_client_SOURCES = \
614  test_plugin_transport.c
615 test_plugin_https_client_LDADD = \
616  $(top_builddir)/src/transport/libgnunettransport.la \
617  $(top_builddir)/src/statistics/libgnunetstatistics.la \
618  $(top_builddir)/src/hello/libgnunethello.la \
619  $(top_builddir)/src/util/libgnunetutil.la  \
620  $(top_builddir)/src/transport/libgnunettransporttesting.la  
621
622 test_transport_api_tcp_SOURCES = \
623  test_transport_api.c
624 test_transport_api_tcp_LDADD = \
625  $(top_builddir)/src/transport/libgnunettransport.la \
626  $(top_builddir)/src/hello/libgnunethello.la \
627  $(top_builddir)/src/util/libgnunetutil.la  \
628  $(top_builddir)/src/transport/libgnunettransporttesting.la
629
630 test_transport_api_bidirectional_connect_SOURCES = \
631  test_transport_api_bidirectional_connect.c
632 test_transport_api_bidirectional_connect_LDADD = \
633  $(top_builddir)/src/transport/libgnunettransport.la \
634  $(top_builddir)/src/hello/libgnunethello.la \
635  $(top_builddir)/src/util/libgnunetutil.la  \
636  $(top_builddir)/src/transport/libgnunettransporttesting.la
637
638 test_transport_api_restart_1peer_SOURCES = \
639  test_transport_api_restart_1peer.c
640 test_transport_api_restart_1peer_LDADD = \
641  $(top_builddir)/src/transport/libgnunettransport.la \
642  $(top_builddir)/src/hello/libgnunethello.la \
643  $(top_builddir)/src/statistics/libgnunetstatistics.la \
644  $(top_builddir)/src/util/libgnunetutil.la \
645  $(top_builddir)/src/transport/libgnunettransporttesting.la 
646
647 test_transport_api_restart_2peers_SOURCES = \
648  test_transport_api_restart_2peers.c
649 test_transport_api_restart_2peers_LDADD = \
650  $(top_builddir)/src/transport/libgnunettransport.la \
651  $(top_builddir)/src/hello/libgnunethello.la \
652  $(top_builddir)/src/statistics/libgnunetstatistics.la \
653  $(top_builddir)/src/util/libgnunetutil.la \
654  $(top_builddir)/src/transport/libgnunettransporttesting.la 
655
656 test_transport_api_limited_sockets_tcp_SOURCES = \
657  test_transport_api_limited_sockets.c
658 test_transport_api_limited_sockets_tcp_LDADD = \
659  $(top_builddir)/src/transport/libgnunettransport.la \
660  $(top_builddir)/src/hello/libgnunethello.la \
661  $(top_builddir)/src/util/libgnunetutil.la  \
662  $(top_builddir)/src/transport/libgnunettransporttesting.la
663
664 test_transport_api_tcp_nat_SOURCES = \
665  test_transport_api.c
666 test_transport_api_tcp_nat_LDADD = \
667  $(top_builddir)/src/transport/libgnunettransport.la \
668  $(top_builddir)/src/hello/libgnunethello.la \
669  $(top_builddir)/src/util/libgnunetutil.la \
670  $(top_builddir)/src/transport/libgnunettransporttesting.la 
671
672 test_transport_api_manipulation_send_tcp_SOURCES = \
673  test_transport_api_manipulation_send_tcp.c
674 test_transport_api_manipulation_send_tcp_LDADD = \
675  $(top_builddir)/src/transport/libgnunettransport.la \
676  $(top_builddir)/src/hello/libgnunethello.la \
677  $(top_builddir)/src/util/libgnunetutil.la \
678  $(top_builddir)/src/transport/libgnunettransporttesting.la 
679
680 test_transport_api_manipulation_recv_tcp_SOURCES = \
681  test_transport_api_manipulation_recv_tcp.c
682 test_transport_api_manipulation_recv_tcp_LDADD = \
683  $(top_builddir)/src/transport/libgnunettransport.la \
684  $(top_builddir)/src/hello/libgnunethello.la \
685  $(top_builddir)/src/util/libgnunetutil.la \
686  $(top_builddir)/src/transport/libgnunettransporttesting.la 
687
688 test_transport_api_manipulation_cfg_SOURCES = \
689  test_transport_api_manipulation_cfg.c
690 test_transport_api_manipulation_cfg_LDADD = \
691  $(top_builddir)/src/transport/libgnunettransport.la \
692  $(top_builddir)/src/hello/libgnunethello.la \
693  $(top_builddir)/src/util/libgnunetutil.la \
694  $(top_builddir)/src/transport/libgnunettransporttesting.la 
695
696
697
698 test_transport_api_reliability_tcp_SOURCES = \
699  test_transport_api_reliability.c
700 test_transport_api_reliability_tcp_LDADD = \
701  $(top_builddir)/src/transport/libgnunettransport.la \
702  $(top_builddir)/src/hello/libgnunethello.la \
703  $(top_builddir)/src/util/libgnunetutil.la \
704  $(top_builddir)/src/transport/libgnunettransporttesting.la 
705
706 test_transport_api_timeout_tcp_SOURCES = \
707  test_transport_api_timeout.c
708 test_transport_api_timeout_tcp_LDADD = \
709  $(top_builddir)/src/transport/libgnunettransport.la \
710  $(top_builddir)/src/hello/libgnunethello.la \
711  $(top_builddir)/src/util/libgnunetutil.la \
712  $(top_builddir)/src/transport/libgnunettransporttesting.la 
713
714 test_transport_api_timeout_unix_SOURCES = \
715  test_transport_api_timeout.c
716 test_transport_api_timeout_unix_LDADD = \
717  $(top_builddir)/src/transport/libgnunettransport.la \
718  $(top_builddir)/src/hello/libgnunethello.la \
719  $(top_builddir)/src/util/libgnunetutil.la \
720  $(top_builddir)/src/transport/libgnunettransporttesting.la 
721
722 test_transport_api_reliability_tcp_nat_SOURCES = \
723  test_transport_api_reliability.c
724 test_transport_api_reliability_tcp_nat_LDADD = \
725  $(top_builddir)/src/transport/libgnunettransport.la \
726  $(top_builddir)/src/hello/libgnunethello.la \
727  $(top_builddir)/src/util/libgnunetutil.la \
728  $(top_builddir)/src/transport/libgnunettransporttesting.la 
729
730 test_transport_api_reliability_wlan_SOURCES = \
731  test_transport_api_reliability.c
732 test_transport_api_reliability_wlan_LDADD = \
733  $(top_builddir)/src/transport/libgnunettransport.la \
734  $(top_builddir)/src/hello/libgnunethello.la \
735  $(top_builddir)/src/util/libgnunetutil.la \
736  $(top_builddir)/src/transport/libgnunettransporttesting.la 
737
738 test_transport_api_unreliability_wlan_SOURCES = \
739  test_transport_api_unreliability.c
740 test_transport_api_unreliability_wlan_LDADD = \
741  $(top_builddir)/src/transport/libgnunettransport.la \
742  $(top_builddir)/src/hello/libgnunethello.la \
743  $(top_builddir)/src/util/libgnunetutil.la \
744  $(top_builddir)/src/transport/libgnunettransporttesting.la 
745
746 test_transport_api_udp_SOURCES = \
747  test_transport_api.c
748 test_transport_api_udp_LDADD = \
749  $(top_builddir)/src/transport/libgnunettransport.la \
750  $(top_builddir)/src/hello/libgnunethello.la \
751  $(top_builddir)/src/util/libgnunetutil.la  \
752  $(top_builddir)/src/transport/libgnunettransporttesting.la
753
754 test_transport_api_timeout_udp_SOURCES = \
755  test_transport_api_timeout.c
756 test_transport_api_timeout_udp_LDADD = \
757  $(top_builddir)/src/transport/libgnunettransport.la \
758  $(top_builddir)/src/hello/libgnunethello.la \
759  $(top_builddir)/src/util/libgnunetutil.la \
760  $(top_builddir)/src/transport/libgnunettransporttesting.la  
761
762 test_transport_api_udp_nat_SOURCES = \
763  test_transport_api.c
764 test_transport_api_udp_nat_LDADD = \
765  $(top_builddir)/src/transport/libgnunettransport.la \
766  $(top_builddir)/src/hello/libgnunethello.la \
767  $(top_builddir)/src/util/libgnunetutil.la  \
768  $(top_builddir)/src/transport/libgnunettransporttesting.la  
769
770 test_transport_api_unix_SOURCES = \
771  test_transport_api.c
772 test_transport_api_unix_LDADD = \
773  $(top_builddir)/src/transport/libgnunettransport.la \
774  $(top_builddir)/src/hello/libgnunethello.la \
775  $(top_builddir)/src/util/libgnunetutil.la \
776  $(top_builddir)/src/transport/libgnunettransporttesting.la 
777
778 # HTTP tests
779 test_transport_api_http_SOURCES = \
780  test_transport_api.c
781 test_transport_api_http_LDADD = \
782  $(top_builddir)/src/transport/libgnunettransport.la \
783  $(top_builddir)/src/hello/libgnunethello.la \
784  $(top_builddir)/src/util/libgnunetutil.la \
785  $(top_builddir)/src/transport/libgnunettransporttesting.la
786
787 test_transport_api_http_reverse_SOURCES = \
788  test_transport_api.c
789 test_transport_api_http_reverse_LDADD = \
790  $(top_builddir)/src/transport/libgnunettransport.la \
791  $(top_builddir)/src/hello/libgnunethello.la \
792  $(top_builddir)/src/util/libgnunetutil.la \
793  $(top_builddir)/src/transport/libgnunettransporttesting.la
794
795 test_transport_api_timeout_http_SOURCES = \
796  test_transport_api_timeout.c
797 test_transport_api_timeout_http_LDADD = \
798  $(top_builddir)/src/transport/libgnunettransport.la \
799  $(top_builddir)/src/hello/libgnunethello.la \
800  $(top_builddir)/src/util/libgnunetutil.la \
801  $(top_builddir)/src/transport/libgnunettransporttesting.la  
802
803 test_transport_api_reliability_http_SOURCES = \
804  test_transport_api_reliability.c
805 test_transport_api_reliability_http_LDADD = \
806  $(top_builddir)/src/transport/libgnunettransport.la \
807  $(top_builddir)/src/hello/libgnunethello.la \
808  $(top_builddir)/src/util/libgnunetutil.la \
809  $(top_builddir)/src/transport/libgnunettransporttesting.la 
810
811 test_quota_compliance_http_SOURCES = \
812  test_quota_compliance.c
813 test_quota_compliance_http_LDADD = \
814  $(top_builddir)/src/transport/libgnunettransport.la \
815  $(top_builddir)/src/hello/libgnunethello.la \
816  $(top_builddir)/src/util/libgnunetutil.la \
817  $(top_builddir)/src/transport/libgnunettransporttesting.la 
818
819 test_quota_compliance_http_asymmetric_SOURCES = \
820  test_quota_compliance.c
821 test_quota_compliance_http_asymmetric_LDADD = \
822  $(top_builddir)/src/transport/libgnunettransport.la \
823  $(top_builddir)/src/hello/libgnunethello.la \
824  $(top_builddir)/src/util/libgnunetutil.la \
825  $(top_builddir)/src/transport/libgnunettransporttesting.la
826
827 test_quota_compliance_https_SOURCES = \
828  test_quota_compliance.c
829 test_quota_compliance_https_LDADD = \
830  $(top_builddir)/src/transport/libgnunettransport.la \
831  $(top_builddir)/src/hello/libgnunethello.la \
832  $(top_builddir)/src/util/libgnunetutil.la \
833  $(top_builddir)/src/transport/libgnunettransporttesting.la
834
835 test_quota_compliance_https_asymmetric_SOURCES = \
836  test_quota_compliance.c
837 test_quota_compliance_https_asymmetric_LDADD = \
838  $(top_builddir)/src/transport/libgnunettransport.la \
839  $(top_builddir)/src/hello/libgnunethello.la \
840  $(top_builddir)/src/util/libgnunetutil.la \
841  $(top_builddir)/src/transport/libgnunettransporttesting.la
842
843 # HTTPS tests
844 test_transport_api_https_SOURCES = \
845  test_transport_api.c
846 test_transport_api_https_LDADD = \
847  $(top_builddir)/src/transport/libgnunettransport.la \
848  $(top_builddir)/src/hello/libgnunethello.la \
849  $(top_builddir)/src/util/libgnunetutil.la  \
850  $(top_builddir)/src/transport/libgnunettransporttesting.la 
851
852 test_transport_api_timeout_https_SOURCES = \
853  test_transport_api_timeout.c
854 test_transport_api_timeout_https_LDADD = \
855  $(top_builddir)/src/transport/libgnunettransport.la \
856  $(top_builddir)/src/hello/libgnunethello.la \
857  $(top_builddir)/src/util/libgnunetutil.la \
858  $(top_builddir)/src/transport/libgnunettransporttesting.la  
859
860
861 test_transport_api_reliability_https_SOURCES = \
862  test_transport_api_reliability.c
863 test_transport_api_reliability_https_LDADD = \
864  $(top_builddir)/src/transport/libgnunettransport.la \
865  $(top_builddir)/src/hello/libgnunethello.la \
866  $(top_builddir)/src/util/libgnunetutil.la \
867  $(top_builddir)/src/transport/libgnunettransporttesting.la 
868
869 test_transport_api_unreliability_unix_SOURCES = \
870  test_transport_api_unreliability.c
871 test_transport_api_unreliability_unix_LDADD = \
872  $(top_builddir)/src/transport/libgnunettransport.la \
873  $(top_builddir)/src/hello/libgnunethello.la \
874  $(top_builddir)/src/util/libgnunetutil.la \
875  $(top_builddir)/src/transport/libgnunettransporttesting.la 
876
877 test_transport_api_unreliability_udp_SOURCES = \
878  test_transport_api_unreliability.c
879 test_transport_api_unreliability_udp_LDADD = \
880  $(top_builddir)/src/transport/libgnunettransport.la \
881  $(top_builddir)/src/hello/libgnunethello.la \
882  $(top_builddir)/src/util/libgnunetutil.la \
883  $(top_builddir)/src/transport/libgnunettransporttesting.la 
884
885 test_transport_api_unreliability_constant_udp_SOURCES = \
886  test_transport_api_unreliability_constant.c
887 test_transport_api_unreliability_constant_udp_LDADD = \
888  $(top_builddir)/src/transport/libgnunettransport.la \
889  $(top_builddir)/src/hello/libgnunethello.la \
890  $(top_builddir)/src/util/libgnunetutil.la \
891  $(top_builddir)/src/transport/libgnunettransporttesting.la 
892
893 if LINUX
894 test_transport_api_wlan_SOURCES = \
895  test_transport_api.c
896 test_transport_api_wlan_LDADD = \
897  $(top_builddir)/src/transport/libgnunettransport.la \
898  $(top_builddir)/src/hello/libgnunethello.la \
899  $(top_builddir)/src/util/libgnunetutil.la \
900  $(top_builddir)/src/transport/libgnunettransporttesting.la  
901 endif
902
903 test_quota_compliance_tcp_SOURCES = \
904  test_quota_compliance.c
905 test_quota_compliance_tcp_LDADD = \
906  $(top_builddir)/src/transport/libgnunettransport.la \
907  $(top_builddir)/src/hello/libgnunethello.la \
908  $(top_builddir)/src/util/libgnunetutil.la \
909  $(top_builddir)/src/transport/libgnunettransporttesting.la 
910
911 test_quota_compliance_tcp_asymmetric_SOURCES = \
912  test_quota_compliance.c
913 test_quota_compliance_tcp_asymmetric_LDADD = \
914  $(top_builddir)/src/transport/libgnunettransport.la \
915  $(top_builddir)/src/hello/libgnunethello.la \
916  $(top_builddir)/src/util/libgnunetutil.la \
917  $(top_builddir)/src/transport/libgnunettransporttesting.la 
918
919 test_quota_compliance_udp_SOURCES = \
920  test_quota_compliance.c
921 test_quota_compliance_udp_LDADD = \
922  $(top_builddir)/src/transport/libgnunettransport.la \
923  $(top_builddir)/src/hello/libgnunethello.la \
924  $(top_builddir)/src/util/libgnunetutil.la \
925  $(top_builddir)/src/transport/libgnunettransporttesting.la
926
927 test_quota_compliance_unix_SOURCES = \
928  test_quota_compliance.c
929 test_quota_compliance_unix_LDADD = \
930  $(top_builddir)/src/transport/libgnunettransport.la \
931  $(top_builddir)/src/hello/libgnunethello.la \
932  $(top_builddir)/src/util/libgnunetutil.la \
933  $(top_builddir)/src/transport/libgnunettransporttesting.la
934
935 test_quota_compliance_unix_asymmetric_SOURCES = \
936  test_quota_compliance.c
937 test_quota_compliance_unix_asymmetric_LDADD = \
938  $(top_builddir)/src/transport/libgnunettransport.la \
939  $(top_builddir)/src/hello/libgnunethello.la \
940  $(top_builddir)/src/util/libgnunetutil.la \
941  $(top_builddir)/src/transport/libgnunettransporttesting.la
942
943 test_quota_compliance_wlan_SOURCES = \
944  test_quota_compliance.c
945 test_quota_compliance_wlan_LDADD = \
946  $(top_builddir)/src/transport/libgnunettransport.la \
947  $(top_builddir)/src/hello/libgnunethello.la \
948  $(top_builddir)/src/util/libgnunetutil.la \
949  $(top_builddir)/src/transport/libgnunettransporttesting.la
950
951 test_quota_compliance_wlan_asymmetric_SOURCES = \
952  test_quota_compliance.c
953 test_quota_compliance_wlan_asymmetric_LDADD = \
954  $(top_builddir)/src/transport/libgnunettransport.la \
955  $(top_builddir)/src/hello/libgnunethello.la \
956  $(top_builddir)/src/util/libgnunetutil.la \
957  $(top_builddir)/src/transport/libgnunettransporttesting.la
958
959 test_transport_api_multi_SOURCES = \
960  test_transport_api.c
961 test_transport_api_multi_LDADD = \
962  $(top_builddir)/src/transport/libgnunettransport.la \
963  $(top_builddir)/src/hello/libgnunethello.la \
964  $(top_builddir)/src/util/libgnunetutil.la \
965  $(top_builddir)/src/transport/libgnunettransporttesting.la 
966
967
968 EXTRA_DIST = \
969 test_plugin_hostkey \
970 test_plugin_hostkey.ecc \
971 template_cfg_peer1.conf\
972 template_cfg_peer2.conf\
973 test_plugin_transport_data.conf\
974 test_plugin_transport_data_udp.conf\
975 test_quota_compliance_data.conf\
976 test_quota_compliance_http_peer1.conf\
977 test_quota_compliance_http_peer2.conf\
978 test_quota_compliance_https_peer1.conf\
979 test_quota_compliance_https_peer2.conf\
980 test_quota_compliance_tcp_peer1.conf\
981 test_quota_compliance_tcp_peer2.conf\
982 test_quota_compliance_udp_peer1.conf\
983 test_quota_compliance_udp_peer2.conf\
984 test_quota_compliance_unix_peer1.conf\
985 test_quota_compliance_unix_peer2.conf\
986 test_quota_compliance_wlan_peer1.conf\
987 test_quota_compliance_wlan_peer2.conf\
988 test_quota_compliance_http_asymmetric_peer1.conf\
989 test_quota_compliance_http_asymmetric_peer2.conf\
990 test_quota_compliance_https_asymmetric_peer1.conf\
991 test_quota_compliance_https_asymmetric_peer2.conf\
992 test_quota_compliance_tcp_asymmetric_peer1.conf\
993 test_quota_compliance_tcp_asymmetric_peer2.conf\
994 test_quota_compliance_unix_asymmetric_peer1.conf\
995 test_quota_compliance_unix_asymmetric_peer2.conf\
996 test_quota_compliance_wlan_asymmetric_peer1.conf\
997 test_quota_compliance_wlan_asymmetric_peer2.conf\
998 test_transport_api_data.conf\
999 test_transport_api_http_peer1.conf\
1000 test_transport_api_http_peer2.conf\
1001 test_transport_api_https_peer1.conf\
1002 test_transport_api_https_peer2.conf\
1003 test_transport_api_limited_sockets_tcp_peer1.conf\
1004 test_transport_api_limited_sockets_tcp_peer2.conf\
1005 test_transport_api_timeout_tcp_peer1.conf\
1006 test_transport_api_timeout_tcp_peer2.conf\
1007 test_transport_api_multi_peer1.conf\
1008 test_transport_api_multi_peer2.conf\
1009 test_transport_api_reliability_http_peer1.conf\
1010 test_transport_api_reliability_http_peer2.conf\
1011 test_transport_api_reliability_https_peer1.conf\
1012 test_transport_api_reliability_https_peer2.conf\
1013 test_transport_api_reliability_tcp_nat_peer1.conf\
1014 test_transport_api_reliability_tcp_nat_peer2.conf\
1015 test_transport_api_reliability_tcp_peer1.conf\
1016 test_transport_api_reliability_tcp_peer2.conf\
1017 test_transport_api_reliability_wlan_peer1.conf\
1018 test_transport_api_reliability_wlan_peer2.conf\
1019 test_transport_api_bidirectional_connect_peer1.conf\
1020 test_transport_api_bidirectional_connect_peer2.conf\
1021 test_transport_api_manipulation_send_tcp_peer1.conf\
1022 test_transport_api_manipulation_send_tcp_peer2.conf\
1023 test_transport_api_manipulation_recv_tcp_peer1.conf\
1024 test_transport_api_manipulation_recv_tcp_peer2.conf\
1025 test_transport_api_manipulation_cfg_peer1.conf\
1026 test_transport_api_manipulation_cfg_peer2.conf\
1027 test_transport_api_tcp_nat_peer1.conf\
1028 test_transport_api_tcp_nat_peer2.conf\
1029 test_transport_api_tcp_peer1.conf\
1030 test_transport_api_tcp_peer2.conf\
1031 test_transport_api_udp_nat_peer1.conf\
1032 test_transport_api_udp_nat_peer2.conf\
1033 test_transport_api_udp_peer1.conf\
1034 test_transport_api_udp_peer2.conf\
1035 test_transport_api_timeout_udp_peer1.conf\
1036 test_transport_api_timeout_udp_peer2.conf\
1037 test_transport_api_unix_peer1.conf\
1038 test_transport_api_unix_peer2.conf\
1039 test_transport_api_timeout_unix_peer1.conf\
1040 test_transport_api_timeout_unix_peer2.conf\
1041 test_transport_api_unreliability_udp_peer1.conf\
1042 test_transport_api_unreliability_udp_peer2.conf\
1043 test_transport_api_unreliability_unix_peer1.conf\
1044 test_transport_api_unreliability_unix_peer2.conf\
1045 test_transport_api_unreliability_wlan_peer1.conf\
1046 test_transport_api_unreliability_wlan_peer2.conf\
1047 test_transport_api_wlan_peer1.conf\
1048 test_transport_api_wlan_peer2.conf\
1049 test_transport_defaults.conf\
1050 test_transport_startonly.conf\
1051 test_transport_api_disconnect_tcp_peer1.conf\
1052 test_transport_api_disconnect_tcp_peer2.conf\
1053 test_transport_api_timeout_http_peer1.conf\
1054 test_transport_api_timeout_http_peer2.conf\
1055 test_transport_api_timeout_https_peer1.conf\
1056 test_transport_api_timeout_https_peer2.conf\
1057 test_transport_api_unreliability_constant_udp_peer1.conf\
1058 test_transport_api_unreliability_constant_udp_peer2.conf\
1059 test_transport_blacklisting_cfg_peer1.conf \
1060 test_transport_blacklisting_cfg_peer2.conf \
1061 test_transport_blacklisting_cfg_blp_peer1_full.conf\
1062 test_transport_blacklisting_cfg_blp_peer1_plugin.conf \
1063 test_transport_blacklisting_cfg_blp_peer2_full.conf\
1064 test_transport_blacklisting_cfg_blp_peer2_plugin.conf \
1065 test_transport_blacklisting_cfg_blp_peer1_multiple_plugins.conf \
1066 test_transport_blacklisting_cfg_blp_peer2_multiple_plugins.conf \
1067 test_transport_api_http_reverse_peer1.conf \
1068 test_transport_api_http_reverse_peer2.conf