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