- distribute peers equally among island nodes on SuperMUC
[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_manipulation_cfg \
355  test_transport_api_reliability_tcp \
356  test_transport_api_reliability_tcp_nat \
357  test_transport_api_unreliability_udp \
358  test_transport_api_unreliability_constant_udp \
359  $(UNIX_REL_TEST) \
360  $(HTTP_REL_TEST) \
361  $(HTTPS_REL_TEST) \
362  $(WLAN_REL_TEST) \
363  $(WLAN_UREL_TEST) \
364  test_quota_compliance_tcp \
365  test_quota_compliance_tcp_asymmetric \
366  test_quota_compliance_udp \
367  $(UNIX_QUOTA_TEST) \
368  $(HTTP_QUOTA_TEST) \
369  $(HTTPS_QUOTA_TEST) \
370  $(WLAN_QUOTA_TEST)
371
372 if ENABLE_TEST_RUN
373 TESTS = \
374  test_transport_testing_startstop \
375  test_transport_testing_restart \
376  test_transport_testing \
377  test_transport_startonly \
378  test_plugin_tcp \
379  test_plugin_udp \
380  $(UNIX_TEST) \
381  $(WLAN_PLUGIN_TEST) \
382  test_transport_api_blacklisting \
383  test_transport_api_disconnect_tcp \
384  test_transport_api_bidirectional_connect \
385  test_transport_api_tcp \
386  test_transport_api_restart_1peer \
387  test_transport_api_restart_2peers \
388  test_transport_api_timeout_tcp \
389  test_transport_api_limited_sockets_tcp \
390  test_transport_api_tcp_nat \
391  test_transport_api_udp \
392  test_transport_api_timeout_udp \
393  $(UNIX_PLUGIN_TEST) \
394  $(UNIX_PLUGIN_TIMEOUT_TEST) \
395  test_transport_api_udp_nat \
396  $(HTTP_API_TEST) \
397  $(HTTP_API_TIMEOUT_TEST) \
398  $(HTTPS_API_TEST) \
399  $(HTTPS_API_TIMEOUT_TEST) \
400  $(WLAN_API_TEST) \
401  test_transport_api_multi \
402  test_transport_blacklisting_no_bl \
403  test_transport_blacklisting_outbound_bl_full \
404  test_transport_blacklisting_outbound_bl_plugin \
405  test_transport_blacklisting_inbound_bl_plugin \
406  test_transport_blacklisting_inbound_bl_full \
407  test_transport_blacklisting_multiple_plugins \
408  test_transport_api_manipulation_send_tcp \
409  test_transport_api_manipulation_recv_tcp \
410  test_transport_api_manipulation_cfg \
411  test_transport_api_reliability_tcp \
412  test_transport_api_reliability_tcp_nat \
413  test_transport_api_unreliability_udp \
414  test_transport_api_unreliability_constant_udp \
415  $(UNIX_REL_TEST) \
416  $(HTTP_REL_TEST) \
417  $(HTTPS_REL_TEST) \
418  $(WLAN_REL_TEST) \
419  $(WLAN_UREL_TEST) \
420  test_quota_compliance_tcp \
421  test_quota_compliance_tcp_asymmetric \
422  test_quota_compliance_udp \
423  $(UNIX_QUOTA_TEST) \
424  $(HTTP_QUOTA_TEST) \
425  $(HTTPS_QUOTA_TEST)
426 endif
427
428 test_transport_testing_startstop_SOURCES = \
429  test_transport_testing_startstop.c
430 test_transport_testing_startstop_LDADD = \
431  $(top_builddir)/src/util/libgnunetutil.la \
432  $(top_builddir)/src/transport/libgnunettransport.la \
433  $(top_builddir)/src/hello/libgnunethello.la \
434  $(top_builddir)/src/transport/libgnunettransporttesting.la 
435
436 test_transport_testing_restart_SOURCES = \
437  test_transport_testing_restart.c
438 test_transport_testing_restart_LDADD = \
439  $(top_builddir)/src/util/libgnunetutil.la \
440  $(top_builddir)/src/transport/libgnunettransport.la \
441  $(top_builddir)/src/hello/libgnunethello.la \
442  $(top_builddir)/src/transport/libgnunettransporttesting.la 
443
444 test_transport_testing_SOURCES = \
445  test_transport_testing.c
446 test_transport_testing_LDADD = \
447  $(top_builddir)/src/util/libgnunetutil.la \
448  $(top_builddir)/src/transport/libgnunettransport.la \
449  $(top_builddir)/src/hello/libgnunethello.la \
450  $(top_builddir)/src/transport/libgnunettransporttesting.la 
451
452 test_transport_api_blacklisting_SOURCES = \
453  test_transport_api_blacklisting.c
454 test_transport_api_blacklisting_LDADD = \
455  $(top_builddir)/src/transport/libgnunettransport.la \
456  $(top_builddir)/src/hello/libgnunethello.la \
457  $(top_builddir)/src/statistics/libgnunetstatistics.la \
458  $(top_builddir)/src/util/libgnunetutil.la \
459  $(top_builddir)/src/transport/libgnunettransporttesting.la 
460
461 test_transport_blacklisting_no_bl_SOURCES = \
462  test_transport_blacklisting.c
463 test_transport_blacklisting_no_bl_LDADD = \
464  $(top_builddir)/src/transport/libgnunettransport.la \
465  $(top_builddir)/src/hello/libgnunethello.la \
466  $(top_builddir)/src/statistics/libgnunetstatistics.la \
467  $(top_builddir)/src/util/libgnunetutil.la \
468  $(top_builddir)/src/transport/libgnunettransporttesting.la 
469  
470 test_transport_blacklisting_outbound_bl_full_SOURCES = \
471  test_transport_blacklisting.c
472 test_transport_blacklisting_outbound_bl_full_LDADD = \
473  $(top_builddir)/src/transport/libgnunettransport.la \
474  $(top_builddir)/src/hello/libgnunethello.la \
475  $(top_builddir)/src/statistics/libgnunetstatistics.la \
476  $(top_builddir)/src/util/libgnunetutil.la \
477  $(top_builddir)/src/transport/libgnunettransporttesting.la  
478  
479 test_transport_blacklisting_outbound_bl_plugin_SOURCES = \
480  test_transport_blacklisting.c
481 test_transport_blacklisting_outbound_bl_plugin_LDADD = \
482  $(top_builddir)/src/transport/libgnunettransport.la \
483  $(top_builddir)/src/hello/libgnunethello.la \
484  $(top_builddir)/src/statistics/libgnunetstatistics.la \
485  $(top_builddir)/src/util/libgnunetutil.la \
486  $(top_builddir)/src/transport/libgnunettransporttesting.la   
487
488 test_transport_blacklisting_inbound_bl_full_SOURCES = \
489  test_transport_blacklisting.c
490 test_transport_blacklisting_inbound_bl_full_LDADD = \
491  $(top_builddir)/src/transport/libgnunettransport.la \
492  $(top_builddir)/src/hello/libgnunethello.la \
493  $(top_builddir)/src/statistics/libgnunetstatistics.la \
494  $(top_builddir)/src/util/libgnunetutil.la \
495  $(top_builddir)/src/transport/libgnunettransporttesting.la   
496  
497 test_transport_blacklisting_inbound_bl_plugin_SOURCES = \
498  test_transport_blacklisting.c
499 test_transport_blacklisting_inbound_bl_plugin_LDADD = \
500  $(top_builddir)/src/transport/libgnunettransport.la \
501  $(top_builddir)/src/hello/libgnunethello.la \
502  $(top_builddir)/src/statistics/libgnunetstatistics.la \
503  $(top_builddir)/src/util/libgnunetutil.la \
504  $(top_builddir)/src/transport/libgnunettransporttesting.la  
505
506 test_transport_blacklisting_multiple_plugins_SOURCES = \
507  test_transport_blacklisting.c
508 test_transport_blacklisting_multiple_plugins_LDADD = \
509  $(top_builddir)/src/transport/libgnunettransport.la \
510  $(top_builddir)/src/hello/libgnunethello.la \
511  $(top_builddir)/src/statistics/libgnunetstatistics.la \
512  $(top_builddir)/src/util/libgnunetutil.la \
513  $(top_builddir)/src/transport/libgnunettransporttesting.la  
514
515
516 test_transport_api_disconnect_tcp_SOURCES = \
517  test_transport_api_disconnect.c
518 test_transport_api_disconnect_tcp_LDADD = \
519  $(top_builddir)/src/transport/libgnunettransport.la \
520  $(top_builddir)/src/hello/libgnunethello.la \
521  $(top_builddir)/src/statistics/libgnunetstatistics.la \
522  $(top_builddir)/src/util/libgnunetutil.la \
523  $(top_builddir)/src/transport/libgnunettransporttesting.la 
524
525 test_transport_startonly_SOURCES = \
526  test_transport_startonly.c
527 test_transport_startonly_LDADD = \
528  $(top_builddir)/src/transport/libgnunettransport.la \
529  $(top_builddir)/src/hello/libgnunethello.la \
530  $(top_builddir)/src/statistics/libgnunetstatistics.la \
531  $(top_builddir)/src/util/libgnunetutil.la \
532  $(top_builddir)/src/transport/libgnunettransporttesting.la 
533
534 test_plugin_tcp_SOURCES = \
535  test_plugin_transport.c
536 test_plugin_tcp_LDADD = \
537  $(top_builddir)/src/transport/libgnunettransport.la \
538  $(top_builddir)/src/statistics/libgnunetstatistics.la \
539  $(top_builddir)/src/hello/libgnunethello.la \
540  $(top_builddir)/src/util/libgnunetutil.la  \
541  $(top_builddir)/src/transport/libgnunettransporttesting.la
542  
543 test_plugin_udp_SOURCES = \
544  test_plugin_transport.c
545 test_plugin_udp_LDADD = \
546  $(top_builddir)/src/transport/libgnunettransport.la \
547  $(top_builddir)/src/statistics/libgnunetstatistics.la \
548  $(top_builddir)/src/hello/libgnunethello.la \
549  $(top_builddir)/src/util/libgnunetutil.la  \
550  $(top_builddir)/src/transport/libgnunettransporttesting.la
551
552 test_plugin_unix_SOURCES = \
553  test_plugin_transport.c
554 test_plugin_unix_LDADD = \
555  $(top_builddir)/src/transport/libgnunettransport.la \
556  $(top_builddir)/src/statistics/libgnunetstatistics.la \
557  $(top_builddir)/src/hello/libgnunethello.la \
558  $(top_builddir)/src/util/libgnunetutil.la  \
559  $(top_builddir)/src/transport/libgnunettransporttesting.la
560
561 test_plugin_wlan_SOURCES = \
562  test_plugin_transport.c
563 test_plugin_wlan_LDADD = \
564  $(top_builddir)/src/transport/libgnunettransport.la \
565  $(top_builddir)/src/statistics/libgnunetstatistics.la \
566  $(top_builddir)/src/hello/libgnunethello.la \
567  $(top_builddir)/src/util/libgnunetutil.la  \
568  $(top_builddir)/src/transport/libgnunettransporttesting.la 
569
570
571 test_http_common_SOURCES = \
572  test_http_common.c plugin_transport_http_common.c
573 test_http_common_LDADD = \
574  $(top_builddir)/src/transport/libgnunettransport.la \
575  $(top_builddir)/src/statistics/libgnunetstatistics.la \
576  $(top_builddir)/src/hello/libgnunethello.la \
577  $(top_builddir)/src/util/libgnunetutil.la  \
578  $(top_builddir)/src/transport/libgnunettransporttesting.la 
579
580 test_plugin_http_server_SOURCES = \
581  test_plugin_transport.c
582 test_plugin_http_server_LDADD = \
583  $(top_builddir)/src/transport/libgnunettransport.la \
584  $(top_builddir)/src/statistics/libgnunetstatistics.la \
585  $(top_builddir)/src/hello/libgnunethello.la \
586  $(top_builddir)/src/util/libgnunetutil.la  \
587  $(top_builddir)/src/transport/libgnunettransporttesting.la 
588
589 test_plugin_https_server_SOURCES = \
590  test_plugin_transport.c
591 test_plugin_https_server_LDADD = \
592  $(top_builddir)/src/transport/libgnunettransport.la \
593  $(top_builddir)/src/statistics/libgnunetstatistics.la \
594  $(top_builddir)/src/hello/libgnunethello.la \
595  $(top_builddir)/src/util/libgnunetutil.la  \
596  $(top_builddir)/src/transport/libgnunettransporttesting.la
597
598 test_plugin_http_client_SOURCES = \
599  test_plugin_transport.c
600 test_plugin_http_client_LDADD = \
601  $(top_builddir)/src/transport/libgnunettransport.la \
602  $(top_builddir)/src/statistics/libgnunetstatistics.la \
603  $(top_builddir)/src/hello/libgnunethello.la \
604  $(top_builddir)/src/util/libgnunetutil.la  \
605  $(top_builddir)/src/transport/libgnunettransporttesting.la 
606
607 test_plugin_https_client_SOURCES = \
608  test_plugin_transport.c
609 test_plugin_https_client_LDADD = \
610  $(top_builddir)/src/transport/libgnunettransport.la \
611  $(top_builddir)/src/statistics/libgnunetstatistics.la \
612  $(top_builddir)/src/hello/libgnunethello.la \
613  $(top_builddir)/src/util/libgnunetutil.la  \
614  $(top_builddir)/src/transport/libgnunettransporttesting.la  
615
616 test_transport_api_tcp_SOURCES = \
617  test_transport_api.c
618 test_transport_api_tcp_LDADD = \
619  $(top_builddir)/src/transport/libgnunettransport.la \
620  $(top_builddir)/src/hello/libgnunethello.la \
621  $(top_builddir)/src/util/libgnunetutil.la  \
622  $(top_builddir)/src/transport/libgnunettransporttesting.la
623
624 test_transport_api_bidirectional_connect_SOURCES = \
625  test_transport_api_bidirectional_connect.c
626 test_transport_api_bidirectional_connect_LDADD = \
627  $(top_builddir)/src/transport/libgnunettransport.la \
628  $(top_builddir)/src/hello/libgnunethello.la \
629  $(top_builddir)/src/util/libgnunetutil.la  \
630  $(top_builddir)/src/transport/libgnunettransporttesting.la
631
632 test_transport_api_restart_1peer_SOURCES = \
633  test_transport_api_restart_1peer.c
634 test_transport_api_restart_1peer_LDADD = \
635  $(top_builddir)/src/transport/libgnunettransport.la \
636  $(top_builddir)/src/hello/libgnunethello.la \
637  $(top_builddir)/src/statistics/libgnunetstatistics.la \
638  $(top_builddir)/src/util/libgnunetutil.la \
639  $(top_builddir)/src/transport/libgnunettransporttesting.la 
640
641 test_transport_api_restart_2peers_SOURCES = \
642  test_transport_api_restart_2peers.c
643 test_transport_api_restart_2peers_LDADD = \
644  $(top_builddir)/src/transport/libgnunettransport.la \
645  $(top_builddir)/src/hello/libgnunethello.la \
646  $(top_builddir)/src/statistics/libgnunetstatistics.la \
647  $(top_builddir)/src/util/libgnunetutil.la \
648  $(top_builddir)/src/transport/libgnunettransporttesting.la 
649
650 test_transport_api_limited_sockets_tcp_SOURCES = \
651  test_transport_api_limited_sockets.c
652 test_transport_api_limited_sockets_tcp_LDADD = \
653  $(top_builddir)/src/transport/libgnunettransport.la \
654  $(top_builddir)/src/hello/libgnunethello.la \
655  $(top_builddir)/src/util/libgnunetutil.la  \
656  $(top_builddir)/src/transport/libgnunettransporttesting.la
657
658 test_transport_api_tcp_nat_SOURCES = \
659  test_transport_api.c
660 test_transport_api_tcp_nat_LDADD = \
661  $(top_builddir)/src/transport/libgnunettransport.la \
662  $(top_builddir)/src/hello/libgnunethello.la \
663  $(top_builddir)/src/util/libgnunetutil.la \
664  $(top_builddir)/src/transport/libgnunettransporttesting.la 
665
666 test_transport_api_manipulation_send_tcp_SOURCES = \
667  test_transport_api_manipulation_send_tcp.c
668 test_transport_api_manipulation_send_tcp_LDADD = \
669  $(top_builddir)/src/transport/libgnunettransport.la \
670  $(top_builddir)/src/hello/libgnunethello.la \
671  $(top_builddir)/src/util/libgnunetutil.la \
672  $(top_builddir)/src/transport/libgnunettransporttesting.la 
673
674 test_transport_api_manipulation_recv_tcp_SOURCES = \
675  test_transport_api_manipulation_recv_tcp.c
676 test_transport_api_manipulation_recv_tcp_LDADD = \
677  $(top_builddir)/src/transport/libgnunettransport.la \
678  $(top_builddir)/src/hello/libgnunethello.la \
679  $(top_builddir)/src/util/libgnunetutil.la \
680  $(top_builddir)/src/transport/libgnunettransporttesting.la 
681
682 test_transport_api_manipulation_cfg_SOURCES = \
683  test_transport_api_manipulation_cfg.c
684 test_transport_api_manipulation_cfg_LDADD = \
685  $(top_builddir)/src/transport/libgnunettransport.la \
686  $(top_builddir)/src/hello/libgnunethello.la \
687  $(top_builddir)/src/util/libgnunetutil.la \
688  $(top_builddir)/src/transport/libgnunettransporttesting.la 
689
690
691
692 test_transport_api_reliability_tcp_SOURCES = \
693  test_transport_api_reliability.c
694 test_transport_api_reliability_tcp_LDADD = \
695  $(top_builddir)/src/transport/libgnunettransport.la \
696  $(top_builddir)/src/hello/libgnunethello.la \
697  $(top_builddir)/src/util/libgnunetutil.la \
698  $(top_builddir)/src/transport/libgnunettransporttesting.la 
699
700 test_transport_api_timeout_tcp_SOURCES = \
701  test_transport_api_timeout.c
702 test_transport_api_timeout_tcp_LDADD = \
703  $(top_builddir)/src/transport/libgnunettransport.la \
704  $(top_builddir)/src/hello/libgnunethello.la \
705  $(top_builddir)/src/util/libgnunetutil.la \
706  $(top_builddir)/src/transport/libgnunettransporttesting.la 
707
708 test_transport_api_timeout_unix_SOURCES = \
709  test_transport_api_timeout.c
710 test_transport_api_timeout_unix_LDADD = \
711  $(top_builddir)/src/transport/libgnunettransport.la \
712  $(top_builddir)/src/hello/libgnunethello.la \
713  $(top_builddir)/src/util/libgnunetutil.la \
714  $(top_builddir)/src/transport/libgnunettransporttesting.la 
715
716 test_transport_api_reliability_tcp_nat_SOURCES = \
717  test_transport_api_reliability.c
718 test_transport_api_reliability_tcp_nat_LDADD = \
719  $(top_builddir)/src/transport/libgnunettransport.la \
720  $(top_builddir)/src/hello/libgnunethello.la \
721  $(top_builddir)/src/util/libgnunetutil.la \
722  $(top_builddir)/src/transport/libgnunettransporttesting.la 
723
724 test_transport_api_reliability_wlan_SOURCES = \
725  test_transport_api_reliability.c
726 test_transport_api_reliability_wlan_LDADD = \
727  $(top_builddir)/src/transport/libgnunettransport.la \
728  $(top_builddir)/src/hello/libgnunethello.la \
729  $(top_builddir)/src/util/libgnunetutil.la \
730  $(top_builddir)/src/transport/libgnunettransporttesting.la 
731
732 test_transport_api_unreliability_wlan_SOURCES = \
733  test_transport_api_unreliability.c
734 test_transport_api_unreliability_wlan_LDADD = \
735  $(top_builddir)/src/transport/libgnunettransport.la \
736  $(top_builddir)/src/hello/libgnunethello.la \
737  $(top_builddir)/src/util/libgnunetutil.la \
738  $(top_builddir)/src/transport/libgnunettransporttesting.la 
739
740 test_transport_api_udp_SOURCES = \
741  test_transport_api.c
742 test_transport_api_udp_LDADD = \
743  $(top_builddir)/src/transport/libgnunettransport.la \
744  $(top_builddir)/src/hello/libgnunethello.la \
745  $(top_builddir)/src/util/libgnunetutil.la  \
746  $(top_builddir)/src/transport/libgnunettransporttesting.la
747
748 test_transport_api_timeout_udp_SOURCES = \
749  test_transport_api_timeout.c
750 test_transport_api_timeout_udp_LDADD = \
751  $(top_builddir)/src/transport/libgnunettransport.la \
752  $(top_builddir)/src/hello/libgnunethello.la \
753  $(top_builddir)/src/util/libgnunetutil.la \
754  $(top_builddir)/src/transport/libgnunettransporttesting.la  
755
756 test_transport_api_udp_nat_SOURCES = \
757  test_transport_api.c
758 test_transport_api_udp_nat_LDADD = \
759  $(top_builddir)/src/transport/libgnunettransport.la \
760  $(top_builddir)/src/hello/libgnunethello.la \
761  $(top_builddir)/src/util/libgnunetutil.la  \
762  $(top_builddir)/src/transport/libgnunettransporttesting.la  
763
764 test_transport_api_unix_SOURCES = \
765  test_transport_api.c
766 test_transport_api_unix_LDADD = \
767  $(top_builddir)/src/transport/libgnunettransport.la \
768  $(top_builddir)/src/hello/libgnunethello.la \
769  $(top_builddir)/src/util/libgnunetutil.la \
770  $(top_builddir)/src/transport/libgnunettransporttesting.la 
771
772 # HTTP tests
773 test_transport_api_http_SOURCES = \
774  test_transport_api.c
775 test_transport_api_http_LDADD = \
776  $(top_builddir)/src/transport/libgnunettransport.la \
777  $(top_builddir)/src/hello/libgnunethello.la \
778  $(top_builddir)/src/util/libgnunetutil.la \
779  $(top_builddir)/src/transport/libgnunettransporttesting.la
780
781 test_transport_api_http_reverse_SOURCES = \
782  test_transport_api.c
783 test_transport_api_http_reverse_LDADD = \
784  $(top_builddir)/src/transport/libgnunettransport.la \
785  $(top_builddir)/src/hello/libgnunethello.la \
786  $(top_builddir)/src/util/libgnunetutil.la \
787  $(top_builddir)/src/transport/libgnunettransporttesting.la
788
789 test_transport_api_timeout_http_SOURCES = \
790  test_transport_api_timeout.c
791 test_transport_api_timeout_http_LDADD = \
792  $(top_builddir)/src/transport/libgnunettransport.la \
793  $(top_builddir)/src/hello/libgnunethello.la \
794  $(top_builddir)/src/util/libgnunetutil.la \
795  $(top_builddir)/src/transport/libgnunettransporttesting.la  
796
797 test_transport_api_reliability_http_SOURCES = \
798  test_transport_api_reliability.c
799 test_transport_api_reliability_http_LDADD = \
800  $(top_builddir)/src/transport/libgnunettransport.la \
801  $(top_builddir)/src/hello/libgnunethello.la \
802  $(top_builddir)/src/util/libgnunetutil.la \
803  $(top_builddir)/src/transport/libgnunettransporttesting.la 
804
805 test_quota_compliance_http_SOURCES = \
806  test_quota_compliance.c
807 test_quota_compliance_http_LDADD = \
808  $(top_builddir)/src/transport/libgnunettransport.la \
809  $(top_builddir)/src/hello/libgnunethello.la \
810  $(top_builddir)/src/util/libgnunetutil.la \
811  $(top_builddir)/src/transport/libgnunettransporttesting.la 
812
813 test_quota_compliance_http_asymmetric_SOURCES = \
814  test_quota_compliance.c
815 test_quota_compliance_http_asymmetric_LDADD = \
816  $(top_builddir)/src/transport/libgnunettransport.la \
817  $(top_builddir)/src/hello/libgnunethello.la \
818  $(top_builddir)/src/util/libgnunetutil.la \
819  $(top_builddir)/src/transport/libgnunettransporttesting.la
820
821 test_quota_compliance_https_SOURCES = \
822  test_quota_compliance.c
823 test_quota_compliance_https_LDADD = \
824  $(top_builddir)/src/transport/libgnunettransport.la \
825  $(top_builddir)/src/hello/libgnunethello.la \
826  $(top_builddir)/src/util/libgnunetutil.la \
827  $(top_builddir)/src/transport/libgnunettransporttesting.la
828
829 test_quota_compliance_https_asymmetric_SOURCES = \
830  test_quota_compliance.c
831 test_quota_compliance_https_asymmetric_LDADD = \
832  $(top_builddir)/src/transport/libgnunettransport.la \
833  $(top_builddir)/src/hello/libgnunethello.la \
834  $(top_builddir)/src/util/libgnunetutil.la \
835  $(top_builddir)/src/transport/libgnunettransporttesting.la
836
837 # HTTPS tests
838 test_transport_api_https_SOURCES = \
839  test_transport_api.c
840 test_transport_api_https_LDADD = \
841  $(top_builddir)/src/transport/libgnunettransport.la \
842  $(top_builddir)/src/hello/libgnunethello.la \
843  $(top_builddir)/src/util/libgnunetutil.la  \
844  $(top_builddir)/src/transport/libgnunettransporttesting.la 
845
846 test_transport_api_timeout_https_SOURCES = \
847  test_transport_api_timeout.c
848 test_transport_api_timeout_https_LDADD = \
849  $(top_builddir)/src/transport/libgnunettransport.la \
850  $(top_builddir)/src/hello/libgnunethello.la \
851  $(top_builddir)/src/util/libgnunetutil.la \
852  $(top_builddir)/src/transport/libgnunettransporttesting.la  
853
854
855 test_transport_api_reliability_https_SOURCES = \
856  test_transport_api_reliability.c
857 test_transport_api_reliability_https_LDADD = \
858  $(top_builddir)/src/transport/libgnunettransport.la \
859  $(top_builddir)/src/hello/libgnunethello.la \
860  $(top_builddir)/src/util/libgnunetutil.la \
861  $(top_builddir)/src/transport/libgnunettransporttesting.la 
862
863 test_transport_api_unreliability_unix_SOURCES = \
864  test_transport_api_unreliability.c
865 test_transport_api_unreliability_unix_LDADD = \
866  $(top_builddir)/src/transport/libgnunettransport.la \
867  $(top_builddir)/src/hello/libgnunethello.la \
868  $(top_builddir)/src/util/libgnunetutil.la \
869  $(top_builddir)/src/transport/libgnunettransporttesting.la 
870
871 test_transport_api_unreliability_udp_SOURCES = \
872  test_transport_api_unreliability.c
873 test_transport_api_unreliability_udp_LDADD = \
874  $(top_builddir)/src/transport/libgnunettransport.la \
875  $(top_builddir)/src/hello/libgnunethello.la \
876  $(top_builddir)/src/util/libgnunetutil.la \
877  $(top_builddir)/src/transport/libgnunettransporttesting.la 
878
879 test_transport_api_unreliability_constant_udp_SOURCES = \
880  test_transport_api_unreliability_constant.c
881 test_transport_api_unreliability_constant_udp_LDADD = \
882  $(top_builddir)/src/transport/libgnunettransport.la \
883  $(top_builddir)/src/hello/libgnunethello.la \
884  $(top_builddir)/src/util/libgnunetutil.la \
885  $(top_builddir)/src/transport/libgnunettransporttesting.la 
886
887 if LINUX
888 test_transport_api_wlan_SOURCES = \
889  test_transport_api.c
890 test_transport_api_wlan_LDADD = \
891  $(top_builddir)/src/transport/libgnunettransport.la \
892  $(top_builddir)/src/hello/libgnunethello.la \
893  $(top_builddir)/src/util/libgnunetutil.la \
894  $(top_builddir)/src/transport/libgnunettransporttesting.la  
895 endif
896
897 test_quota_compliance_tcp_SOURCES = \
898  test_quota_compliance.c
899 test_quota_compliance_tcp_LDADD = \
900  $(top_builddir)/src/transport/libgnunettransport.la \
901  $(top_builddir)/src/hello/libgnunethello.la \
902  $(top_builddir)/src/util/libgnunetutil.la \
903  $(top_builddir)/src/transport/libgnunettransporttesting.la 
904
905 test_quota_compliance_tcp_asymmetric_SOURCES = \
906  test_quota_compliance.c
907 test_quota_compliance_tcp_asymmetric_LDADD = \
908  $(top_builddir)/src/transport/libgnunettransport.la \
909  $(top_builddir)/src/hello/libgnunethello.la \
910  $(top_builddir)/src/util/libgnunetutil.la \
911  $(top_builddir)/src/transport/libgnunettransporttesting.la 
912
913 test_quota_compliance_udp_SOURCES = \
914  test_quota_compliance.c
915 test_quota_compliance_udp_LDADD = \
916  $(top_builddir)/src/transport/libgnunettransport.la \
917  $(top_builddir)/src/hello/libgnunethello.la \
918  $(top_builddir)/src/util/libgnunetutil.la \
919  $(top_builddir)/src/transport/libgnunettransporttesting.la
920
921 test_quota_compliance_unix_SOURCES = \
922  test_quota_compliance.c
923 test_quota_compliance_unix_LDADD = \
924  $(top_builddir)/src/transport/libgnunettransport.la \
925  $(top_builddir)/src/hello/libgnunethello.la \
926  $(top_builddir)/src/util/libgnunetutil.la \
927  $(top_builddir)/src/transport/libgnunettransporttesting.la
928
929 test_quota_compliance_unix_asymmetric_SOURCES = \
930  test_quota_compliance.c
931 test_quota_compliance_unix_asymmetric_LDADD = \
932  $(top_builddir)/src/transport/libgnunettransport.la \
933  $(top_builddir)/src/hello/libgnunethello.la \
934  $(top_builddir)/src/util/libgnunetutil.la \
935  $(top_builddir)/src/transport/libgnunettransporttesting.la
936
937 test_quota_compliance_wlan_SOURCES = \
938  test_quota_compliance.c
939 test_quota_compliance_wlan_LDADD = \
940  $(top_builddir)/src/transport/libgnunettransport.la \
941  $(top_builddir)/src/hello/libgnunethello.la \
942  $(top_builddir)/src/util/libgnunetutil.la \
943  $(top_builddir)/src/transport/libgnunettransporttesting.la
944
945 test_quota_compliance_wlan_asymmetric_SOURCES = \
946  test_quota_compliance.c
947 test_quota_compliance_wlan_asymmetric_LDADD = \
948  $(top_builddir)/src/transport/libgnunettransport.la \
949  $(top_builddir)/src/hello/libgnunethello.la \
950  $(top_builddir)/src/util/libgnunetutil.la \
951  $(top_builddir)/src/transport/libgnunettransporttesting.la
952
953 test_transport_api_multi_SOURCES = \
954  test_transport_api.c
955 test_transport_api_multi_LDADD = \
956  $(top_builddir)/src/transport/libgnunettransport.la \
957  $(top_builddir)/src/hello/libgnunethello.la \
958  $(top_builddir)/src/util/libgnunetutil.la \
959  $(top_builddir)/src/transport/libgnunettransporttesting.la 
960
961
962 EXTRA_DIST = \
963 test_plugin_hostkey \
964 test_plugin_hostkey.ecc \
965 template_cfg_peer1.conf\
966 template_cfg_peer2.conf\
967 test_plugin_transport_data.conf\
968 test_plugin_transport_data_udp.conf\
969 test_quota_compliance_data.conf\
970 test_quota_compliance_http_peer1.conf\
971 test_quota_compliance_http_peer2.conf\
972 test_quota_compliance_https_peer1.conf\
973 test_quota_compliance_https_peer2.conf\
974 test_quota_compliance_tcp_peer1.conf\
975 test_quota_compliance_tcp_peer2.conf\
976 test_quota_compliance_udp_peer1.conf\
977 test_quota_compliance_udp_peer2.conf\
978 test_quota_compliance_unix_peer1.conf\
979 test_quota_compliance_unix_peer2.conf\
980 test_quota_compliance_wlan_peer1.conf\
981 test_quota_compliance_wlan_peer2.conf\
982 test_quota_compliance_http_asymmetric_peer1.conf\
983 test_quota_compliance_http_asymmetric_peer2.conf\
984 test_quota_compliance_https_asymmetric_peer1.conf\
985 test_quota_compliance_https_asymmetric_peer2.conf\
986 test_quota_compliance_tcp_asymmetric_peer1.conf\
987 test_quota_compliance_tcp_asymmetric_peer2.conf\
988 test_quota_compliance_unix_asymmetric_peer1.conf\
989 test_quota_compliance_unix_asymmetric_peer2.conf\
990 test_quota_compliance_wlan_asymmetric_peer1.conf\
991 test_quota_compliance_wlan_asymmetric_peer2.conf\
992 test_transport_api_data.conf\
993 test_transport_api_http_peer1.conf\
994 test_transport_api_http_peer2.conf\
995 test_transport_api_https_peer1.conf\
996 test_transport_api_https_peer2.conf\
997 test_transport_api_limited_sockets_tcp_peer1.conf\
998 test_transport_api_limited_sockets_tcp_peer2.conf\
999 test_transport_api_timeout_tcp_peer1.conf\
1000 test_transport_api_timeout_tcp_peer2.conf\
1001 test_transport_api_multi_peer1.conf\
1002 test_transport_api_multi_peer2.conf\
1003 test_transport_api_reliability_http_peer1.conf\
1004 test_transport_api_reliability_http_peer2.conf\
1005 test_transport_api_reliability_https_peer1.conf\
1006 test_transport_api_reliability_https_peer2.conf\
1007 test_transport_api_reliability_tcp_nat_peer1.conf\
1008 test_transport_api_reliability_tcp_nat_peer2.conf\
1009 test_transport_api_reliability_tcp_peer1.conf\
1010 test_transport_api_reliability_tcp_peer2.conf\
1011 test_transport_api_reliability_wlan_peer1.conf\
1012 test_transport_api_reliability_wlan_peer2.conf\
1013 test_transport_api_bidirectional_connect_peer1.conf\
1014 test_transport_api_bidirectional_connect_peer2.conf\
1015 test_transport_api_manipulation_send_tcp_peer1.conf\
1016 test_transport_api_manipulation_send_tcp_peer2.conf\
1017 test_transport_api_manipulation_recv_tcp_peer1.conf\
1018 test_transport_api_manipulation_recv_tcp_peer2.conf\
1019 test_transport_api_manipulation_cfg_peer1.conf\
1020 test_transport_api_manipulation_cfg_peer2.conf\
1021 test_transport_api_tcp_nat_peer1.conf\
1022 test_transport_api_tcp_nat_peer2.conf\
1023 test_transport_api_tcp_peer1.conf\
1024 test_transport_api_tcp_peer2.conf\
1025 test_transport_api_udp_nat_peer1.conf\
1026 test_transport_api_udp_nat_peer2.conf\
1027 test_transport_api_udp_peer1.conf\
1028 test_transport_api_udp_peer2.conf\
1029 test_transport_api_timeout_udp_peer1.conf\
1030 test_transport_api_timeout_udp_peer2.conf\
1031 test_transport_api_unix_peer1.conf\
1032 test_transport_api_unix_peer2.conf\
1033 test_transport_api_timeout_unix_peer1.conf\
1034 test_transport_api_timeout_unix_peer2.conf\
1035 test_transport_api_unreliability_udp_peer1.conf\
1036 test_transport_api_unreliability_udp_peer2.conf\
1037 test_transport_api_unreliability_unix_peer1.conf\
1038 test_transport_api_unreliability_unix_peer2.conf\
1039 test_transport_api_unreliability_wlan_peer1.conf\
1040 test_transport_api_unreliability_wlan_peer2.conf\
1041 test_transport_api_wlan_peer1.conf\
1042 test_transport_api_wlan_peer2.conf\
1043 test_transport_defaults.conf\
1044 test_transport_startonly.conf\
1045 test_transport_api_disconnect_tcp_peer1.conf\
1046 test_transport_api_disconnect_tcp_peer2.conf\
1047 test_transport_api_timeout_http_peer1.conf\
1048 test_transport_api_timeout_http_peer2.conf\
1049 test_transport_api_timeout_https_peer1.conf\
1050 test_transport_api_timeout_https_peer2.conf\
1051 test_transport_api_unreliability_constant_udp_peer1.conf\
1052 test_transport_api_unreliability_constant_udp_peer2.conf\
1053 test_transport_blacklisting_cfg_peer1.conf \
1054 test_transport_blacklisting_cfg_peer2.conf \
1055 test_transport_blacklisting_cfg_blp_peer1_full.conf\
1056 test_transport_blacklisting_cfg_blp_peer1_plugin.conf \
1057 test_transport_blacklisting_cfg_blp_peer2_full.conf\
1058 test_transport_blacklisting_cfg_blp_peer2_plugin.conf \
1059 test_transport_blacklisting_cfg_blp_peer1_multiple_plugins.conf \
1060 test_transport_blacklisting_cfg_blp_peer2_multiple_plugins.conf \
1061 test_transport_api_http_reverse_peer1.conf \
1062 test_transport_api_http_reverse_peer2.conf