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