no unix on freebsd
[oweals/gnunet.git] / src / transport / Makefile.am
1 INCLUDES = -I$(top_srcdir)/src/include
2
3 plugindir = $(libdir)/gnunet
4
5 if MINGW
6   WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols
7   NATBIN = gnunet-nat-server gnunet-nat-client
8   NATSERVER = gnunet-nat-server-windows.c
9   NATCLIENT = gnunet-nat-client-windows.c
10 else
11   NATSERVER = gnunet-nat-server.c
12   NATCLIENT = gnunet-nat-client.c
13 endif
14
15 if HAVE_MHD
16  GN_LIBMHD = -lmicrohttpd
17  HTTP_PLUGIN_LA = libgnunet_plugin_transport_http.la
18  HTTP_PLUGIN_TEST = test_plugin_transport_http
19  HTTP_API_TEST = test_transport_api_http
20  HTTP_REL_TEST = test_transport_api_reliability_http
21  HTTP_QUOTA_TEST = test_quota_compliance_http \
22                    test_quota_compliance_http_asymmetric_recv_constant
23  HTTPS_PLUGIN_LA = libgnunet_plugin_transport_https.la
24  HTTPS_PLUGIN_TEST = test_plugin_transport_https
25  HTTPS_API_TEST = test_transport_api_https
26  HTTPS_REL_TEST = test_transport_api_reliability_https
27  HTTPS_QUOTA_TEST = test_quota_compliance_https \
28                 test_quota_compliance_https_asymmetric_recv_constant
29 endif
30
31 if USE_COVERAGE
32   AM_CFLAGS = --coverage -O0
33 endif
34
35 if HAVE_PCAP
36 if LINUX
37  WANBIN = gnunet-transport-wlan-helper
38  WLAN_PLUGIN_LA = libgnunet_plugin_transport_wlan.la
39  WLAN_API_TEST = test_transport_api_wlan
40  WLAN_REL_TEST = test_transport_api_reliability_wlan
41 endif
42 endif
43
44 if LINUX
45 UNIX_PLUGIN_LA = libgnunet_plugin_transport_unix.la
46 UNIX_PLUGIN_TEST = test_transport_api_unix 
47 UNIX_REL_TEST = test_transport_api_unreliability_unix
48 UNIX_QUOTA_TEST = test_quota_compliance_unix \
49      test_quota_compliance_unix_asymmetric_recv_constant
50 NATBIN = gnunet-nat-server gnunet-nat-client
51 install-exec-hook:
52         chown root $(bindir)/gnunet-nat-server $(bindir)/gnunet-nat-client $(bindir)/gnunet-transport-wlan-helper || true
53         chmod u+s $(bindir)/gnunet-nat-server $(bindir)/gnunet-nat-client $(bindir)/gnunet-transport-wlan-helper || true
54 else
55 install-exec-hook:
56 endif
57
58 #noinst_PROGRAMS = ${check_PROGRAMS}
59
60 lib_LTLIBRARIES = \
61   libgnunettransport.la
62
63 libgnunettransport_la_SOURCES = \
64   transport_api.c transport.h \
65   transport_api_blacklist.c \
66   transport_api_address_lookup.c 
67 libgnunettransport_la_LIBADD = \
68   $(top_builddir)/src/hello/libgnunethello.la \
69   $(top_builddir)/src/util/libgnunetutil.la \
70   $(GN_LIBINTL) 
71 libgnunettransport_la_LDFLAGS = \
72   $(GN_LIB_LDFLAGS) $(WINFLAGS) \
73   -version-info 0:0:0
74
75
76 bin_PROGRAMS = \
77  gnunet-transport \
78  $(WANBIN) \
79  gnunet-service-transport $(NATBIN)
80
81 bin_SCRIPTS = \
82  gnunet-transport-certificate-creation
83
84 gnunet_nat_server_SOURCES = \
85  $(NATSERVER)
86
87
88 gnunet_transport_wlan_helper_SOURCES = \
89  wlan/radiotap-parser.c \
90  wlan/helper_common.c \
91  wlan/loopback_helper.c \
92  gnunet-transport-wlan-helper.c
93
94 gnunet_transport_wlan_helper_LDADD = \
95   $(top_builddir)/src/util/libgnunetutil.la \
96  -lpcap
97
98 gnunet_nat_client_SOURCES = \
99  $(NATCLIENT)         
100
101 gnunet_transport_SOURCES = \
102  gnunet-transport.c         
103 gnunet_transport_LDADD = \
104   $(top_builddir)/src/transport/libgnunettransport.la \
105   $(top_builddir)/src/util/libgnunetutil.la \
106   $(GN_LIBINTL)
107 gnunet_transport_DEPENDENCIES = \
108   libgnunettransport.la                         
109
110 if HAVE_LIBGLPK
111   GN_GLPK = -lglpk
112 endif
113
114 gnunet_service_transport_SOURCES = \
115  gnunet-service-transport.c
116 gnunet_service_transport_LDADD = \
117   $(top_builddir)/src/hello/libgnunethello.la \
118   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
119   $(top_builddir)/src/statistics/libgnunetstatistics.la \
120   $(top_builddir)/src/util/libgnunetutil.la \
121   $(GN_GLPK) \
122   $(GN_LIBINTL)
123 gnunet_service_transport_DEPENDENCIES = \
124   libgnunettransport.la                           
125
126 plugin_LTLIBRARIES = \
127   libgnunet_plugin_transport_tcp.la \
128   libgnunet_plugin_transport_udp.la \
129   $(UNIX_PLUGIN_LA) \
130   $(HTTP_PLUGIN_LA) \
131   $(HTTPS_PLUGIN_LA) \
132   $(WLAN_PLUGIN_LA) \
133   libgnunet_plugin_transport_template.la
134 # TODO: add nat, etc.
135
136 libgnunet_plugin_transport_tcp_la_SOURCES = \
137   plugin_transport_tcp.c
138 libgnunet_plugin_transport_tcp_la_LIBADD = \
139   $(top_builddir)/src/hello/libgnunethello.la \
140   $(top_builddir)/src/statistics/libgnunetstatistics.la \
141   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
142   $(top_builddir)/src/nat/libgnunetnat.la \
143   $(top_builddir)/src/util/libgnunetutil.la 
144 libgnunet_plugin_transport_tcp_la_LDFLAGS = \
145  $(GN_PLUGIN_LDFLAGS)
146
147 libgnunet_plugin_transport_template_la_SOURCES = \
148   plugin_transport_template.c
149 libgnunet_plugin_transport_template_la_LIBADD = \
150   $(top_builddir)/src/util/libgnunetutil.la 
151 libgnunet_plugin_transport_template_la_LDFLAGS = \
152  $(GN_PLUGIN_LDFLAGS)
153
154 libgnunet_plugin_transport_wlan_la_SOURCES = \
155         plugin_transport_wlan.c
156 libgnunet_plugin_transport_wlan_la_LIBADD = \
157         $(top_builddir)/src/hello/libgnunethello.la \
158         $(top_builddir)/src/statistics/libgnunetstatistics.la \
159         $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
160         $(top_builddir)/src/util/libgnunetutil.la 
161 libgnunet_plugin_transport_wlan_la_LDFLAGS = \
162         $(GN_PLUGIN_LDFLAGS)
163
164 libgnunet_plugin_transport_udp_la_SOURCES = \
165   plugin_transport_udp.c
166 libgnunet_plugin_transport_udp_la_LIBADD = \
167   $(top_builddir)/src/hello/libgnunethello.la \
168   $(top_builddir)/src/statistics/libgnunetstatistics.la \
169   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
170   $(top_builddir)/src/util/libgnunetutil.la 
171 libgnunet_plugin_transport_udp_la_LDFLAGS = \
172  $(GN_PLUGIN_LDFLAGS)
173  
174 libgnunet_plugin_transport_unix_la_SOURCES = \
175   plugin_transport_unix.c
176 libgnunet_plugin_transport_unix_la_LIBADD = \
177   $(top_builddir)/src/hello/libgnunethello.la \
178   $(top_builddir)/src/statistics/libgnunetstatistics.la \
179   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
180   $(top_builddir)/src/util/libgnunetutil.la 
181 libgnunet_plugin_transport_unix_la_LDFLAGS = \
182  $(GN_PLUGIN_LDFLAGS)
183
184 libgnunet_plugin_transport_http_la_SOURCES = \
185   plugin_transport_http.c
186 libgnunet_plugin_transport_http_la_LIBADD = \
187   $(top_builddir)/src/hello/libgnunethello.la \
188   $(top_builddir)/src/statistics/libgnunetstatistics.la \
189   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
190   @LIBCURL@ \
191   $(top_builddir)/src/util/libgnunetutil.la 
192 libgnunet_plugin_transport_http_la_LDFLAGS = \
193  $(GN_LIBMHD) \
194  $(GN_PLUGIN_LDFLAGS)
195
196 libgnunet_plugin_transport_https_la_SOURCES = \
197   plugin_transport_http.c
198 libgnunet_plugin_transport_https_la_LIBADD = \
199   $(top_builddir)/src/hello/libgnunethello.la \
200   $(top_builddir)/src/statistics/libgnunetstatistics.la \
201   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
202   @LIBCURL@ \
203   $(top_builddir)/src/util/libgnunetutil.la 
204 libgnunet_plugin_transport_https_la_LDFLAGS = \
205  $(GN_LIBMHD) \
206  $(GN_PLUGIN_LDFLAGS)
207 libgnunet_plugin_transport_https_la_CFLAGS = \
208  $(CFLAGS) -DBUILD_HTTPS  
209
210
211 check_PROGRAMS = \
212  test_transport_ats \
213  test_transport_ats_perf \
214  test_transport_api_tcp \
215  test_transport_api_tcp_nat \
216  test_transport_api_udp \
217  $(UNIX_PLUGIN_TEST) \
218  test_transport_api_udp_nat \
219  $(HTTP_PLUGIN_TEST) \
220  $(HTTP_API_TEST) \
221  $(HTTPS_PLUGIN_TEST) \
222  $(HTTPS_API_TEST) \
223  test_transport_api_multi \
224  test_transport_api_reliability_tcp \
225  test_transport_api_reliability_tcp_nat \
226  test_transport_api_unreliability_udp \
227  $(UNIX_REL_TEST) \
228  $(HTTP_REL_TEST) \
229  $(HTTPS_REL_TEST) \
230  test_quota_compliance_tcp \
231  test_quota_compliance_tcp_asymmetric_recv_constant \
232  test_quota_compliance_udp \
233  test_quota_compliance_udp_asymmetric_recv_constant \
234  $(UNIX_QUOTA_TEST) \
235  $(HTTP_QUOTA_TEST) \
236  $(HTTPS_QUOTA_TEST) \
237  $(WLAN_API_TEST) \
238  $(WLAN_REL_TEST)
239 # TODO: add tests for nat, etc.
240
241 if !DISABLE_TEST_RUN
242 TESTS = \
243  test_transport_ats \
244  test_transport_ats_perf \
245  test_transport_api_tcp \
246  test_transport_api_tcp_nat \
247  test_transport_api_udp \
248  $(UNIX_PLUGIN_TEST) \
249  test_transport_api_udp_nat \
250  $(HTTP_PLUGIN_TEST) \
251  $(HTTP_API_TEST) \
252  $(HTTPS_PLUGIN_TEST) \
253  $(HTTPS_API_TEST) \
254  test_transport_api_multi \
255  test_transport_api_reliability_tcp \
256  test_transport_api_reliability_tcp_nat \
257  test_transport_api_unreliability_udp \
258  $(UNIX_REL_TEST) \
259  $(HTTP_REL_TEST) \
260  $(HTTPS_REL_TEST) \
261  test_quota_compliance_tcp \
262  test_quota_compliance_tcp_asymmetric_recv_constant \
263  test_quota_compliance_udp \
264  test_quota_compliance_udp_asymmetric_recv_constant \
265  $(UNIX_QUOTA_TEST) \
266  $(HTTP_QUOTA_TEST) \
267  $(HTTPS_QUOTA_TEST) \
268  $(WLAN_REL_TEST)
269 endif
270
271 test_transport_ats_SOURCES = \
272  test_transport_ats.c
273 test_transport_ats_LDADD = -lm \
274  $(top_builddir)/src/transport/libgnunettransport.la \
275  $(top_builddir)/src/statistics/libgnunetstatistics.la \
276  $(top_builddir)/src/testing/libgnunettesting.la \
277  $(top_builddir)/src/util/libgnunetutil.la  
278
279 test_transport_ats_perf_SOURCES = \
280  test_transport_ats_perf.c
281 test_transport_ats_perf_LDADD = \
282  $(top_builddir)/src/transport/libgnunettransport.la \
283  $(top_builddir)/src/statistics/libgnunetstatistics.la \
284  $(top_builddir)/src/testing/libgnunettesting.la \
285  $(GN_GLPK) \
286  $(top_builddir)/src/util/libgnunetutil.la  
287
288 test_transport_api_tcp_SOURCES = \
289  test_transport_api.c
290 test_transport_api_tcp_LDADD = \
291  $(top_builddir)/src/transport/libgnunettransport.la \
292  $(top_builddir)/src/hello/libgnunethello.la \
293  $(top_builddir)/src/util/libgnunetutil.la  
294
295 test_transport_api_tcp_nat_SOURCES = \
296  test_transport_api.c
297 test_transport_api_tcp_nat_LDADD = \
298  $(top_builddir)/src/transport/libgnunettransport.la \
299  $(top_builddir)/src/hello/libgnunethello.la \
300  $(top_builddir)/src/util/libgnunetutil.la  
301
302 test_transport_api_reliability_tcp_SOURCES = \
303  test_transport_api_reliability.c
304 test_transport_api_reliability_tcp_LDADD = \
305  $(top_builddir)/src/transport/libgnunettransport.la \
306  $(top_builddir)/src/hello/libgnunethello.la \
307  $(top_builddir)/src/util/libgnunetutil.la  
308
309 test_transport_api_reliability_tcp_nat_SOURCES = \
310  test_transport_api_reliability.c
311 test_transport_api_reliability_tcp_nat_LDADD = \
312  $(top_builddir)/src/transport/libgnunettransport.la \
313  $(top_builddir)/src/hello/libgnunethello.la \
314  $(top_builddir)/src/util/libgnunetutil.la 
315
316 test_transport_api_reliability_wlan_SOURCES = \
317  test_transport_api_reliability.c
318 test_transport_api_reliability_wlan_LDADD = \
319  $(top_builddir)/src/transport/libgnunettransport.la \
320  $(top_builddir)/src/hello/libgnunethello.la \
321  $(top_builddir)/src/util/libgnunetutil.la
322
323
324 test_transport_api_udp_SOURCES = \
325  test_transport_api.c
326 test_transport_api_udp_LDADD = \
327  $(top_builddir)/src/transport/libgnunettransport.la \
328  $(top_builddir)/src/hello/libgnunethello.la \
329  $(top_builddir)/src/util/libgnunetutil.la  
330
331 test_transport_api_udp_nat_SOURCES = \
332  test_transport_api.c
333 test_transport_api_udp_nat_LDADD = \
334  $(top_builddir)/src/transport/libgnunettransport.la \
335  $(top_builddir)/src/hello/libgnunethello.la \
336  $(top_builddir)/src/util/libgnunetutil.la   
337
338 test_transport_api_unix_SOURCES = \
339  test_transport_api.c
340 test_transport_api_unix_LDADD = \
341  $(top_builddir)/src/transport/libgnunettransport.la \
342  $(top_builddir)/src/hello/libgnunethello.la \
343  $(top_builddir)/src/util/libgnunetutil.la 
344
345 test_plugin_transport_http_SOURCES = \
346  test_plugin_transport_http.c
347 test_plugin_transport_http_LDADD = \
348  $(top_builddir)/src/transport/libgnunettransport.la \
349  $(top_builddir)/src/statistics/libgnunetstatistics.la \
350  @LIBCURL@ \
351  $(top_builddir)/src/hello/libgnunethello.la \
352  $(top_builddir)/src/util/libgnunetutil.la  
353
354 test_transport_api_http_SOURCES = \
355  test_transport_api.c
356 test_transport_api_http_LDADD = \
357  $(top_builddir)/src/transport/libgnunettransport.la \
358  $(top_builddir)/src/hello/libgnunethello.la \
359  $(top_builddir)/src/util/libgnunetutil.la  
360
361 test_transport_api_reliability_http_SOURCES = \
362  test_transport_api_reliability.c
363 test_transport_api_reliability_http_LDADD = \
364  $(top_builddir)/src/transport/libgnunettransport.la \
365  $(top_builddir)/src/hello/libgnunethello.la \
366  $(top_builddir)/src/util/libgnunetutil.la
367
368 test_plugin_transport_https_SOURCES = \
369  test_plugin_transport_https.c
370 test_plugin_transport_https_LDADD = \
371  $(top_builddir)/src/transport/libgnunettransport.la \
372  $(top_builddir)/src/statistics/libgnunetstatistics.la \
373  @LIBCURL@ \
374  $(top_builddir)/src/hello/libgnunethello.la \
375  $(top_builddir)/src/util/libgnunetutil.la  
376
377 test_transport_api_https_SOURCES = \
378  test_transport_api.c
379 test_transport_api_https_LDADD = \
380  $(top_builddir)/src/transport/libgnunettransport.la \
381  $(top_builddir)/src/hello/libgnunethello.la \
382  $(top_builddir)/src/util/libgnunetutil.la  
383
384 test_transport_api_reliability_https_SOURCES = \
385  test_transport_api_reliability.c
386 test_transport_api_reliability_https_LDADD = \
387  $(top_builddir)/src/transport/libgnunettransport.la \
388  $(top_builddir)/src/hello/libgnunethello.la \
389  $(top_builddir)/src/util/libgnunetutil.la
390
391 test_transport_api_unreliability_unix_SOURCES = \
392  test_transport_api_unreliability.c
393 test_transport_api_unreliability_unix_LDADD = \
394  $(top_builddir)/src/transport/libgnunettransport.la \
395  $(top_builddir)/src/hello/libgnunethello.la \
396  $(top_builddir)/src/util/libgnunetutil.la
397
398 test_transport_api_unreliability_udp_SOURCES = \
399  test_transport_api_unreliability.c
400 test_transport_api_unreliability_udp_LDADD = \
401  $(top_builddir)/src/transport/libgnunettransport.la \
402  $(top_builddir)/src/hello/libgnunethello.la \
403  $(top_builddir)/src/util/libgnunetutil.la
404
405 if HAVE_PCAP
406 if LINUX
407 test_transport_api_wlan_SOURCES = \
408  test_transport_api.c
409 test_transport_api_wlan_LDADD = \
410  $(top_builddir)/src/transport/libgnunettransport.la \
411  $(top_builddir)/src/hello/libgnunethello.la \
412  $(top_builddir)/src/util/libgnunetutil.la  
413 endif
414 endif
415
416 test_quota_compliance_tcp_SOURCES = \
417  test_quota_compliance.c
418 test_quota_compliance_tcp_LDADD = \
419  $(top_builddir)/src/transport/libgnunettransport.la \
420  $(top_builddir)/src/hello/libgnunethello.la \
421  $(top_builddir)/src/util/libgnunetutil.la
422
423 test_quota_compliance_tcp_asymmetric_recv_constant_SOURCES = \
424  test_quota_compliance.c
425 test_quota_compliance_tcp_asymmetric_recv_constant_LDADD = \
426  $(top_builddir)/src/transport/libgnunettransport.la \
427  $(top_builddir)/src/hello/libgnunethello.la \
428  $(top_builddir)/src/util/libgnunetutil.la
429
430 #test_quota_compliance_tcp_asymmetric_send_constant_SOURCES = \
431 # test_quota_compliance.c
432 #test_quota_compliance_tcp_asymmetric_send_constant_LDADD = \
433 # $(top_builddir)/src/transport/libgnunettransport.la \
434 # $(top_builddir)/src/util/libgnunetutil.la
435
436 test_quota_compliance_http_SOURCES = \
437  test_quota_compliance.c
438 test_quota_compliance_http_LDADD = \
439  $(top_builddir)/src/transport/libgnunettransport.la \
440  $(top_builddir)/src/hello/libgnunethello.la \
441  $(top_builddir)/src/util/libgnunetutil.la
442
443  test_quota_compliance_http_asymmetric_recv_constant_SOURCES = \
444  test_quota_compliance.c
445 test_quota_compliance_http_asymmetric_recv_constant_LDADD = \
446  $(top_builddir)/src/transport/libgnunettransport.la \
447  $(top_builddir)/src/hello/libgnunethello.la \
448  $(top_builddir)/src/util/libgnunetutil.la
449
450 #test_quota_compliance_http_asymmetric_send_constant_SOURCES = \
451 # test_quota_compliance.c
452 #test_quota_compliance_http_asymmetric_send_constant_LDADD = \
453 # $(top_builddir)/src/transport/libgnunettransport.la \
454 # $(top_builddir)/src/util/libgnunetutil.la
455
456 test_quota_compliance_https_SOURCES = \
457  test_quota_compliance.c
458 test_quota_compliance_https_LDADD = \
459  $(top_builddir)/src/transport/libgnunettransport.la \
460  $(top_builddir)/src/hello/libgnunethello.la \
461  $(top_builddir)/src/util/libgnunetutil.la
462
463  test_quota_compliance_https_asymmetric_recv_constant_SOURCES = \
464  test_quota_compliance.c
465 test_quota_compliance_https_asymmetric_recv_constant_LDADD = \
466  $(top_builddir)/src/transport/libgnunettransport.la \
467  $(top_builddir)/src/hello/libgnunethello.la \
468  $(top_builddir)/src/util/libgnunetutil.la
469
470 #test_quota_compliance_https_asymmetric_send_constant_SOURCES = \
471 # test_quota_compliance.c
472 #test_quota_compliance_https_asymmetric_send_constant_LDADD = \
473 # $(top_builddir)/src/transport/libgnunettransport.la \
474 # $(top_builddir)/src/util/libgnunetutil.la
475
476 test_quota_compliance_udp_SOURCES = \
477  test_quota_compliance.c
478 test_quota_compliance_udp_LDADD = \
479  $(top_builddir)/src/transport/libgnunettransport.la \
480  $(top_builddir)/src/hello/libgnunethello.la \
481  $(top_builddir)/src/util/libgnunetutil.la
482
483 test_quota_compliance_udp_asymmetric_recv_constant_SOURCES = \
484  test_quota_compliance.c
485 test_quota_compliance_udp_asymmetric_recv_constant_LDADD = \
486  $(top_builddir)/src/transport/libgnunettransport.la \
487  $(top_builddir)/src/hello/libgnunethello.la \
488  $(top_builddir)/src/util/libgnunetutil.la
489
490 #test_quota_compliance_udp_asymmetric_send_constant_SOURCES = \
491 # test_quota_compliance.c
492 #test_quota_compliance_udp_asymmetric_send_constant_LDADD = \
493 # $(top_builddir)/src/transport/libgnunettransport.la \
494 # $(top_builddir)/src/util/libgnunetutil.la 
495
496 test_quota_compliance_unix_SOURCES = \
497  test_quota_compliance.c
498 test_quota_compliance_unix_LDADD = \
499  $(top_builddir)/src/transport/libgnunettransport.la \
500  $(top_builddir)/src/hello/libgnunethello.la \
501  $(top_builddir)/src/util/libgnunetutil.la
502
503 test_quota_compliance_unix_asymmetric_recv_constant_SOURCES = \
504  test_quota_compliance.c
505 test_quota_compliance_unix_asymmetric_recv_constant_LDADD = \
506  $(top_builddir)/src/transport/libgnunettransport.la \
507  $(top_builddir)/src/hello/libgnunethello.la \
508  $(top_builddir)/src/util/libgnunetutil.la
509
510
511 test_transport_api_multi_SOURCES = \
512  test_transport_api.c
513 test_transport_api_multi_LDADD = \
514  $(top_builddir)/src/transport/libgnunettransport.la \
515  $(top_builddir)/src/hello/libgnunethello.la \
516  $(top_builddir)/src/util/libgnunetutil.la  
517 EXTRA_DIST = \
518   gnunet-transport-certificate-creation \
519   test_transport_api_data.conf \
520   test_transport_api_tcp_peer1.conf \
521   test_transport_api_tcp_peer2.conf \
522   test_transport_api_udp_peer1.conf \
523   test_transport_api_udp_peer2.conf \
524   test_transport_api_unix_peer1.conf \
525   test_transport_api_unix_peer2.conf \
526   test_transport_api_udp_nat_peer1.conf \
527   test_transport_api_udp_nat_peer2.conf \
528   test_transport_api_tcp_nat_peer1.conf \
529   test_transport_api_tcp_nat_peer2.conf \
530   test_plugin_transport_data.conf \
531   test_transport_api_http_peer1.conf \
532   test_transport_api_http_peer2.conf \
533   test_transport_api_https_peer1.conf \
534   test_transport_api_https_peer2.conf \
535   test_transport_api_wlan_peer1.conf \
536   test_transport_api_wlan_peer2.conf \
537   test_transport_api_multi_peer1.conf \
538   test_transport_api_multi_peer2.conf \
539   test_transport_api_rel_http_peer1.conf \
540   test_transport_api_rel_http_peer2.conf \
541   test_transport_api_rel_https_peer1.conf \
542   test_transport_api_rel_https_peer2.conf \
543   test_plugin_transport_data_http.conf \
544   test_plugin_transport_data.conf \
545   test_quota_compliance_data.conf \
546   test_quota_compliance_tcp_peer1.conf \
547   test_quota_compliance_tcp_peer2.conf \
548   test_quota_compliance_http_peer1.conf \
549   test_quota_compliance_http_peer2.conf \
550   test_quota_compliance_https_peer1.conf \
551   test_quota_compliance_https_peer2.conf \
552   test_quota_compliance_udp_peer1.conf \
553   test_quota_compliance_udp_peer2.conf \
554   test_quota_compliance_unix_peer1.conf \
555   test_quota_compliance_unix_peer2.conf