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