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