- use proper signedness
[oweals/gnunet.git] / src / transport / Makefile.am
1 AM_CPPFLAGS = -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_LIBGNURL
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_LIBGNURL
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_TIMEOUT_TEST = test_transport_api_timeout_wlan
57  WLAN_REL_TEST = test_transport_api_reliability_wlan
58  WLAN_UREL_TEST = test_transport_api_unreliability_wlan
59  WLAN_QUOTA_TEST = test_quota_compliance_wlan \
60                 test_quota_compliance_wlan_asymmetric
61 endif
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 LINUX
71 if HAVE_LIBBLUETOOTH
72  BT_BIN = gnunet-helper-transport-bluetooth
73  BT_PLUGIN_LA = libgnunet_plugin_transport_bluetooth.la
74  BT_PLUGIN_TEST = test_plugin_bluetooth
75  BT_API_TEST = test_transport_api_bluetooth
76  BT_TIMEOUT_TEST = test_transport_api_timeout_bluetooth
77  BT_REL_TEST = test_transport_api_reliability_bluetooth
78  BT_UREL_TEST = test_transport_api_unreliability_bluetooth
79  BT_QUOTA_TEST = test_quota_compliance_bluetooth \
80     test_quota_compliance_bluetooth_asymmetric
81 endif
82 else
83 if MINGW
84  BT_BIN = gnunet-helper-transport-bluetooth
85  BT_PLUGIN_LA = libgnunet_plugin_transport_bluetooth.la
86 endif
87 endif
88
89 if LINUX
90 if HAVE_LIBBLUETOOTH
91 install-exec-hook2:
92         $(top_srcdir)/src/transport/install-bluetooth-helper.sh $(libexecdir) $(SUDO_BINARY) || true
93 endif
94 else
95 install-exec-hook2:
96 endif
97
98 if !MINGW
99 UNIX_PLUGIN_LA = libgnunet_plugin_transport_unix.la
100 UNIX_PLUGIN_TEST = test_transport_api_unix
101 UNIX_TEST = test_plugin_unix
102 UNIX_PLUGIN_TIMEOUT_TEST = test_transport_api_timeout_unix
103 UNIX_REL_TEST = test_transport_api_unreliability_unix
104 UNIX_QUOTA_TEST = test_quota_compliance_unix \
105      test_quota_compliance_unix_asymmetric
106 endif
107
108 noinst_PROGRAMS = \
109  $(WLAN_BIN_SENDER) \
110  $(WLAN_BIN_RECEIVER)
111
112 if HAVE_TESTING
113 TESTING_LIBS = libgnunettransporttesting.la
114 endif
115
116 lib_LTLIBRARIES = \
117   libgnunettransport.la \
118   $(TESTING_LIBS)
119
120 libgnunettransporttesting_la_SOURCES = \
121   transport-testing.c transport-testing.h
122 libgnunettransporttesting_la_LIBADD = \
123   $(top_builddir)/src/transport/libgnunettransport.la \
124   $(top_builddir)/src/hello/libgnunethello.la \
125   $(top_builddir)/src/util/libgnunetutil.la \
126   $(top_builddir)/src/testing/libgnunettesting.la \
127   $(GN_LIBINTL)
128 libgnunettransporttesting_la_DEPENDENCIES = \
129   libgnunettransport.la
130 libgnunettransporttesting_la_LDFLAGS = \
131  $(GN_LIB_LDFLAGS)
132
133 libgnunettransport_la_SOURCES = \
134   transport_api.c transport.h \
135   transport_api_blacklist.c \
136   transport_api_address_to_string.c \
137   transport_api_address_lookup.c
138 libgnunettransport_la_LIBADD = \
139   $(top_builddir)/src/hello/libgnunethello.la \
140   $(top_builddir)/src/util/libgnunetutil.la \
141   $(GN_LIBINTL)
142 libgnunettransport_la_LDFLAGS = \
143   $(GN_LIB_LDFLAGS) $(WINFLAGS) \
144   -version-info 3:0:1
145
146 libexec_PROGRAMS = \
147  $(WLAN_BIN) \
148  $(WLAN_BIN_DUMMY) \
149  $(BT_BIN) \
150  gnunet-service-transport
151
152 bin_PROGRAMS = \
153  gnunet-transport \
154  gnunet-transport-certificate-creation
155
156 #bin_SCRIPTS = \
157 # gnunet-transport-certificate-creation
158
159 gnunet_transport_certificate_creation_SOURCES = \
160  gnunet-transport-certificate-creation.c
161 gnunet_transport_certificate_creation_LDADD = \
162   $(top_builddir)/src/util/libgnunetutil.la
163
164 gnunet_helper_transport_wlan_SOURCES = \
165  gnunet-helper-transport-wlan.c
166
167 gnunet_helper_transport_wlan_dummy_SOURCES = \
168  gnunet-helper-transport-wlan-dummy.c
169 gnunet_helper_transport_wlan_dummy_LDADD = \
170   $(top_builddir)/src/util/libgnunetutil.la
171
172 gnunet_transport_wlan_sender_SOURCES = \
173  gnunet-transport-wlan-sender.c
174 gnunet_transport_wlan_sender_LDADD = \
175   $(top_builddir)/src/util/libgnunetutil.la
176
177 gnunet_transport_wlan_receiver_SOURCES = \
178  gnunet-transport-wlan-receiver.c
179 gnunet_transport_wlan_receiver_LDADD = \
180   $(top_builddir)/src/util/libgnunetutil.la
181
182 gnunet_helper_transport_bluetooth_SOURCES = \
183  gnunet-helper-transport-bluetooth.c
184 if MINGW
185  gnunet_helper_transport_bluetooth_LDADD = \
186   $(top_builddir)/src/util/libgnunetutil.la
187  gnunet_helper_transport_bluetooth_LDFLAGS = -lws2_32
188 else
189  gnunet_helper_transport_bluetooth_LDFLAGS = -lbluetooth
190 endif
191
192 gnunet_transport_SOURCES = \
193  gnunet-transport.c
194 gnunet_transport_LDADD = \
195   $(top_builddir)/src/transport/libgnunettransport.la \
196   $(top_builddir)/src/nat/libgnunetnat.la \
197   $(top_builddir)/src/hello/libgnunethello.la \
198   $(top_builddir)/src/util/libgnunetutil.la \
199   $(GN_LIBINTL)
200 gnunet_transport_DEPENDENCIES = \
201   libgnunettransport.la
202
203 gnunet_service_transport_SOURCES = \
204  gnunet-service-transport.c gnunet-service-transport.h \
205  gnunet-service-transport_blacklist.h gnunet-service-transport_blacklist.c \
206  gnunet-service-transport_clients.h gnunet-service-transport_clients.c \
207  gnunet-service-transport_hello.h gnunet-service-transport_hello.c \
208  gnunet-service-transport_neighbours.h gnunet-service-transport_neighbours.c \
209  gnunet-service-transport_plugins.h gnunet-service-transport_plugins.c \
210  gnunet-service-transport_validation.h gnunet-service-transport_validation.c \
211  gnunet-service-transport_manipulation.h gnunet-service-transport_manipulation.c
212 gnunet_service_transport_LDADD = \
213   $(top_builddir)/src/ats/libgnunetats.la \
214   $(top_builddir)/src/hello/libgnunethello.la \
215   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
216   $(top_builddir)/src/statistics/libgnunetstatistics.la \
217   $(top_builddir)/src/util/libgnunetutil.la \
218   $(GN_GLPK) \
219   $(GN_LIBINTL)
220 gnunet_service_transport_CFLAGS = \
221   $(CFLAGS)
222 # -DANALYZE
223
224 plugin_LTLIBRARIES = \
225   libgnunet_plugin_transport_tcp.la \
226   libgnunet_plugin_transport_udp.la \
227   $(UNIX_PLUGIN_LA) \
228   $(HTTP_CLIENT_PLUGIN_LA) \
229   $(HTTPS_CLIENT_PLUGIN_LA) \
230   $(HTTP_SERVER_PLUGIN_LA) \
231   $(HTTPS_SERVER_PLUGIN_LA) \
232   $(WLAN_PLUGIN_LA) \
233   $(BT_PLUGIN_LA) \
234   libgnunet_plugin_transport_template.la
235
236 libgnunet_plugin_transport_tcp_la_SOURCES = \
237   plugin_transport_tcp.c
238 libgnunet_plugin_transport_tcp_la_LIBADD = \
239   $(top_builddir)/src/hello/libgnunethello.la \
240   $(top_builddir)/src/statistics/libgnunetstatistics.la \
241   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
242   $(top_builddir)/src/nat/libgnunetnat.la \
243   $(top_builddir)/src/util/libgnunetutil.la \
244   $(LTLIBINTL)
245 libgnunet_plugin_transport_tcp_la_LDFLAGS = \
246  $(GN_PLUGIN_LDFLAGS)
247
248 libgnunet_plugin_transport_template_la_SOURCES = \
249   plugin_transport_template.c
250 libgnunet_plugin_transport_template_la_LIBADD = \
251   $(top_builddir)/src/util/libgnunetutil.la \
252   $(LTLIBINTL)
253 libgnunet_plugin_transport_template_la_LDFLAGS = \
254  $(GN_PLUGIN_LDFLAGS)
255
256 libgnunet_plugin_transport_wlan_la_SOURCES = \
257   plugin_transport_wlan.c plugin_transport_wlan.h
258 libgnunet_plugin_transport_wlan_la_LIBADD = \
259   $(top_builddir)/src/hello/libgnunethello.la \
260   $(top_builddir)/src/statistics/libgnunetstatistics.la \
261   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
262   $(top_builddir)/src/fragmentation/libgnunetfragmentation.la \
263   $(top_builddir)/src/util/libgnunetutil.la
264 libgnunet_plugin_transport_wlan_la_LDFLAGS = \
265   $(GN_PLUGIN_LDFLAGS)
266
267 libgnunet_plugin_transport_bluetooth_la_SOURCES = \
268   plugin_transport_bluetooth.c plugin_transport_wlan.h
269 libgnunet_plugin_transport_bluetooth_la_LIBADD = \
270   $(top_builddir)/src/hello/libgnunethello.la \
271   $(top_builddir)/src/statistics/libgnunetstatistics.la \
272   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
273   $(top_builddir)/src/fragmentation/libgnunetfragmentation.la \
274   $(top_builddir)/src/util/libgnunetutil.la
275 libgnunet_plugin_transport_bluetooth_la_LDFLAGS = \
276   $(GN_PLUGIN_LDFLAGS)
277
278 libgnunet_plugin_transport_udp_la_SOURCES = \
279   plugin_transport_udp.c plugin_transport_udp.h \
280   plugin_transport_udp_broadcasting.c
281 libgnunet_plugin_transport_udp_la_LIBADD = \
282   $(top_builddir)/src/hello/libgnunethello.la \
283   $(top_builddir)/src/fragmentation/libgnunetfragmentation.la \
284   $(top_builddir)/src/statistics/libgnunetstatistics.la \
285   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
286   $(top_builddir)/src/nat/libgnunetnat.la \
287   $(top_builddir)/src/util/libgnunetutil.la \
288   $(LTLIBINTL)
289 libgnunet_plugin_transport_udp_la_LDFLAGS = \
290  $(GN_PLUGIN_LDFLAGS)
291
292 libgnunet_plugin_transport_unix_la_SOURCES = \
293   plugin_transport_unix.c
294 libgnunet_plugin_transport_unix_la_LIBADD = \
295   $(top_builddir)/src/hello/libgnunethello.la \
296   $(top_builddir)/src/statistics/libgnunetstatistics.la \
297   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
298   $(top_builddir)/src/util/libgnunetutil.la \
299   $(LTLIBINTL)
300 libgnunet_plugin_transport_unix_la_LDFLAGS = \
301  $(GN_PLUGIN_LDFLAGS)
302
303
304 libgnunet_plugin_transport_http_client_la_SOURCES = \
305   plugin_transport_http_client.c plugin_transport_http_common.c plugin_transport_http_common.h
306 libgnunet_plugin_transport_http_client_la_LIBADD = \
307   $(top_builddir)/src/hello/libgnunethello.la \
308   $(top_builddir)/src/statistics/libgnunetstatistics.la \
309   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
310   @LIBGNURL@ \
311   $(top_builddir)/src/nat/libgnunetnat.la \
312   $(top_builddir)/src/util/libgnunetutil.la
313 libgnunet_plugin_transport_http_client_la_LDFLAGS = \
314  $(GN_PLUGIN_LDFLAGS)
315 libgnunet_plugin_transport_http_client_la_CFLAGS = \
316  $(CFLAGS)
317 libgnunet_plugin_transport_http_client_la_CPPFLAGS = \
318  @LIBGNURL_CPPFLAGS@ $(AM_CPPFLAGS)
319
320
321 libgnunet_plugin_transport_http_server_la_SOURCES = \
322   plugin_transport_http_server.c plugin_transport_http_common.c
323 libgnunet_plugin_transport_http_server_la_LIBADD = \
324   $(top_builddir)/src/hello/libgnunethello.la \
325   $(top_builddir)/src/statistics/libgnunetstatistics.la \
326   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
327   $(top_builddir)/src/nat/libgnunetnat.la \
328   $(top_builddir)/src/util/libgnunetutil.la
329 libgnunet_plugin_transport_http_server_la_LDFLAGS = \
330  $(GN_LIBMHD) \
331  $(GN_PLUGIN_LDFLAGS)
332 libgnunet_plugin_transport_http_server_la_CFLAGS = \
333  $(CFLAGS)
334
335 libgnunet_plugin_transport_https_client_la_SOURCES = \
336   plugin_transport_http_client.c plugin_transport_http_common.c
337 libgnunet_plugin_transport_https_client_la_LIBADD = \
338   $(top_builddir)/src/hello/libgnunethello.la \
339   $(top_builddir)/src/statistics/libgnunetstatistics.la \
340   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
341   @LIBGNURL@ \
342   $(top_builddir)/src/nat/libgnunetnat.la \
343   $(top_builddir)/src/util/libgnunetutil.la
344 libgnunet_plugin_transport_https_client_la_LDFLAGS = \
345  $(GN_PLUGIN_LDFLAGS)
346 libgnunet_plugin_transport_https_client_la_CFLAGS = \
347  $(CFLAGS) -DBUILD_HTTPS
348 libgnunet_plugin_transport_https_client_la_CPPFLAGS = \
349  @LIBGNURL_CPPFLAGS@ $(AM_CPPFLAGS)
350
351
352 libgnunet_plugin_transport_https_server_la_SOURCES = \
353   plugin_transport_http_server.c plugin_transport_http_common.c
354 libgnunet_plugin_transport_https_server_la_LIBADD = \
355   $(top_builddir)/src/hello/libgnunethello.la \
356   $(top_builddir)/src/statistics/libgnunetstatistics.la \
357   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
358   $(top_builddir)/src/nat/libgnunetnat.la \
359   $(top_builddir)/src/util/libgnunetutil.la
360 libgnunet_plugin_transport_https_server_la_LDFLAGS = \
361  $(GN_LIBMHD) \
362  $(GN_PLUGIN_LDFLAGS)
363 libgnunet_plugin_transport_https_server_la_CFLAGS = \
364  $(CFLAGS) -DBUILD_HTTPS
365
366
367 if HAVE_TESTING
368 check_PROGRAMS = \
369  test_transport_testing_startstop \
370  test_transport_testing_restart \
371  test_transport_testing \
372  test_transport_startonly \
373  test_plugin_tcp \
374  test_plugin_udp \
375  $(UNIX_TEST) \
376  $(WLAN_PLUGIN_TEST) \
377  $(BT_PLUGIN_TEST) \
378  test_http_common \
379  $(HTTP_CLIENT_PLUGIN_TEST) \
380  $(HTTPS_CLIENT_PLUGIN_TEST) \
381  $(HTTP_SERVER_PLUGIN_TEST) \
382  $(HTTPS_SERVER_PLUGIN_TEST) \
383  test_transport_api_blacklisting \
384  test_transport_api_disconnect_tcp \
385  test_transport_api_bidirectional_connect \
386  test_transport_api_tcp \
387  test_transport_api_restart_1peer \
388  test_transport_api_restart_2peers \
389  test_transport_api_timeout_tcp \
390  test_transport_api_limited_sockets_tcp \
391  test_transport_api_tcp_nat \
392  test_transport_api_udp \
393  test_transport_api_timeout_udp \
394  $(UNIX_PLUGIN_TEST) \
395  $(UNIX_PLUGIN_TIMEOUT_TEST) \
396  test_transport_api_udp_nat \
397  $(HTTP_API_TEST) \
398  $(HTTP_REVERSE_API_TEST) \
399  $(HTTP_API_TIMEOUT_TEST) \
400  $(HTTPS_API_TEST) \
401  $(HTTPS_API_TIMEOUT_TEST) \
402  $(WLAN_API_TEST) \
403  $(WLAN_TIMEOUT_TEST) \
404  $(BT_API_TEST) \
405  $(BT_TIMEOUT_TEST) \
406  test_transport_api_multi \
407  test_transport_blacklisting_no_bl \
408  test_transport_blacklisting_outbound_bl_full \
409  test_transport_blacklisting_outbound_bl_plugin \
410  test_transport_blacklisting_inbound_bl_plugin \
411  test_transport_blacklisting_inbound_bl_full \
412  test_transport_blacklisting_multiple_plugins \
413  test_transport_api_manipulation_send_tcp \
414  test_transport_api_manipulation_recv_tcp \
415  test_transport_api_manipulation_cfg \
416  test_transport_api_reliability_tcp \
417  test_transport_api_reliability_tcp_nat \
418  test_transport_api_unreliability_udp \
419  test_transport_api_unreliability_constant_udp \
420  $(UNIX_REL_TEST) \
421  $(HTTP_REL_TEST) \
422  $(HTTPS_REL_TEST) \
423  $(WLAN_REL_TEST) \
424  $(WLAN_UREL_TEST) \
425  $(BT_REL_TEST) \
426  $(BT_UREL_TEST) \
427  test_quota_compliance_tcp \
428  test_quota_compliance_tcp_asymmetric \
429  test_quota_compliance_udp \
430  $(UNIX_QUOTA_TEST) \
431  $(HTTP_QUOTA_TEST) \
432  $(HTTPS_QUOTA_TEST) \
433  $(WLAN_QUOTA_TEST) \
434  $(BT_QUOTA_TEST)
435 endif
436
437 if ENABLE_TEST_RUN
438 TESTS = \
439  test_transport_testing_startstop \
440  test_transport_testing_restart \
441  test_transport_testing \
442  test_transport_startonly \
443  test_plugin_tcp \
444  test_plugin_udp \
445  $(UNIX_TEST) \
446  $(WLAN_PLUGIN_TEST) \
447  $(BT_PLUGIN_TEST) \
448  test_transport_api_blacklisting \
449  test_transport_api_disconnect_tcp \
450  test_transport_api_bidirectional_connect \
451  test_transport_api_tcp \
452  test_transport_api_restart_1peer \
453  test_transport_api_restart_2peers \
454  test_transport_api_timeout_tcp \
455  test_transport_api_limited_sockets_tcp \
456  test_transport_api_tcp_nat \
457  test_transport_api_udp \
458  test_transport_api_timeout_udp \
459  $(UNIX_PLUGIN_TEST) \
460  $(UNIX_PLUGIN_TIMEOUT_TEST) \
461  test_transport_api_udp_nat \
462  $(HTTP_API_TEST) \
463  $(HTTP_API_TIMEOUT_TEST) \
464  $(HTTPS_API_TEST) \
465  $(HTTPS_API_TIMEOUT_TEST) \
466  $(WLAN_API_TEST) \
467  $(WLAN_TIMEOUT_TEST) \
468  $(BT_API_TEST) \
469  $(BT_TIMEOUT_TEST) \
470  test_transport_api_multi \
471  test_transport_blacklisting_no_bl \
472  test_transport_blacklisting_outbound_bl_full \
473  test_transport_blacklisting_outbound_bl_plugin \
474  test_transport_blacklisting_inbound_bl_plugin \
475  test_transport_blacklisting_inbound_bl_full \
476  test_transport_blacklisting_multiple_plugins \
477  test_transport_api_manipulation_send_tcp \
478  test_transport_api_manipulation_recv_tcp \
479  test_transport_api_manipulation_cfg \
480  test_transport_api_reliability_tcp \
481  test_transport_api_reliability_tcp_nat \
482  test_transport_api_unreliability_udp \
483  test_transport_api_unreliability_constant_udp \
484  $(UNIX_REL_TEST) \
485  $(HTTP_REL_TEST) \
486  $(HTTPS_REL_TEST) \
487  $(WLAN_REL_TEST) \
488  $(WLAN_UREL_TEST) \
489  $(BT_REL_TEST) \
490  $(BT_UREL_TEST) \
491  test_quota_compliance_tcp \
492  test_quota_compliance_tcp_asymmetric \
493  test_quota_compliance_udp \
494  $(UNIX_QUOTA_TEST) \
495  $(HTTP_QUOTA_TEST) \
496  $(HTTPS_QUOTA_TEST)
497 endif
498
499 test_transport_testing_startstop_SOURCES = \
500  test_transport_testing_startstop.c
501 test_transport_testing_startstop_LDADD = \
502  $(top_builddir)/src/util/libgnunetutil.la \
503  $(top_builddir)/src/transport/libgnunettransport.la \
504  $(top_builddir)/src/hello/libgnunethello.la \
505  $(top_builddir)/src/transport/libgnunettransporttesting.la
506
507 test_transport_testing_restart_SOURCES = \
508  test_transport_testing_restart.c
509 test_transport_testing_restart_LDADD = \
510  $(top_builddir)/src/util/libgnunetutil.la \
511  $(top_builddir)/src/transport/libgnunettransport.la \
512  $(top_builddir)/src/hello/libgnunethello.la \
513  $(top_builddir)/src/transport/libgnunettransporttesting.la
514
515 test_transport_testing_SOURCES = \
516  test_transport_testing.c
517 test_transport_testing_LDADD = \
518  $(top_builddir)/src/util/libgnunetutil.la \
519  $(top_builddir)/src/transport/libgnunettransport.la \
520  $(top_builddir)/src/hello/libgnunethello.la \
521  $(top_builddir)/src/transport/libgnunettransporttesting.la
522
523 test_transport_api_blacklisting_SOURCES = \
524  test_transport_api_blacklisting.c
525 test_transport_api_blacklisting_LDADD = \
526  $(top_builddir)/src/transport/libgnunettransport.la \
527  $(top_builddir)/src/hello/libgnunethello.la \
528  $(top_builddir)/src/statistics/libgnunetstatistics.la \
529  $(top_builddir)/src/util/libgnunetutil.la \
530  $(top_builddir)/src/transport/libgnunettransporttesting.la
531
532 test_transport_blacklisting_no_bl_SOURCES = \
533  test_transport_blacklisting.c
534 test_transport_blacklisting_no_bl_LDADD = \
535  $(top_builddir)/src/transport/libgnunettransport.la \
536  $(top_builddir)/src/hello/libgnunethello.la \
537  $(top_builddir)/src/statistics/libgnunetstatistics.la \
538  $(top_builddir)/src/util/libgnunetutil.la \
539  $(top_builddir)/src/transport/libgnunettransporttesting.la
540
541 test_transport_blacklisting_outbound_bl_full_SOURCES = \
542  test_transport_blacklisting.c
543 test_transport_blacklisting_outbound_bl_full_LDADD = \
544  $(top_builddir)/src/transport/libgnunettransport.la \
545  $(top_builddir)/src/hello/libgnunethello.la \
546  $(top_builddir)/src/statistics/libgnunetstatistics.la \
547  $(top_builddir)/src/util/libgnunetutil.la \
548  $(top_builddir)/src/transport/libgnunettransporttesting.la
549
550 test_transport_blacklisting_outbound_bl_plugin_SOURCES = \
551  test_transport_blacklisting.c
552 test_transport_blacklisting_outbound_bl_plugin_LDADD = \
553  $(top_builddir)/src/transport/libgnunettransport.la \
554  $(top_builddir)/src/hello/libgnunethello.la \
555  $(top_builddir)/src/statistics/libgnunetstatistics.la \
556  $(top_builddir)/src/util/libgnunetutil.la \
557  $(top_builddir)/src/transport/libgnunettransporttesting.la
558
559 test_transport_blacklisting_inbound_bl_full_SOURCES = \
560  test_transport_blacklisting.c
561 test_transport_blacklisting_inbound_bl_full_LDADD = \
562  $(top_builddir)/src/transport/libgnunettransport.la \
563  $(top_builddir)/src/hello/libgnunethello.la \
564  $(top_builddir)/src/statistics/libgnunetstatistics.la \
565  $(top_builddir)/src/util/libgnunetutil.la \
566  $(top_builddir)/src/transport/libgnunettransporttesting.la
567
568 test_transport_blacklisting_inbound_bl_plugin_SOURCES = \
569  test_transport_blacklisting.c
570 test_transport_blacklisting_inbound_bl_plugin_LDADD = \
571  $(top_builddir)/src/transport/libgnunettransport.la \
572  $(top_builddir)/src/hello/libgnunethello.la \
573  $(top_builddir)/src/statistics/libgnunetstatistics.la \
574  $(top_builddir)/src/util/libgnunetutil.la \
575  $(top_builddir)/src/transport/libgnunettransporttesting.la
576
577 test_transport_blacklisting_multiple_plugins_SOURCES = \
578  test_transport_blacklisting.c
579 test_transport_blacklisting_multiple_plugins_LDADD = \
580  $(top_builddir)/src/transport/libgnunettransport.la \
581  $(top_builddir)/src/hello/libgnunethello.la \
582  $(top_builddir)/src/statistics/libgnunetstatistics.la \
583  $(top_builddir)/src/util/libgnunetutil.la \
584  $(top_builddir)/src/transport/libgnunettransporttesting.la
585
586
587 test_transport_api_disconnect_tcp_SOURCES = \
588  test_transport_api_disconnect.c
589 test_transport_api_disconnect_tcp_LDADD = \
590  $(top_builddir)/src/transport/libgnunettransport.la \
591  $(top_builddir)/src/hello/libgnunethello.la \
592  $(top_builddir)/src/statistics/libgnunetstatistics.la \
593  $(top_builddir)/src/util/libgnunetutil.la \
594  $(top_builddir)/src/transport/libgnunettransporttesting.la
595
596 test_transport_startonly_SOURCES = \
597  test_transport_startonly.c
598 test_transport_startonly_LDADD = \
599  $(top_builddir)/src/transport/libgnunettransport.la \
600  $(top_builddir)/src/hello/libgnunethello.la \
601  $(top_builddir)/src/statistics/libgnunetstatistics.la \
602  $(top_builddir)/src/util/libgnunetutil.la \
603  $(top_builddir)/src/transport/libgnunettransporttesting.la
604
605 test_plugin_tcp_SOURCES = \
606  test_plugin_transport.c
607 test_plugin_tcp_LDADD = \
608  $(top_builddir)/src/transport/libgnunettransport.la \
609  $(top_builddir)/src/statistics/libgnunetstatistics.la \
610  $(top_builddir)/src/hello/libgnunethello.la \
611  $(top_builddir)/src/util/libgnunetutil.la  \
612  $(top_builddir)/src/transport/libgnunettransporttesting.la
613
614 test_plugin_udp_SOURCES = \
615  test_plugin_transport.c
616 test_plugin_udp_LDADD = \
617  $(top_builddir)/src/transport/libgnunettransport.la \
618  $(top_builddir)/src/statistics/libgnunetstatistics.la \
619  $(top_builddir)/src/hello/libgnunethello.la \
620  $(top_builddir)/src/util/libgnunetutil.la  \
621  $(top_builddir)/src/transport/libgnunettransporttesting.la
622
623 test_plugin_unix_SOURCES = \
624  test_plugin_transport.c
625 test_plugin_unix_LDADD = \
626  $(top_builddir)/src/transport/libgnunettransport.la \
627  $(top_builddir)/src/statistics/libgnunetstatistics.la \
628  $(top_builddir)/src/hello/libgnunethello.la \
629  $(top_builddir)/src/util/libgnunetutil.la  \
630  $(top_builddir)/src/transport/libgnunettransporttesting.la
631
632 test_plugin_wlan_SOURCES = \
633  test_plugin_transport.c
634 test_plugin_wlan_LDADD = \
635  $(top_builddir)/src/transport/libgnunettransport.la \
636  $(top_builddir)/src/statistics/libgnunetstatistics.la \
637  $(top_builddir)/src/hello/libgnunethello.la \
638  $(top_builddir)/src/util/libgnunetutil.la  \
639  $(top_builddir)/src/transport/libgnunettransporttesting.la
640
641 test_plugin_bluetooth_SOURCES = \
642  test_plugin_transport.c
643 test_plugin_bluetooth_LDADD = \
644  $(top_builddir)/src/transport/libgnunettransport.la \
645  $(top_builddir)/src/statistics/libgnunetstatistics.la \
646  $(top_builddir)/src/hello/libgnunethello.la \
647  $(top_builddir)/src/util/libgnunetutil.la  \
648  $(top_builddir)/src/transport/libgnunettransporttesting.la
649
650 test_http_common_SOURCES = \
651  test_http_common.c plugin_transport_http_common.c
652 test_http_common_LDADD = \
653  $(top_builddir)/src/transport/libgnunettransport.la \
654  $(top_builddir)/src/statistics/libgnunetstatistics.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_plugin_http_server_SOURCES = \
660  test_plugin_transport.c
661 test_plugin_http_server_LDADD = \
662  $(top_builddir)/src/transport/libgnunettransport.la \
663  $(top_builddir)/src/statistics/libgnunetstatistics.la \
664  $(top_builddir)/src/hello/libgnunethello.la \
665  $(top_builddir)/src/util/libgnunetutil.la  \
666  $(top_builddir)/src/transport/libgnunettransporttesting.la
667
668 test_plugin_https_server_SOURCES = \
669  test_plugin_transport.c
670 test_plugin_https_server_LDADD = \
671  $(top_builddir)/src/transport/libgnunettransport.la \
672  $(top_builddir)/src/statistics/libgnunetstatistics.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_plugin_http_client_SOURCES = \
678  test_plugin_transport.c
679 test_plugin_http_client_LDADD = \
680  $(top_builddir)/src/transport/libgnunettransport.la \
681  $(top_builddir)/src/statistics/libgnunetstatistics.la \
682  $(top_builddir)/src/hello/libgnunethello.la \
683  $(top_builddir)/src/util/libgnunetutil.la  \
684  $(top_builddir)/src/transport/libgnunettransporttesting.la
685
686 test_plugin_https_client_SOURCES = \
687  test_plugin_transport.c
688 test_plugin_https_client_LDADD = \
689  $(top_builddir)/src/transport/libgnunettransport.la \
690  $(top_builddir)/src/statistics/libgnunetstatistics.la \
691  $(top_builddir)/src/hello/libgnunethello.la \
692  $(top_builddir)/src/util/libgnunetutil.la  \
693  $(top_builddir)/src/transport/libgnunettransporttesting.la
694
695 test_transport_api_tcp_SOURCES = \
696  test_transport_api.c
697 test_transport_api_tcp_LDADD = \
698  $(top_builddir)/src/transport/libgnunettransport.la \
699  $(top_builddir)/src/hello/libgnunethello.la \
700  $(top_builddir)/src/util/libgnunetutil.la  \
701  $(top_builddir)/src/transport/libgnunettransporttesting.la
702
703 test_transport_api_bidirectional_connect_SOURCES = \
704  test_transport_api_bidirectional_connect.c
705 test_transport_api_bidirectional_connect_LDADD = \
706  $(top_builddir)/src/transport/libgnunettransport.la \
707  $(top_builddir)/src/hello/libgnunethello.la \
708  $(top_builddir)/src/util/libgnunetutil.la  \
709  $(top_builddir)/src/transport/libgnunettransporttesting.la
710
711 test_transport_api_restart_1peer_SOURCES = \
712  test_transport_api_restart_1peer.c
713 test_transport_api_restart_1peer_LDADD = \
714  $(top_builddir)/src/transport/libgnunettransport.la \
715  $(top_builddir)/src/hello/libgnunethello.la \
716  $(top_builddir)/src/statistics/libgnunetstatistics.la \
717  $(top_builddir)/src/util/libgnunetutil.la \
718  $(top_builddir)/src/transport/libgnunettransporttesting.la
719
720 test_transport_api_restart_2peers_SOURCES = \
721  test_transport_api_restart_2peers.c
722 test_transport_api_restart_2peers_LDADD = \
723  $(top_builddir)/src/transport/libgnunettransport.la \
724  $(top_builddir)/src/hello/libgnunethello.la \
725  $(top_builddir)/src/statistics/libgnunetstatistics.la \
726  $(top_builddir)/src/util/libgnunetutil.la \
727  $(top_builddir)/src/transport/libgnunettransporttesting.la
728
729 test_transport_api_limited_sockets_tcp_SOURCES = \
730  test_transport_api_limited_sockets.c
731 test_transport_api_limited_sockets_tcp_LDADD = \
732  $(top_builddir)/src/transport/libgnunettransport.la \
733  $(top_builddir)/src/hello/libgnunethello.la \
734  $(top_builddir)/src/util/libgnunetutil.la  \
735  $(top_builddir)/src/transport/libgnunettransporttesting.la
736
737 test_transport_api_tcp_nat_SOURCES = \
738  test_transport_api.c
739 test_transport_api_tcp_nat_LDADD = \
740  $(top_builddir)/src/transport/libgnunettransport.la \
741  $(top_builddir)/src/hello/libgnunethello.la \
742  $(top_builddir)/src/util/libgnunetutil.la \
743  $(top_builddir)/src/transport/libgnunettransporttesting.la
744
745 test_transport_api_manipulation_send_tcp_SOURCES = \
746  test_transport_api_manipulation_send_tcp.c
747 test_transport_api_manipulation_send_tcp_LDADD = \
748  $(top_builddir)/src/transport/libgnunettransport.la \
749  $(top_builddir)/src/hello/libgnunethello.la \
750  $(top_builddir)/src/util/libgnunetutil.la \
751  $(top_builddir)/src/transport/libgnunettransporttesting.la
752
753 test_transport_api_manipulation_recv_tcp_SOURCES = \
754  test_transport_api_manipulation_recv_tcp.c
755 test_transport_api_manipulation_recv_tcp_LDADD = \
756  $(top_builddir)/src/transport/libgnunettransport.la \
757  $(top_builddir)/src/hello/libgnunethello.la \
758  $(top_builddir)/src/util/libgnunetutil.la \
759  $(top_builddir)/src/transport/libgnunettransporttesting.la
760
761 test_transport_api_manipulation_cfg_SOURCES = \
762  test_transport_api_manipulation_cfg.c
763 test_transport_api_manipulation_cfg_LDADD = \
764  $(top_builddir)/src/transport/libgnunettransport.la \
765  $(top_builddir)/src/hello/libgnunethello.la \
766  $(top_builddir)/src/util/libgnunetutil.la \
767  $(top_builddir)/src/transport/libgnunettransporttesting.la
768
769
770
771 test_transport_api_reliability_tcp_SOURCES = \
772  test_transport_api_reliability.c
773 test_transport_api_reliability_tcp_LDADD = \
774  $(top_builddir)/src/transport/libgnunettransport.la \
775  $(top_builddir)/src/hello/libgnunethello.la \
776  $(top_builddir)/src/util/libgnunetutil.la \
777  $(top_builddir)/src/transport/libgnunettransporttesting.la
778
779 test_transport_api_timeout_tcp_SOURCES = \
780  test_transport_api_timeout.c
781 test_transport_api_timeout_tcp_LDADD = \
782  $(top_builddir)/src/transport/libgnunettransport.la \
783  $(top_builddir)/src/hello/libgnunethello.la \
784  $(top_builddir)/src/util/libgnunetutil.la \
785  $(top_builddir)/src/transport/libgnunettransporttesting.la
786
787 test_transport_api_timeout_unix_SOURCES = \
788  test_transport_api_timeout.c
789 test_transport_api_timeout_unix_LDADD = \
790  $(top_builddir)/src/transport/libgnunettransport.la \
791  $(top_builddir)/src/hello/libgnunethello.la \
792  $(top_builddir)/src/util/libgnunetutil.la \
793  $(top_builddir)/src/transport/libgnunettransporttesting.la
794
795 test_transport_api_timeout_wlan_SOURCES = \
796  test_transport_api_timeout.c
797 test_transport_api_timeout_wlan_LDADD = \
798  $(top_builddir)/src/transport/libgnunettransport.la \
799  $(top_builddir)/src/hello/libgnunethello.la \
800  $(top_builddir)/src/util/libgnunetutil.la \
801  $(top_builddir)/src/transport/libgnunettransporttesting.la
802
803 test_transport_api_timeout_bluetooth_SOURCES = \
804  test_transport_api_timeout.c
805 test_transport_api_timeout_bluetooth_LDADD = \
806  $(top_builddir)/src/transport/libgnunettransport.la \
807  $(top_builddir)/src/hello/libgnunethello.la \
808  $(top_builddir)/src/util/libgnunetutil.la \
809  $(top_builddir)/src/transport/libgnunettransporttesting.la
810
811 test_transport_api_reliability_tcp_nat_SOURCES = \
812  test_transport_api_reliability.c
813 test_transport_api_reliability_tcp_nat_LDADD = \
814  $(top_builddir)/src/transport/libgnunettransport.la \
815  $(top_builddir)/src/hello/libgnunethello.la \
816  $(top_builddir)/src/util/libgnunetutil.la \
817  $(top_builddir)/src/transport/libgnunettransporttesting.la
818
819 test_transport_api_reliability_wlan_SOURCES = \
820  test_transport_api_reliability.c
821 test_transport_api_reliability_wlan_LDADD = \
822  $(top_builddir)/src/transport/libgnunettransport.la \
823  $(top_builddir)/src/hello/libgnunethello.la \
824  $(top_builddir)/src/util/libgnunetutil.la \
825  $(top_builddir)/src/transport/libgnunettransporttesting.la
826
827 test_transport_api_reliability_bluetooth_SOURCES = \
828  test_transport_api_reliability.c
829 test_transport_api_reliability_bluetooth_LDADD = \
830  $(top_builddir)/src/transport/libgnunettransport.la \
831  $(top_builddir)/src/hello/libgnunethello.la \
832  $(top_builddir)/src/util/libgnunetutil.la \
833  $(top_builddir)/src/transport/libgnunettransporttesting.la
834
835 test_transport_api_unreliability_wlan_SOURCES = \
836  test_transport_api_unreliability.c
837 test_transport_api_unreliability_wlan_LDADD = \
838  $(top_builddir)/src/transport/libgnunettransport.la \
839  $(top_builddir)/src/hello/libgnunethello.la \
840  $(top_builddir)/src/util/libgnunetutil.la \
841  $(top_builddir)/src/transport/libgnunettransporttesting.la
842
843 test_transport_api_unreliability_bluetooth_SOURCES = \
844  test_transport_api_unreliability.c
845 test_transport_api_unreliability_bluetooth_LDADD = \
846  $(top_builddir)/src/transport/libgnunettransport.la \
847  $(top_builddir)/src/hello/libgnunethello.la \
848  $(top_builddir)/src/util/libgnunetutil.la \
849  $(top_builddir)/src/transport/libgnunettransporttesting.la
850
851 test_transport_api_udp_SOURCES = \
852  test_transport_api.c
853 test_transport_api_udp_LDADD = \
854  $(top_builddir)/src/transport/libgnunettransport.la \
855  $(top_builddir)/src/hello/libgnunethello.la \
856  $(top_builddir)/src/util/libgnunetutil.la  \
857  $(top_builddir)/src/transport/libgnunettransporttesting.la
858
859 test_transport_api_timeout_udp_SOURCES = \
860  test_transport_api_timeout.c
861 test_transport_api_timeout_udp_LDADD = \
862  $(top_builddir)/src/transport/libgnunettransport.la \
863  $(top_builddir)/src/hello/libgnunethello.la \
864  $(top_builddir)/src/util/libgnunetutil.la \
865  $(top_builddir)/src/transport/libgnunettransporttesting.la
866
867 test_transport_api_udp_nat_SOURCES = \
868  test_transport_api.c
869 test_transport_api_udp_nat_LDADD = \
870  $(top_builddir)/src/transport/libgnunettransport.la \
871  $(top_builddir)/src/hello/libgnunethello.la \
872  $(top_builddir)/src/util/libgnunetutil.la  \
873  $(top_builddir)/src/transport/libgnunettransporttesting.la
874
875 test_transport_api_unix_SOURCES = \
876  test_transport_api.c
877 test_transport_api_unix_LDADD = \
878  $(top_builddir)/src/transport/libgnunettransport.la \
879  $(top_builddir)/src/hello/libgnunethello.la \
880  $(top_builddir)/src/util/libgnunetutil.la \
881  $(top_builddir)/src/transport/libgnunettransporttesting.la
882
883 # HTTP tests
884 test_transport_api_http_SOURCES = \
885  test_transport_api.c
886 test_transport_api_http_LDADD = \
887  $(top_builddir)/src/transport/libgnunettransport.la \
888  $(top_builddir)/src/hello/libgnunethello.la \
889  $(top_builddir)/src/util/libgnunetutil.la \
890  $(top_builddir)/src/transport/libgnunettransporttesting.la
891
892 test_transport_api_http_reverse_SOURCES = \
893  test_transport_api.c
894 test_transport_api_http_reverse_LDADD = \
895  $(top_builddir)/src/transport/libgnunettransport.la \
896  $(top_builddir)/src/hello/libgnunethello.la \
897  $(top_builddir)/src/util/libgnunetutil.la \
898  $(top_builddir)/src/transport/libgnunettransporttesting.la
899
900 test_transport_api_timeout_http_SOURCES = \
901  test_transport_api_timeout.c
902 test_transport_api_timeout_http_LDADD = \
903  $(top_builddir)/src/transport/libgnunettransport.la \
904  $(top_builddir)/src/hello/libgnunethello.la \
905  $(top_builddir)/src/util/libgnunetutil.la \
906  $(top_builddir)/src/transport/libgnunettransporttesting.la
907
908 test_transport_api_reliability_http_SOURCES = \
909  test_transport_api_reliability.c
910 test_transport_api_reliability_http_LDADD = \
911  $(top_builddir)/src/transport/libgnunettransport.la \
912  $(top_builddir)/src/hello/libgnunethello.la \
913  $(top_builddir)/src/util/libgnunetutil.la \
914  $(top_builddir)/src/transport/libgnunettransporttesting.la
915
916 test_quota_compliance_http_SOURCES = \
917  test_quota_compliance.c
918 test_quota_compliance_http_LDADD = \
919  $(top_builddir)/src/transport/libgnunettransport.la \
920  $(top_builddir)/src/hello/libgnunethello.la \
921  $(top_builddir)/src/util/libgnunetutil.la \
922  $(top_builddir)/src/transport/libgnunettransporttesting.la
923
924 test_quota_compliance_http_asymmetric_SOURCES = \
925  test_quota_compliance.c
926 test_quota_compliance_http_asymmetric_LDADD = \
927  $(top_builddir)/src/transport/libgnunettransport.la \
928  $(top_builddir)/src/hello/libgnunethello.la \
929  $(top_builddir)/src/util/libgnunetutil.la \
930  $(top_builddir)/src/transport/libgnunettransporttesting.la
931
932 test_quota_compliance_https_SOURCES = \
933  test_quota_compliance.c
934 test_quota_compliance_https_LDADD = \
935  $(top_builddir)/src/transport/libgnunettransport.la \
936  $(top_builddir)/src/hello/libgnunethello.la \
937  $(top_builddir)/src/util/libgnunetutil.la \
938  $(top_builddir)/src/transport/libgnunettransporttesting.la
939
940 test_quota_compliance_https_asymmetric_SOURCES = \
941  test_quota_compliance.c
942 test_quota_compliance_https_asymmetric_LDADD = \
943  $(top_builddir)/src/transport/libgnunettransport.la \
944  $(top_builddir)/src/hello/libgnunethello.la \
945  $(top_builddir)/src/util/libgnunetutil.la \
946  $(top_builddir)/src/transport/libgnunettransporttesting.la
947
948 # HTTPS tests
949 test_transport_api_https_SOURCES = \
950  test_transport_api.c
951 test_transport_api_https_LDADD = \
952  $(top_builddir)/src/transport/libgnunettransport.la \
953  $(top_builddir)/src/hello/libgnunethello.la \
954  $(top_builddir)/src/util/libgnunetutil.la  \
955  $(top_builddir)/src/transport/libgnunettransporttesting.la
956
957 test_transport_api_timeout_https_SOURCES = \
958  test_transport_api_timeout.c
959 test_transport_api_timeout_https_LDADD = \
960  $(top_builddir)/src/transport/libgnunettransport.la \
961  $(top_builddir)/src/hello/libgnunethello.la \
962  $(top_builddir)/src/util/libgnunetutil.la \
963  $(top_builddir)/src/transport/libgnunettransporttesting.la
964
965
966 test_transport_api_reliability_https_SOURCES = \
967  test_transport_api_reliability.c
968 test_transport_api_reliability_https_LDADD = \
969  $(top_builddir)/src/transport/libgnunettransport.la \
970  $(top_builddir)/src/hello/libgnunethello.la \
971  $(top_builddir)/src/util/libgnunetutil.la \
972  $(top_builddir)/src/transport/libgnunettransporttesting.la
973
974 test_transport_api_unreliability_unix_SOURCES = \
975  test_transport_api_unreliability.c
976 test_transport_api_unreliability_unix_LDADD = \
977  $(top_builddir)/src/transport/libgnunettransport.la \
978  $(top_builddir)/src/hello/libgnunethello.la \
979  $(top_builddir)/src/util/libgnunetutil.la \
980  $(top_builddir)/src/transport/libgnunettransporttesting.la
981
982 test_transport_api_unreliability_udp_SOURCES = \
983  test_transport_api_unreliability.c
984 test_transport_api_unreliability_udp_LDADD = \
985  $(top_builddir)/src/transport/libgnunettransport.la \
986  $(top_builddir)/src/hello/libgnunethello.la \
987  $(top_builddir)/src/util/libgnunetutil.la \
988  $(top_builddir)/src/transport/libgnunettransporttesting.la
989
990 test_transport_api_unreliability_constant_udp_SOURCES = \
991  test_transport_api_unreliability_constant.c
992 test_transport_api_unreliability_constant_udp_LDADD = \
993  $(top_builddir)/src/transport/libgnunettransport.la \
994  $(top_builddir)/src/hello/libgnunethello.la \
995  $(top_builddir)/src/util/libgnunetutil.la \
996  $(top_builddir)/src/transport/libgnunettransporttesting.la
997
998 if LINUX
999 test_transport_api_wlan_SOURCES = \
1000  test_transport_api.c
1001 test_transport_api_wlan_LDADD = \
1002  $(top_builddir)/src/transport/libgnunettransport.la \
1003  $(top_builddir)/src/hello/libgnunethello.la \
1004  $(top_builddir)/src/util/libgnunetutil.la \
1005  $(top_builddir)/src/transport/libgnunettransporttesting.la
1006 endif
1007
1008 if LINUX
1009 if HAVE_LIBBLUETOOTH
1010 test_transport_api_bluetooth_SOURCES = \
1011  test_transport_api.c
1012 test_transport_api_bluetooth_LDADD = \
1013  $(top_builddir)/src/transport/libgnunettransport.la \
1014  $(top_builddir)/src/hello/libgnunethello.la \
1015  $(top_builddir)/src/util/libgnunetutil.la \
1016  $(top_builddir)/src/transport/libgnunettransporttesting.la
1017 endif
1018 endif
1019
1020 test_quota_compliance_tcp_SOURCES = \
1021  test_quota_compliance.c
1022 test_quota_compliance_tcp_LDADD = \
1023  $(top_builddir)/src/transport/libgnunettransport.la \
1024  $(top_builddir)/src/hello/libgnunethello.la \
1025  $(top_builddir)/src/util/libgnunetutil.la \
1026  $(top_builddir)/src/transport/libgnunettransporttesting.la
1027
1028 test_quota_compliance_tcp_asymmetric_SOURCES = \
1029  test_quota_compliance.c
1030 test_quota_compliance_tcp_asymmetric_LDADD = \
1031  $(top_builddir)/src/transport/libgnunettransport.la \
1032  $(top_builddir)/src/hello/libgnunethello.la \
1033  $(top_builddir)/src/util/libgnunetutil.la \
1034  $(top_builddir)/src/transport/libgnunettransporttesting.la
1035
1036 test_quota_compliance_udp_SOURCES = \
1037  test_quota_compliance.c
1038 test_quota_compliance_udp_LDADD = \
1039  $(top_builddir)/src/transport/libgnunettransport.la \
1040  $(top_builddir)/src/hello/libgnunethello.la \
1041  $(top_builddir)/src/util/libgnunetutil.la \
1042  $(top_builddir)/src/transport/libgnunettransporttesting.la
1043
1044 test_quota_compliance_unix_SOURCES = \
1045  test_quota_compliance.c
1046 test_quota_compliance_unix_LDADD = \
1047  $(top_builddir)/src/transport/libgnunettransport.la \
1048  $(top_builddir)/src/hello/libgnunethello.la \
1049  $(top_builddir)/src/util/libgnunetutil.la \
1050  $(top_builddir)/src/transport/libgnunettransporttesting.la
1051
1052 test_quota_compliance_unix_asymmetric_SOURCES = \
1053  test_quota_compliance.c
1054 test_quota_compliance_unix_asymmetric_LDADD = \
1055  $(top_builddir)/src/transport/libgnunettransport.la \
1056  $(top_builddir)/src/hello/libgnunethello.la \
1057  $(top_builddir)/src/util/libgnunetutil.la \
1058  $(top_builddir)/src/transport/libgnunettransporttesting.la
1059
1060 test_quota_compliance_wlan_SOURCES = \
1061  test_quota_compliance.c
1062 test_quota_compliance_wlan_LDADD = \
1063  $(top_builddir)/src/transport/libgnunettransport.la \
1064  $(top_builddir)/src/hello/libgnunethello.la \
1065  $(top_builddir)/src/util/libgnunetutil.la \
1066  $(top_builddir)/src/transport/libgnunettransporttesting.la
1067
1068 test_quota_compliance_wlan_asymmetric_SOURCES = \
1069  test_quota_compliance.c
1070 test_quota_compliance_wlan_asymmetric_LDADD = \
1071  $(top_builddir)/src/transport/libgnunettransport.la \
1072  $(top_builddir)/src/hello/libgnunethello.la \
1073  $(top_builddir)/src/util/libgnunetutil.la \
1074  $(top_builddir)/src/transport/libgnunettransporttesting.la
1075
1076 test_quota_compliance_bluetooth_SOURCES = \
1077  test_quota_compliance.c
1078 test_quota_compliance_bluetooth_LDADD = \
1079  $(top_builddir)/src/transport/libgnunettransport.la \
1080  $(top_builddir)/src/hello/libgnunethello.la \
1081  $(top_builddir)/src/util/libgnunetutil.la \
1082  $(top_builddir)/src/transport/libgnunettransporttesting.la
1083
1084 test_quota_compliance_bluetooth_asymmetric_SOURCES = \
1085  test_quota_compliance.c
1086 test_quota_compliance_bluetooth_asymmetric_LDADD = \
1087  $(top_builddir)/src/transport/libgnunettransport.la \
1088  $(top_builddir)/src/hello/libgnunethello.la \
1089  $(top_builddir)/src/util/libgnunetutil.la \
1090  $(top_builddir)/src/transport/libgnunettransporttesting.la
1091
1092 test_transport_api_multi_SOURCES = \
1093  test_transport_api.c
1094 test_transport_api_multi_LDADD = \
1095  $(top_builddir)/src/transport/libgnunettransport.la \
1096  $(top_builddir)/src/hello/libgnunethello.la \
1097  $(top_builddir)/src/util/libgnunetutil.la \
1098  $(top_builddir)/src/transport/libgnunettransporttesting.la
1099
1100
1101 EXTRA_DIST = \
1102 test_plugin_hostkey \
1103 test_plugin_hostkey.ecc \
1104 template_cfg_peer1.conf\
1105 template_cfg_peer2.conf\
1106 test_plugin_transport_data.conf\
1107 test_plugin_transport_data_udp.conf\
1108 test_quota_compliance_data.conf\
1109 test_quota_compliance_http_peer1.conf\
1110 test_quota_compliance_http_peer2.conf\
1111 test_quota_compliance_https_peer1.conf\
1112 test_quota_compliance_https_peer2.conf\
1113 test_quota_compliance_tcp_peer1.conf\
1114 test_quota_compliance_tcp_peer2.conf\
1115 test_quota_compliance_udp_peer1.conf\
1116 test_quota_compliance_udp_peer2.conf\
1117 test_quota_compliance_unix_peer1.conf\
1118 test_quota_compliance_unix_peer2.conf\
1119 test_quota_compliance_wlan_peer1.conf\
1120 test_quota_compliance_wlan_peer2.conf\
1121 test_quota_compliance_bluetooth_peer1.conf\
1122 test_quota_compliance_bluetooth_peer2.conf\
1123 test_quota_compliance_http_asymmetric_peer1.conf\
1124 test_quota_compliance_http_asymmetric_peer2.conf\
1125 test_quota_compliance_https_asymmetric_peer1.conf\
1126 test_quota_compliance_https_asymmetric_peer2.conf\
1127 test_quota_compliance_tcp_asymmetric_peer1.conf\
1128 test_quota_compliance_tcp_asymmetric_peer2.conf\
1129 test_quota_compliance_unix_asymmetric_peer1.conf\
1130 test_quota_compliance_unix_asymmetric_peer2.conf\
1131 test_quota_compliance_wlan_asymmetric_peer1.conf\
1132 test_quota_compliance_wlan_asymmetric_peer2.conf\
1133 test_quota_compliance_bluetooth_asymmetric_peer1.conf\
1134 test_quota_compliance_bluetooth_asymmetric_peer2.conf\
1135 test_transport_api_data.conf\
1136 test_transport_api_http_peer1.conf\
1137 test_transport_api_http_peer2.conf\
1138 test_transport_api_https_peer1.conf\
1139 test_transport_api_https_peer2.conf\
1140 test_transport_api_limited_sockets_tcp_peer1.conf\
1141 test_transport_api_limited_sockets_tcp_peer2.conf\
1142 test_transport_api_timeout_tcp_peer1.conf\
1143 test_transport_api_timeout_tcp_peer2.conf\
1144 test_transport_api_multi_peer1.conf\
1145 test_transport_api_multi_peer2.conf\
1146 test_transport_api_reliability_http_peer1.conf\
1147 test_transport_api_reliability_http_peer2.conf\
1148 test_transport_api_reliability_https_peer1.conf\
1149 test_transport_api_reliability_https_peer2.conf\
1150 test_transport_api_reliability_tcp_nat_peer1.conf\
1151 test_transport_api_reliability_tcp_nat_peer2.conf\
1152 test_transport_api_reliability_tcp_peer1.conf\
1153 test_transport_api_reliability_tcp_peer2.conf\
1154 test_transport_api_reliability_wlan_peer1.conf\
1155 test_transport_api_reliability_wlan_peer2.conf\
1156 test_transport_api_reliability_bluetooth_peer1.conf\
1157 test_transport_api_reliability_bluetooth_peer2.conf\
1158 test_transport_api_bidirectional_connect_peer1.conf\
1159 test_transport_api_bidirectional_connect_peer2.conf\
1160 test_transport_api_manipulation_send_tcp_peer1.conf\
1161 test_transport_api_manipulation_send_tcp_peer2.conf\
1162 test_transport_api_manipulation_recv_tcp_peer1.conf\
1163 test_transport_api_manipulation_recv_tcp_peer2.conf\
1164 test_transport_api_manipulation_cfg_peer1.conf\
1165 test_transport_api_manipulation_cfg_peer2.conf\
1166 test_transport_api_tcp_nat_peer1.conf\
1167 test_transport_api_tcp_nat_peer2.conf\
1168 test_transport_api_tcp_peer1.conf\
1169 test_transport_api_tcp_peer2.conf\
1170 test_transport_api_udp_nat_peer1.conf\
1171 test_transport_api_udp_nat_peer2.conf\
1172 test_transport_api_udp_peer1.conf\
1173 test_transport_api_udp_peer2.conf\
1174 test_transport_api_timeout_udp_peer1.conf\
1175 test_transport_api_timeout_udp_peer2.conf\
1176 test_transport_api_unix_peer1.conf\
1177 test_transport_api_unix_peer2.conf\
1178 test_transport_api_timeout_unix_peer1.conf\
1179 test_transport_api_timeout_unix_peer2.conf\
1180 test_transport_api_timeout_wlan_peer1.conf \
1181 test_transport_api_timeout_wlan_peer2.conf \
1182 test_transport_api_timeout_bluetooth_peer1.conf\
1183 test_transport_api_timeout_bluetooth_peer2.conf\
1184 test_transport_api_unreliability_udp_peer1.conf\
1185 test_transport_api_unreliability_udp_peer2.conf\
1186 test_transport_api_unreliability_unix_peer1.conf\
1187 test_transport_api_unreliability_unix_peer2.conf\
1188 test_transport_api_unreliability_wlan_peer1.conf\
1189 test_transport_api_unreliability_wlan_peer2.conf\
1190 test_transport_api_unreliability_bluetooth_peer1.conf\
1191 test_transport_api_unreliability_bluetooth_peer2.conf\
1192 test_transport_api_wlan_peer1.conf\
1193 test_transport_api_wlan_peer2.conf\
1194 test_transport_api_bluetooth_peer1.conf\
1195 test_transport_api_bluetooth_peer2.conf\
1196 test_transport_defaults.conf\
1197 test_transport_startonly.conf\
1198 test_transport_api_disconnect_tcp_peer1.conf\
1199 test_transport_api_disconnect_tcp_peer2.conf\
1200 test_transport_api_timeout_http_peer1.conf\
1201 test_transport_api_timeout_http_peer2.conf\
1202 test_transport_api_timeout_https_peer1.conf\
1203 test_transport_api_timeout_https_peer2.conf\
1204 test_transport_api_unreliability_constant_udp_peer1.conf\
1205 test_transport_api_unreliability_constant_udp_peer2.conf\
1206 test_transport_blacklisting_cfg_peer1.conf \
1207 test_transport_blacklisting_cfg_peer2.conf \
1208 test_transport_blacklisting_cfg_blp_peer1_full.conf\
1209 test_transport_blacklisting_cfg_blp_peer1_plugin.conf \
1210 test_transport_blacklisting_cfg_blp_peer2_full.conf\
1211 test_transport_blacklisting_cfg_blp_peer2_plugin.conf \
1212 test_transport_blacklisting_cfg_blp_peer1_multiple_plugins.conf \
1213 test_transport_blacklisting_cfg_blp_peer2_multiple_plugins.conf \
1214 test_transport_api_http_reverse_peer1.conf \
1215 test_transport_api_http_reverse_peer2.conf