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