Makefile.am 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467
  1. # This Makefile.am is in the public domain
  2. AM_CPPFLAGS = -I$(top_srcdir)/src/include -I$(top_builddir)/src/include
  3. plugindir = $(libdir)/gnunet
  4. pkgcfgdir= $(pkgdatadir)/config.d/
  5. libexecdir= $(pkglibdir)/libexec/
  6. pkgcfg_DATA = \
  7. transport.conf \
  8. communicator-unix.conf
  9. if HAVE_MHD
  10. GN_LIBMHD = -lmicrohttpd
  11. HTTP_SERVER_PLUGIN_LA = libgnunet_plugin_transport_http_server.la
  12. HTTPS_SERVER_PLUGIN_LA = libgnunet_plugin_transport_https_server.la
  13. HTTP_SERVER_PLUGIN_TEST = test_plugin_http_server
  14. HTTPS_SERVER_PLUGIN_TEST = test_plugin_https_server
  15. endif
  16. if HAVE_LIBGNURL
  17. HTTP_CLIENT_PLUGIN_TEST = test_plugin_http_client
  18. HTTPS_CLIENT_PLUGIN_TEST = test_plugin_https_client
  19. HTTP_CLIENT_PLUGIN_LA = libgnunet_plugin_transport_http_client.la
  20. HTTPS_CLIENT_PLUGIN_LA = libgnunet_plugin_transport_https_client.la
  21. LIB_GNURL=@LIBGNURL@
  22. CPP_GNURL=@LIBGNURL_CPPFLAGS@
  23. else
  24. if HAVE_LIBCURL
  25. HTTP_CLIENT_PLUGIN_TEST = test_plugin_http_client
  26. HTTPS_CLIENT_PLUGIN_TEST = test_plugin_https_client
  27. HTTP_CLIENT_PLUGIN_LA = libgnunet_plugin_transport_http_client.la
  28. HTTPS_CLIENT_PLUGIN_LA = libgnunet_plugin_transport_https_client.la
  29. LIB_GNURL=@LIBCURL@
  30. CPP_GNURL=@LIBCURL_CPPFLAGS@
  31. endif
  32. endif
  33. if HAVE_MHD
  34. if HAVE_LIBGNURL
  35. HTTP_API_TEST = test_transport_api_http
  36. HTTP_REVERSE_API_TEST = test_transport_api_http_reverse
  37. HTTP_API_TIMEOUT_TEST = test_transport_api_timeout_http
  38. HTTP_REL_TEST = test_transport_api_reliability_http \
  39. test_transport_api_reliability_http_xhr
  40. HTTP_QUOTA_TEST = test_quota_compliance_http \
  41. test_quota_compliance_http_asymmetric
  42. HTTP_SWITCH = test_transport_address_switch_http
  43. HTTPS_API_TEST = test_transport_api_https
  44. HTTPS_API_TIMEOUT_TEST = test_transport_api_timeout_https
  45. HTTPS_REL_TEST = test_transport_api_reliability_https \
  46. test_transport_api_reliability_https_xhr
  47. HTTPS_QUOTA_TEST = test_quota_compliance_https \
  48. test_quota_compliance_https_asymmetric
  49. HTTPS_SWITCH = test_transport_address_switch_https
  50. else
  51. if HAVE_LIBCURL
  52. HTTP_API_TEST = test_transport_api_http
  53. HTTP_REVERSE_API_TEST = test_transport_api_http_reverse
  54. HTTP_API_TIMEOUT_TEST = test_transport_api_timeout_http
  55. HTTP_REL_TEST = test_transport_api_reliability_http \
  56. test_transport_api_reliability_http_xhr
  57. HTTP_QUOTA_TEST = test_quota_compliance_http \
  58. test_quota_compliance_http_asymmetric
  59. HTTP_SWITCH = test_transport_address_switch_http
  60. HTTPS_API_TEST = test_transport_api_https
  61. HTTPS_API_TIMEOUT_TEST = test_transport_api_timeout_https
  62. HTTPS_REL_TEST = test_transport_api_reliability_https \
  63. test_transport_api_reliability_https_xhr
  64. HTTPS_QUOTA_TEST = test_quota_compliance_https \
  65. test_quota_compliance_https_asymmetric
  66. HTTPS_SWITCH = test_transport_address_switch_https
  67. endif
  68. endif
  69. endif
  70. if USE_COVERAGE
  71. AM_CFLAGS = --coverage -O0
  72. endif
  73. if HAVE_EXPERIMENTAL
  74. if LINUX
  75. WLAN_BIN = gnunet-helper-transport-wlan
  76. WLAN_BIN_DUMMY = gnunet-helper-transport-wlan-dummy
  77. WLAN_BIN_SENDER = gnunet-transport-wlan-sender
  78. WLAN_BIN_RECEIVER = gnunet-transport-wlan-receiver
  79. WLAN_PLUGIN_LA = libgnunet_plugin_transport_wlan.la
  80. WLAN_PLUGIN_TEST = test_plugin_wlan
  81. WLAN_API_TEST = test_transport_api_wlan
  82. WLAN_TIMEOUT_TEST = test_transport_api_timeout_wlan
  83. WLAN_REL_TEST = test_transport_api_reliability_wlan
  84. WLAN_QUOTA_TEST = test_quota_compliance_wlan \
  85. test_quota_compliance_wlan_asymmetric
  86. endif
  87. if LINUX
  88. install-exec-hook:
  89. $(top_srcdir)/src/transport/install-wlan-helper.sh $(DESTDIR)$(libexecdir) $(SUDO_BINARY) || true
  90. if HAVE_LIBBLUETOOTH
  91. $(top_srcdir)/src/transport/install-bluetooth-helper.sh $(DESTDIR)$(libexecdir) $(SUDO_BINARY) || true
  92. endif
  93. else
  94. install-exec-hook:
  95. endif
  96. if LINUX
  97. if HAVE_LIBBLUETOOTH
  98. BT_BIN = gnunet-helper-transport-bluetooth
  99. BT_PLUGIN_LA = libgnunet_plugin_transport_bluetooth.la
  100. BT_PLUGIN_TEST = test_plugin_bluetooth
  101. BT_API_TEST = test_transport_api_bluetooth
  102. BT_TIMEOUT_TEST = test_transport_api_timeout_bluetooth
  103. BT_REL_TEST = test_transport_api_reliability_bluetooth
  104. BT_QUOTA_TEST = test_quota_compliance_bluetooth \
  105. test_quota_compliance_bluetooth_asymmetric
  106. endif
  107. else
  108. if MINGW
  109. BT_BIN = gnunet-helper-transport-bluetooth
  110. BT_PLUGIN_LA = libgnunet_plugin_transport_bluetooth.la
  111. endif
  112. endif
  113. # end of HAVE_EXPERIMENTAL
  114. endif
  115. if !MINGW
  116. UNIX_PLUGIN_LA = libgnunet_plugin_transport_unix.la
  117. UNIX_PLUGIN_TEST = test_transport_api_unix
  118. UNIX_TEST = test_plugin_unix
  119. UNIX_PLUGIN_TIMEOUT_TEST = test_transport_api_timeout_unix
  120. UNIX_REL_TEST = test_transport_api_reliability_unix
  121. UNIX_QUOTA_TEST = test_quota_compliance_unix \
  122. test_quota_compliance_unix_asymmetric
  123. if LINUX
  124. UNIX_API_ABSTRACT_TEST = test_transport_api_unix_abstract
  125. endif
  126. endif
  127. noinst_PROGRAMS = \
  128. gnunet-transport-profiler \
  129. gnunet-communicator-unix \
  130. gnunet-communicator-tcp \
  131. gnunet-communicator-udp \
  132. gnunet-service-tng \
  133. $(WLAN_BIN_SENDER) \
  134. $(WLAN_BIN_RECEIVER)
  135. if HAVE_TESTING
  136. TESTING_LIBS = libgnunettransporttesting.la
  137. endif
  138. lib_LTLIBRARIES = \
  139. libgnunettransport.la \
  140. libgnunettransportaddress.la \
  141. libgnunettransportapplication.la \
  142. libgnunettransportcore.la \
  143. libgnunettransportcommunicator.la \
  144. libgnunettransportmonitor.la \
  145. $(TESTING_LIBS)
  146. libgnunettransporttesting_la_SOURCES = \
  147. transport-testing.c transport-testing.h \
  148. transport-testing-filenames.c \
  149. transport-testing-loggers.c \
  150. transport-testing-main.c \
  151. transport-testing-send.c
  152. libgnunettransporttesting_la_LIBADD = \
  153. libgnunettransport.la \
  154. $(top_builddir)/src/hello/libgnunethello.la \
  155. $(top_builddir)/src/ats/libgnunetats.la \
  156. $(top_builddir)/src/util/libgnunetutil.la \
  157. $(top_builddir)/src/testing/libgnunettesting.la \
  158. $(GN_LIBINTL)
  159. libgnunettransporttesting_la_LDFLAGS = \
  160. $(GN_LIB_LDFLAGS)
  161. libgnunettransport_la_SOURCES = \
  162. transport.h \
  163. transport_api_address_to_string.c \
  164. transport_api_blacklist.c \
  165. transport_api_core.c \
  166. transport_api_hello_get.c \
  167. transport_api_manipulation.c \
  168. transport_api_monitor_peers.c \
  169. transport_api_monitor_plugins.c \
  170. transport_api_offer_hello.c
  171. libgnunettransport_la_LIBADD = \
  172. $(top_builddir)/src/hello/libgnunethello.la \
  173. $(top_builddir)/src/ats/libgnunetats.la \
  174. $(top_builddir)/src/util/libgnunetutil.la \
  175. $(GN_LIBINTL)
  176. libgnunettransport_la_LDFLAGS = \
  177. $(GN_LIB_LDFLAGS) $(WINFLAGS) \
  178. -version-info 4:0:2
  179. libgnunettransportapplication_la_SOURCES = \
  180. transport_api2_application.c
  181. libgnunettransportapplication_la_LIBADD = \
  182. $(top_builddir)/src/util/libgnunetutil.la \
  183. $(LTLIBINTL)
  184. libgnunettransportapplication_la_LDFLAGS = \
  185. $(GN_LIB_LDFLAGS) $(WINFLAGS) \
  186. -version-info 0:0:0
  187. libgnunettransportaddress_la_SOURCES = \
  188. transport_api2_address.c
  189. libgnunettransportaddress_la_LIBADD = \
  190. $(top_builddir)/src/util/libgnunetutil.la \
  191. $(GN_LIBINTL)
  192. libgnunettransportaddress_la_LDFLAGS = \
  193. $(GN_LIB_LDFLAGS) $(WINFLAGS) \
  194. -version-info 0:0:0
  195. libgnunettransportcore_la_SOURCES = \
  196. transport_api2_core.c
  197. libgnunettransportcore_la_LIBADD = \
  198. $(top_builddir)/src/util/libgnunetutil.la \
  199. $(GN_LIBINTL)
  200. libgnunettransportcore_la_LDFLAGS = \
  201. $(GN_LIB_LDFLAGS) $(WINFLAGS) \
  202. -version-info 0:0:0
  203. libgnunettransportcommunicator_la_SOURCES = \
  204. transport_api2_communication.c
  205. libgnunettransportcommunicator_la_LIBADD = \
  206. $(top_builddir)/src/util/libgnunetutil.la \
  207. $(GN_LIBINTL)
  208. libgnunettransportcommunicator_la_LDFLAGS = \
  209. $(GN_LIB_LDFLAGS) $(WINFLAGS) \
  210. -version-info 0:0:0
  211. libgnunettransportmonitor_la_SOURCES = \
  212. transport_api2_monitor.c
  213. libgnunettransportmonitor_la_LIBADD = \
  214. $(top_builddir)/src/util/libgnunetutil.la \
  215. $(GN_LIBINTL)
  216. libgnunettransportmonitor_la_LDFLAGS = \
  217. $(GN_LIB_LDFLAGS) $(WINFLAGS) \
  218. -version-info 0:0:0
  219. libexec_PROGRAMS = \
  220. $(WLAN_BIN) \
  221. $(WLAN_BIN_DUMMY) \
  222. $(BT_BIN) \
  223. gnunet-service-transport
  224. bin_PROGRAMS = \
  225. gnunet-transport \
  226. gnunet-transport-certificate-creation
  227. #bin_SCRIPTS = \
  228. # gnunet-transport-certificate-creation
  229. gnunet_transport_certificate_creation_SOURCES = \
  230. gnunet-transport-certificate-creation.c
  231. gnunet_transport_certificate_creation_LDADD = \
  232. $(top_builddir)/src/util/libgnunetutil.la
  233. gnunet_communicator_unix_SOURCES = \
  234. gnunet-communicator-unix.c
  235. gnunet_communicator_unix_LDADD = \
  236. libgnunettransportcommunicator.la \
  237. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  238. $(top_builddir)/src/util/libgnunetutil.la
  239. gnunet_communicator_tcp_SOURCES = \
  240. gnunet-communicator-tcp.c
  241. gnunet_communicator_tcp_LDADD = \
  242. libgnunettransportcommunicator.la \
  243. $(top_builddir)/src/nat/libgnunetnatnew.la \
  244. $(top_builddir)/src/nt/libgnunetnt.la \
  245. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  246. $(top_builddir)/src/util/libgnunetutil.la \
  247. $(LIBGCRYPT_LIBS)
  248. gnunet_communicator_udp_SOURCES = \
  249. gnunet-communicator-udp.c
  250. gnunet_communicator_udp_LDADD = \
  251. libgnunettransportcommunicator.la \
  252. $(top_builddir)/src/nat/libgnunetnatnew.la \
  253. $(top_builddir)/src/nt/libgnunetnt.la \
  254. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  255. $(top_builddir)/src/util/libgnunetutil.la \
  256. $(LIBGCRYPT_LIBS)
  257. gnunet_helper_transport_wlan_SOURCES = \
  258. gnunet-helper-transport-wlan.c
  259. gnunet_helper_transport_wlan_dummy_SOURCES = \
  260. gnunet-helper-transport-wlan-dummy.c
  261. gnunet_helper_transport_wlan_dummy_LDADD = \
  262. $(top_builddir)/src/util/libgnunetutil.la
  263. gnunet_transport_wlan_sender_SOURCES = \
  264. gnunet-transport-wlan-sender.c
  265. gnunet_transport_wlan_sender_LDADD = \
  266. $(top_builddir)/src/util/libgnunetutil.la
  267. gnunet_transport_wlan_receiver_SOURCES = \
  268. gnunet-transport-wlan-receiver.c
  269. gnunet_transport_wlan_receiver_LDADD = \
  270. $(top_builddir)/src/util/libgnunetutil.la
  271. gnunet_helper_transport_bluetooth_SOURCES = \
  272. gnunet-helper-transport-bluetooth.c
  273. if MINGW
  274. gnunet_helper_transport_bluetooth_LDADD = \
  275. $(top_builddir)/src/util/libgnunetutil.la
  276. gnunet_helper_transport_bluetooth_LDFLAGS = -lws2_32
  277. else
  278. gnunet_helper_transport_bluetooth_LDFLAGS = -lbluetooth
  279. endif
  280. gnunet_transport_profiler_SOURCES = \
  281. gnunet-transport-profiler.c
  282. gnunet_transport_profiler_LDADD = \
  283. libgnunettransport.la \
  284. $(top_builddir)/src/hello/libgnunethello.la \
  285. $(top_builddir)/src/ats/libgnunetats.la \
  286. $(top_builddir)/src/util/libgnunetutil.la \
  287. $(GN_LIBINTL)
  288. gnunet_transport_SOURCES = \
  289. gnunet-transport.c
  290. gnunet_transport_LDADD = \
  291. libgnunettransport.la \
  292. $(top_builddir)/src/hello/libgnunethello.la \
  293. $(top_builddir)/src/util/libgnunetutil.la \
  294. $(GN_LIBINTL)
  295. gnunet_service_transport_SOURCES = \
  296. gnunet-service-transport.c gnunet-service-transport.h \
  297. gnunet-service-transport_ats.h gnunet-service-transport_ats.c \
  298. gnunet-service-transport_hello.h gnunet-service-transport_hello.c \
  299. gnunet-service-transport_neighbours.h gnunet-service-transport_neighbours.c \
  300. gnunet-service-transport_plugins.h gnunet-service-transport_plugins.c \
  301. gnunet-service-transport_validation.h gnunet-service-transport_validation.c \
  302. gnunet-service-transport_manipulation.h gnunet-service-transport_manipulation.c
  303. # Note that while gnunet-service-transport does not use libgnunetnat
  304. # directly, we must link against it as GNUNET_NAT_mini_map_stop will
  305. # leave a 'dangling' task to process_unmap_output which will cause
  306. # a crash on unloading of a plugin unless the service links against
  307. # that library as well.
  308. gnunet_service_transport_LDADD = \
  309. libgnunettransport.la \
  310. $(top_builddir)/src/ats/libgnunetats.la \
  311. $(top_builddir)/src/hello/libgnunethello.la \
  312. $(top_builddir)/src/nt/libgnunetnt.la \
  313. $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
  314. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  315. $(top_builddir)/src/util/libgnunetutil.la \
  316. $(GN_GLPK) \
  317. $(GN_LIBINTL)
  318. gnunet_service_transport_CFLAGS = \
  319. $(CFLAGS)
  320. # -DANALYZE
  321. gnunet_service_tng_SOURCES = \
  322. gnunet-service-tng.c
  323. gnunet_service_tng_LDADD = \
  324. $(top_builddir)/src/peerstore/libgnunetpeerstore.la \
  325. $(top_builddir)/src/hello/libgnunethello.la \
  326. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  327. $(top_builddir)/src/util/libgnunetutil.la \
  328. $(GN_LIBINTL)
  329. plugin_LTLIBRARIES = \
  330. libgnunet_plugin_transport_tcp.la \
  331. libgnunet_plugin_transport_udp.la \
  332. $(UNIX_PLUGIN_LA) \
  333. $(HTTP_CLIENT_PLUGIN_LA) \
  334. $(HTTPS_CLIENT_PLUGIN_LA) \
  335. $(HTTP_SERVER_PLUGIN_LA) \
  336. $(HTTPS_SERVER_PLUGIN_LA) \
  337. $(WLAN_PLUGIN_LA) \
  338. $(BT_PLUGIN_LA)
  339. # Note: real plugins of course need to be added
  340. # to the plugin_LTLIBRARIES above
  341. noinst_LTLIBRARIES = \
  342. libgnunet_plugin_transport_template.la
  343. libgnunet_plugin_transport_tcp_la_SOURCES = \
  344. plugin_transport_tcp.c
  345. libgnunet_plugin_transport_tcp_la_LIBADD = \
  346. $(top_builddir)/src/hello/libgnunethello.la \
  347. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  348. $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
  349. $(top_builddir)/src/nat/libgnunetnatnew.la \
  350. $(top_builddir)/src/util/libgnunetutil.la \
  351. $(LTLIBINTL)
  352. libgnunet_plugin_transport_tcp_la_LDFLAGS = \
  353. $(GN_PLUGIN_LDFLAGS)
  354. libgnunet_plugin_transport_template_la_SOURCES = \
  355. plugin_transport_template.c
  356. libgnunet_plugin_transport_template_la_LIBADD = \
  357. $(top_builddir)/src/util/libgnunetutil.la \
  358. $(LTLIBINTL)
  359. libgnunet_plugin_transport_template_la_LDFLAGS = \
  360. $(GN_PLUGIN_LDFLAGS)
  361. libgnunet_plugin_transport_wlan_la_SOURCES = \
  362. plugin_transport_wlan.c plugin_transport_wlan.h
  363. libgnunet_plugin_transport_wlan_la_LIBADD = \
  364. $(top_builddir)/src/hello/libgnunethello.la \
  365. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  366. $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
  367. $(top_builddir)/src/fragmentation/libgnunetfragmentation.la \
  368. $(top_builddir)/src/util/libgnunetutil.la
  369. libgnunet_plugin_transport_wlan_la_LDFLAGS = \
  370. $(GN_PLUGIN_LDFLAGS)
  371. libgnunet_plugin_transport_wlan_la_CFLAGS = \
  372. $(CFLAGS) -DBUILD_WLAN
  373. libgnunet_plugin_transport_bluetooth_la_SOURCES = \
  374. plugin_transport_wlan.c plugin_transport_wlan.h
  375. libgnunet_plugin_transport_bluetooth_la_LIBADD = \
  376. $(top_builddir)/src/hello/libgnunethello.la \
  377. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  378. $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
  379. $(top_builddir)/src/fragmentation/libgnunetfragmentation.la \
  380. $(top_builddir)/src/util/libgnunetutil.la
  381. libgnunet_plugin_transport_bluetooth_la_LDFLAGS = \
  382. $(GN_PLUGIN_LDFLAGS)
  383. libgnunet_plugin_transport_bluetooth_la_CFLAGS = \
  384. $(CFLAGS) -DBUILD_BLUETOOTH
  385. libgnunet_plugin_transport_udp_la_SOURCES = \
  386. plugin_transport_udp.c plugin_transport_udp.h \
  387. plugin_transport_udp_broadcasting.c
  388. libgnunet_plugin_transport_udp_la_LIBADD = \
  389. $(top_builddir)/src/hello/libgnunethello.la \
  390. $(top_builddir)/src/fragmentation/libgnunetfragmentation.la \
  391. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  392. $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
  393. $(top_builddir)/src/nat/libgnunetnatnew.la \
  394. $(top_builddir)/src/util/libgnunetutil.la \
  395. $(LTLIBINTL)
  396. libgnunet_plugin_transport_udp_la_LDFLAGS = \
  397. $(GN_PLUGIN_LDFLAGS)
  398. libgnunet_plugin_transport_unix_la_SOURCES = \
  399. plugin_transport_unix.c
  400. libgnunet_plugin_transport_unix_la_LIBADD = \
  401. $(top_builddir)/src/hello/libgnunethello.la \
  402. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  403. $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
  404. $(top_builddir)/src/util/libgnunetutil.la \
  405. $(LTLIBINTL)
  406. libgnunet_plugin_transport_unix_la_LDFLAGS = \
  407. $(GN_PLUGIN_LDFLAGS)
  408. libgnunet_plugin_transport_http_client_la_SOURCES = \
  409. plugin_transport_http_client.c plugin_transport_http_common.c plugin_transport_http_common.h
  410. libgnunet_plugin_transport_http_client_la_LIBADD = \
  411. $(top_builddir)/src/hello/libgnunethello.la \
  412. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  413. $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
  414. $(LIB_GNURL) \
  415. $(top_builddir)/src/util/libgnunetutil.la
  416. libgnunet_plugin_transport_http_client_la_LDFLAGS = \
  417. $(GN_PLUGIN_LDFLAGS)
  418. libgnunet_plugin_transport_http_client_la_CFLAGS = \
  419. $(CFLAGS)
  420. libgnunet_plugin_transport_http_client_la_CPPFLAGS = \
  421. $(CPP_GNURL) $(AM_CPPFLAGS)
  422. libgnunet_plugin_transport_http_server_la_SOURCES = \
  423. plugin_transport_http_server.c plugin_transport_http_common.c
  424. libgnunet_plugin_transport_http_server_la_LIBADD = \
  425. $(top_builddir)/src/hello/libgnunethello.la \
  426. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  427. $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
  428. $(top_builddir)/src/nat/libgnunetnatnew.la \
  429. $(top_builddir)/src/util/libgnunetutil.la
  430. libgnunet_plugin_transport_http_server_la_LDFLAGS = \
  431. $(GN_LIBMHD) \
  432. $(GN_PLUGIN_LDFLAGS)
  433. libgnunet_plugin_transport_http_server_la_CFLAGS = \
  434. $(CFLAGS)
  435. libgnunet_plugin_transport_https_client_la_SOURCES = \
  436. plugin_transport_http_client.c plugin_transport_http_common.c
  437. libgnunet_plugin_transport_https_client_la_LIBADD = \
  438. $(top_builddir)/src/hello/libgnunethello.la \
  439. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  440. $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
  441. $(LIB_GNURL) \
  442. $(top_builddir)/src/util/libgnunetutil.la
  443. libgnunet_plugin_transport_https_client_la_LDFLAGS = \
  444. $(GN_PLUGIN_LDFLAGS)
  445. libgnunet_plugin_transport_https_client_la_CFLAGS = \
  446. $(CFLAGS) -DBUILD_HTTPS
  447. libgnunet_plugin_transport_https_client_la_CPPFLAGS = \
  448. $(CPP_GNURL) $(AM_CPPFLAGS)
  449. libgnunet_plugin_transport_https_server_la_SOURCES = \
  450. plugin_transport_http_server.c plugin_transport_http_common.c
  451. libgnunet_plugin_transport_https_server_la_LIBADD = \
  452. $(top_builddir)/src/hello/libgnunethello.la \
  453. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  454. $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
  455. $(top_builddir)/src/nat/libgnunetnatnew.la \
  456. $(top_builddir)/src/util/libgnunetutil.la
  457. libgnunet_plugin_transport_https_server_la_LDFLAGS = \
  458. $(GN_LIBMHD) \
  459. $(GN_PLUGIN_LDFLAGS)
  460. libgnunet_plugin_transport_https_server_la_CFLAGS = \
  461. $(CFLAGS) -DBUILD_HTTPS
  462. if HAVE_TESTING
  463. check_PROGRAMS = \
  464. test_transport_address_switch_tcp \
  465. test_transport_address_switch_udp \
  466. test_transport_testing_startstop \
  467. test_transport_testing_restart \
  468. test_plugin_tcp \
  469. test_plugin_udp \
  470. $(UNIX_TEST) \
  471. $(WLAN_PLUGIN_TEST) \
  472. $(BT_PLUGIN_TEST) \
  473. test_http_common \
  474. $(HTTP_CLIENT_PLUGIN_TEST) \
  475. $(HTTPS_CLIENT_PLUGIN_TEST) \
  476. $(HTTP_SERVER_PLUGIN_TEST) \
  477. $(HTTPS_SERVER_PLUGIN_TEST) \
  478. test_transport_api_blacklisting_tcp \
  479. test_transport_api_disconnect_tcp \
  480. test_transport_api_tcp \
  481. test_transport_api_restart_1peer \
  482. test_transport_api_restart_2peers \
  483. test_transport_api_timeout_tcp \
  484. test_transport_api_limited_sockets_tcp \
  485. test_transport_api_tcp_nat \
  486. test_transport_api_udp \
  487. test_transport_api_timeout_udp \
  488. $(UNIX_PLUGIN_TEST) \
  489. $(UNIX_PLUGIN_TIMEOUT_TEST) \
  490. $(UNIX_API_ABSTRACT_TEST) \
  491. test_transport_api_udp_nat \
  492. $(HTTP_API_TEST) \
  493. $(HTTP_REVERSE_API_TEST) \
  494. $(HTTP_API_TIMEOUT_TEST) \
  495. $(HTTP_SWITCH) \
  496. $(HTTPS_API_TEST) \
  497. $(HTTPS_API_TIMEOUT_TEST) \
  498. $(HTTPS_SWITCH) \
  499. $(WLAN_API_TEST) \
  500. $(WLAN_TIMEOUT_TEST) \
  501. $(BT_API_TEST) \
  502. $(BT_TIMEOUT_TEST) \
  503. test_transport_api_multi \
  504. test_transport_api_monitor_peers \
  505. test_transport_blacklisting_no_bl \
  506. test_transport_blacklisting_outbound_bl_full \
  507. test_transport_blacklisting_outbound_bl_plugin \
  508. test_transport_blacklisting_inbound_bl_plugin \
  509. test_transport_blacklisting_inbound_bl_full \
  510. test_transport_blacklisting_multiple_plugins \
  511. test_transport_api_manipulation_send_tcp \
  512. test_transport_api_manipulation_recv_tcp \
  513. test_transport_api_manipulation_cfg \
  514. test_transport_api_reliability_tcp \
  515. test_transport_api_reliability_tcp_nat \
  516. test_transport_api_reliability_udp \
  517. $(UNIX_REL_TEST) \
  518. $(HTTP_REL_TEST) \
  519. $(HTTPS_REL_TEST) \
  520. $(WLAN_REL_TEST) \
  521. $(WLAN_UREL_TEST) \
  522. $(BT_REL_TEST) \
  523. $(BT_UREL_TEST) \
  524. test_quota_compliance_tcp \
  525. test_quota_compliance_tcp_asymmetric \
  526. test_quota_compliance_udp \
  527. $(UNIX_QUOTA_TEST) \
  528. $(HTTP_QUOTA_TEST) \
  529. $(HTTPS_QUOTA_TEST) \
  530. $(WLAN_QUOTA_TEST) \
  531. $(BT_QUOTA_TEST)
  532. if HAVE_GETOPT_BINARY
  533. check_PROGRAMS += \
  534. test_transport_api_slow_ats
  535. endif
  536. endif
  537. if ENABLE_TEST_RUN
  538. AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;unset XDG_DATA_HOME;unset XDG_CONFIG_HOME;
  539. TESTS = \
  540. test_transport_address_switch_tcp \
  541. test_transport_address_switch_udp \
  542. $(HTTP_SWITCH) \
  543. $(HTTPS_SWITCH) \
  544. test_transport_testing_startstop \
  545. test_transport_testing_restart \
  546. test_plugin_tcp \
  547. test_plugin_udp \
  548. $(UNIX_TEST) \
  549. $(WLAN_PLUGIN_TEST) \
  550. $(BT_PLUGIN_TEST) \
  551. test_transport_api_blacklisting_tcp \
  552. test_transport_api_disconnect_tcp \
  553. test_transport_api_tcp \
  554. test_transport_api_restart_1peer \
  555. test_transport_api_restart_2peers \
  556. test_transport_api_limited_sockets_tcp \
  557. test_transport_api_tcp_nat \
  558. test_transport_api_udp \
  559. $(UNIX_PLUGIN_TEST) \
  560. $(UNIX_API_ABSTRACT_TEST) \
  561. test_transport_api_udp_nat \
  562. $(HTTP_API_TEST) \
  563. $(HTTPS_API_TEST) \
  564. $(WLAN_API_TEST) \
  565. $(BT_API_TEST) \
  566. test_transport_api_multi \
  567. test_transport_api_monitor_peers \
  568. test_transport_blacklisting_no_bl \
  569. test_transport_blacklisting_outbound_bl_full \
  570. test_transport_blacklisting_outbound_bl_plugin \
  571. test_transport_blacklisting_inbound_bl_plugin \
  572. test_transport_blacklisting_inbound_bl_full \
  573. test_transport_blacklisting_multiple_plugins \
  574. test_transport_api_manipulation_send_tcp \
  575. test_transport_api_manipulation_recv_tcp \
  576. test_transport_api_manipulation_cfg \
  577. test_transport_api_reliability_tcp \
  578. test_transport_api_reliability_tcp_nat \
  579. test_transport_api_reliability_udp \
  580. $(UNIX_REL_TEST) \
  581. $(HTTP_REL_TEST) \
  582. $(HTTPS_REL_TEST) \
  583. $(WLAN_REL_TEST) \
  584. $(WLAN_UREL_TEST) \
  585. $(BT_REL_TEST) \
  586. $(BT_UREL_TEST) \
  587. test_quota_compliance_tcp \
  588. test_quota_compliance_tcp_asymmetric \
  589. test_quota_compliance_udp \
  590. $(UNIX_QUOTA_TEST) \
  591. $(HTTP_QUOTA_TEST) \
  592. $(HTTPS_QUOTA_TEST) \
  593. test_transport_api_timeout_tcp \
  594. test_transport_api_timeout_udp \
  595. $(UNIX_PLUGIN_TIMEOUT_TEST) \
  596. $(HTTP_API_TIMEOUT_TEST) \
  597. $(HTTPS_API_TIMEOUT_TEST) \
  598. $(WLAN_TIMEOUT_TEST) \
  599. $(BT_TIMEOUT_TEST)
  600. if HAVE_GETOPT_BINARY
  601. TESTS += \
  602. test_transport_api_slow_ats
  603. endif
  604. endif
  605. test_transport_testing_startstop_SOURCES = \
  606. test_transport_testing_startstop.c
  607. test_transport_testing_startstop_LDADD = \
  608. $(top_builddir)/src/util/libgnunetutil.la \
  609. libgnunettransport.la \
  610. $(top_builddir)/src/hello/libgnunethello.la \
  611. libgnunettransporttesting.la
  612. test_transport_testing_restart_SOURCES = \
  613. test_transport_testing_restart.c
  614. test_transport_testing_restart_LDADD = \
  615. $(top_builddir)/src/util/libgnunetutil.la \
  616. libgnunettransport.la \
  617. $(top_builddir)/src/hello/libgnunethello.la \
  618. libgnunettransporttesting.la
  619. test_transport_api_blacklisting_tcp_SOURCES = \
  620. test_transport_api_blacklisting.c
  621. test_transport_api_blacklisting_tcp_LDADD = \
  622. libgnunettransport.la \
  623. $(top_builddir)/src/hello/libgnunethello.la \
  624. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  625. $(top_builddir)/src/util/libgnunetutil.la \
  626. libgnunettransporttesting.la
  627. test_transport_blacklisting_no_bl_SOURCES = \
  628. test_transport_blacklisting.c
  629. test_transport_blacklisting_no_bl_LDADD = \
  630. libgnunettransport.la \
  631. $(top_builddir)/src/hello/libgnunethello.la \
  632. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  633. $(top_builddir)/src/util/libgnunetutil.la \
  634. libgnunettransporttesting.la
  635. test_transport_blacklisting_outbound_bl_full_SOURCES = \
  636. test_transport_blacklisting.c
  637. test_transport_blacklisting_outbound_bl_full_LDADD = \
  638. libgnunettransport.la \
  639. $(top_builddir)/src/hello/libgnunethello.la \
  640. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  641. $(top_builddir)/src/util/libgnunetutil.la \
  642. libgnunettransporttesting.la
  643. test_transport_blacklisting_outbound_bl_plugin_SOURCES = \
  644. test_transport_blacklisting.c
  645. test_transport_blacklisting_outbound_bl_plugin_LDADD = \
  646. libgnunettransport.la \
  647. $(top_builddir)/src/hello/libgnunethello.la \
  648. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  649. $(top_builddir)/src/util/libgnunetutil.la \
  650. libgnunettransporttesting.la
  651. test_transport_blacklisting_inbound_bl_full_SOURCES = \
  652. test_transport_blacklisting.c
  653. test_transport_blacklisting_inbound_bl_full_LDADD = \
  654. libgnunettransport.la \
  655. $(top_builddir)/src/hello/libgnunethello.la \
  656. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  657. $(top_builddir)/src/util/libgnunetutil.la \
  658. libgnunettransporttesting.la
  659. test_transport_blacklisting_inbound_bl_plugin_SOURCES = \
  660. test_transport_blacklisting.c
  661. test_transport_blacklisting_inbound_bl_plugin_LDADD = \
  662. libgnunettransport.la \
  663. $(top_builddir)/src/hello/libgnunethello.la \
  664. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  665. $(top_builddir)/src/util/libgnunetutil.la \
  666. libgnunettransporttesting.la
  667. test_transport_blacklisting_multiple_plugins_SOURCES = \
  668. test_transport_blacklisting.c
  669. test_transport_blacklisting_multiple_plugins_LDADD = \
  670. libgnunettransport.la \
  671. $(top_builddir)/src/hello/libgnunethello.la \
  672. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  673. $(top_builddir)/src/util/libgnunetutil.la \
  674. libgnunettransporttesting.la
  675. test_transport_api_disconnect_tcp_SOURCES = \
  676. test_transport_api_disconnect.c
  677. test_transport_api_disconnect_tcp_LDADD = \
  678. libgnunettransport.la \
  679. $(top_builddir)/src/hello/libgnunethello.la \
  680. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  681. $(top_builddir)/src/util/libgnunetutil.la \
  682. libgnunettransporttesting.la
  683. test_plugin_tcp_SOURCES = \
  684. test_plugin_transport.c
  685. test_plugin_tcp_LDADD = \
  686. libgnunettransport.la \
  687. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  688. $(top_builddir)/src/hello/libgnunethello.la \
  689. $(top_builddir)/src/util/libgnunetutil.la \
  690. libgnunettransporttesting.la
  691. test_plugin_udp_SOURCES = \
  692. test_plugin_transport.c
  693. test_plugin_udp_LDADD = \
  694. libgnunettransport.la \
  695. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  696. $(top_builddir)/src/hello/libgnunethello.la \
  697. $(top_builddir)/src/util/libgnunetutil.la \
  698. libgnunettransporttesting.la
  699. test_plugin_unix_SOURCES = \
  700. test_plugin_transport.c
  701. test_plugin_unix_LDADD = \
  702. libgnunettransport.la \
  703. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  704. $(top_builddir)/src/hello/libgnunethello.la \
  705. $(top_builddir)/src/util/libgnunetutil.la \
  706. libgnunettransporttesting.la
  707. test_plugin_wlan_SOURCES = \
  708. test_plugin_transport.c
  709. test_plugin_wlan_LDADD = \
  710. libgnunettransport.la \
  711. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  712. $(top_builddir)/src/hello/libgnunethello.la \
  713. $(top_builddir)/src/util/libgnunetutil.la \
  714. libgnunettransporttesting.la
  715. test_plugin_bluetooth_SOURCES = \
  716. test_plugin_transport.c
  717. test_plugin_bluetooth_LDADD = \
  718. libgnunettransport.la \
  719. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  720. $(top_builddir)/src/hello/libgnunethello.la \
  721. $(top_builddir)/src/util/libgnunetutil.la \
  722. libgnunettransporttesting.la
  723. test_http_common_SOURCES = \
  724. test_http_common.c plugin_transport_http_common.c
  725. test_http_common_LDADD = \
  726. libgnunettransport.la \
  727. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  728. $(top_builddir)/src/hello/libgnunethello.la \
  729. $(top_builddir)/src/util/libgnunetutil.la \
  730. libgnunettransporttesting.la
  731. test_plugin_http_server_SOURCES = \
  732. test_plugin_transport.c
  733. test_plugin_http_server_LDADD = \
  734. libgnunettransport.la \
  735. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  736. $(top_builddir)/src/hello/libgnunethello.la \
  737. $(top_builddir)/src/util/libgnunetutil.la \
  738. libgnunettransporttesting.la
  739. test_plugin_https_server_SOURCES = \
  740. test_plugin_transport.c
  741. test_plugin_https_server_LDADD = \
  742. libgnunettransport.la \
  743. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  744. $(top_builddir)/src/hello/libgnunethello.la \
  745. $(top_builddir)/src/util/libgnunetutil.la \
  746. libgnunettransporttesting.la
  747. test_plugin_http_client_SOURCES = \
  748. test_plugin_transport.c
  749. test_plugin_http_client_LDADD = \
  750. libgnunettransport.la \
  751. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  752. $(top_builddir)/src/hello/libgnunethello.la \
  753. $(top_builddir)/src/util/libgnunetutil.la \
  754. libgnunettransporttesting.la
  755. test_plugin_https_client_SOURCES = \
  756. test_plugin_transport.c
  757. test_plugin_https_client_LDADD = \
  758. libgnunettransport.la \
  759. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  760. $(top_builddir)/src/hello/libgnunethello.la \
  761. $(top_builddir)/src/util/libgnunetutil.la \
  762. libgnunettransporttesting.la
  763. test_transport_api_tcp_SOURCES = \
  764. test_transport_api.c
  765. test_transport_api_tcp_LDADD = \
  766. libgnunettransport.la \
  767. $(top_builddir)/src/hello/libgnunethello.la \
  768. $(top_builddir)/src/util/libgnunetutil.la \
  769. libgnunettransporttesting.la
  770. test_transport_api_restart_1peer_SOURCES = \
  771. test_transport_api_restart_reconnect.c
  772. test_transport_api_restart_1peer_LDADD = \
  773. libgnunettransport.la \
  774. $(top_builddir)/src/hello/libgnunethello.la \
  775. $(top_builddir)/src/ats/libgnunetats.la \
  776. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  777. $(top_builddir)/src/util/libgnunetutil.la \
  778. libgnunettransporttesting.la
  779. test_transport_api_restart_2peers_SOURCES = \
  780. test_transport_api_restart_reconnect.c
  781. test_transport_api_restart_2peers_LDADD = \
  782. libgnunettransport.la \
  783. $(top_builddir)/src/hello/libgnunethello.la \
  784. $(top_builddir)/src/ats/libgnunetats.la \
  785. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  786. $(top_builddir)/src/util/libgnunetutil.la \
  787. libgnunettransporttesting.la
  788. test_transport_api_limited_sockets_tcp_SOURCES = \
  789. test_transport_api_limited_sockets.c
  790. test_transport_api_limited_sockets_tcp_LDADD = \
  791. libgnunettransport.la \
  792. $(top_builddir)/src/hello/libgnunethello.la \
  793. $(top_builddir)/src/util/libgnunetutil.la \
  794. libgnunettransporttesting.la
  795. test_transport_api_tcp_nat_SOURCES = \
  796. test_transport_api.c
  797. test_transport_api_tcp_nat_LDADD = \
  798. libgnunettransport.la \
  799. $(top_builddir)/src/hello/libgnunethello.la \
  800. $(top_builddir)/src/util/libgnunetutil.la \
  801. libgnunettransporttesting.la
  802. test_transport_api_manipulation_send_tcp_SOURCES = \
  803. test_transport_api_manipulation_send_tcp.c
  804. test_transport_api_manipulation_send_tcp_LDADD = \
  805. libgnunettransport.la \
  806. $(top_builddir)/src/hello/libgnunethello.la \
  807. $(top_builddir)/src/util/libgnunetutil.la \
  808. libgnunettransporttesting.la
  809. test_transport_api_manipulation_recv_tcp_SOURCES = \
  810. test_transport_api_manipulation_recv_tcp.c
  811. test_transport_api_manipulation_recv_tcp_LDADD = \
  812. libgnunettransport.la \
  813. $(top_builddir)/src/hello/libgnunethello.la \
  814. $(top_builddir)/src/util/libgnunetutil.la \
  815. libgnunettransporttesting.la
  816. test_transport_api_manipulation_cfg_SOURCES = \
  817. test_transport_api_manipulation_cfg.c
  818. test_transport_api_manipulation_cfg_LDADD = \
  819. libgnunettransport.la \
  820. $(top_builddir)/src/hello/libgnunethello.la \
  821. $(top_builddir)/src/util/libgnunetutil.la \
  822. libgnunettransporttesting.la
  823. test_transport_api_reliability_tcp_SOURCES = \
  824. test_transport_api_reliability.c
  825. test_transport_api_reliability_tcp_LDADD = \
  826. libgnunettransport.la \
  827. $(top_builddir)/src/hello/libgnunethello.la \
  828. $(top_builddir)/src/util/libgnunetutil.la \
  829. libgnunettransporttesting.la
  830. test_transport_api_timeout_tcp_SOURCES = \
  831. test_transport_api_timeout.c
  832. test_transport_api_timeout_tcp_LDADD = \
  833. libgnunettransport.la \
  834. $(top_builddir)/src/hello/libgnunethello.la \
  835. $(top_builddir)/src/util/libgnunetutil.la \
  836. libgnunettransporttesting.la
  837. test_transport_api_timeout_unix_SOURCES = \
  838. test_transport_api_timeout.c
  839. test_transport_api_timeout_unix_LDADD = \
  840. libgnunettransport.la \
  841. $(top_builddir)/src/hello/libgnunethello.la \
  842. $(top_builddir)/src/util/libgnunetutil.la \
  843. libgnunettransporttesting.la
  844. test_transport_api_timeout_wlan_SOURCES = \
  845. test_transport_api_timeout.c
  846. test_transport_api_timeout_wlan_LDADD = \
  847. libgnunettransport.la \
  848. $(top_builddir)/src/hello/libgnunethello.la \
  849. $(top_builddir)/src/util/libgnunetutil.la \
  850. libgnunettransporttesting.la
  851. test_transport_api_timeout_bluetooth_SOURCES = \
  852. test_transport_api_timeout.c
  853. test_transport_api_timeout_bluetooth_LDADD = \
  854. libgnunettransport.la \
  855. $(top_builddir)/src/hello/libgnunethello.la \
  856. $(top_builddir)/src/util/libgnunetutil.la \
  857. libgnunettransporttesting.la
  858. test_transport_api_reliability_tcp_nat_SOURCES = \
  859. test_transport_api_reliability.c
  860. test_transport_api_reliability_tcp_nat_LDADD = \
  861. libgnunettransport.la \
  862. $(top_builddir)/src/hello/libgnunethello.la \
  863. $(top_builddir)/src/util/libgnunetutil.la \
  864. libgnunettransporttesting.la
  865. test_transport_api_reliability_bluetooth_SOURCES = \
  866. test_transport_api_reliability.c
  867. test_transport_api_reliability_bluetooth_LDADD = \
  868. libgnunettransport.la \
  869. $(top_builddir)/src/hello/libgnunethello.la \
  870. $(top_builddir)/src/util/libgnunetutil.la \
  871. libgnunettransporttesting.la
  872. test_transport_api_reliability_wlan_SOURCES = \
  873. test_transport_api_reliability.c
  874. test_transport_api_reliability_wlan_LDADD = \
  875. libgnunettransport.la \
  876. $(top_builddir)/src/hello/libgnunethello.la \
  877. $(top_builddir)/src/util/libgnunetutil.la \
  878. libgnunettransporttesting.la
  879. test_transport_api_udp_SOURCES = \
  880. test_transport_api.c
  881. test_transport_api_udp_LDADD = \
  882. libgnunettransport.la \
  883. $(top_builddir)/src/hello/libgnunethello.la \
  884. $(top_builddir)/src/util/libgnunetutil.la \
  885. libgnunettransporttesting.la
  886. test_transport_api_timeout_udp_SOURCES = \
  887. test_transport_api_timeout.c
  888. test_transport_api_timeout_udp_LDADD = \
  889. libgnunettransport.la \
  890. $(top_builddir)/src/hello/libgnunethello.la \
  891. $(top_builddir)/src/util/libgnunetutil.la \
  892. libgnunettransporttesting.la
  893. test_transport_api_udp_nat_SOURCES = \
  894. test_transport_api.c
  895. test_transport_api_udp_nat_LDADD = \
  896. libgnunettransport.la \
  897. $(top_builddir)/src/hello/libgnunethello.la \
  898. $(top_builddir)/src/util/libgnunetutil.la \
  899. libgnunettransporttesting.la
  900. test_transport_api_unix_SOURCES = \
  901. test_transport_api.c
  902. test_transport_api_unix_LDADD = \
  903. libgnunettransport.la \
  904. $(top_builddir)/src/hello/libgnunethello.la \
  905. $(top_builddir)/src/util/libgnunetutil.la \
  906. libgnunettransporttesting.la
  907. test_transport_api_unix_abstract_SOURCES = \
  908. test_transport_api.c
  909. test_transport_api_unix_abstract_LDADD = \
  910. libgnunettransport.la \
  911. $(top_builddir)/src/hello/libgnunethello.la \
  912. $(top_builddir)/src/util/libgnunetutil.la \
  913. libgnunettransporttesting.la
  914. # HTTP tests
  915. test_transport_api_http_SOURCES = \
  916. test_transport_api.c
  917. test_transport_api_http_LDADD = \
  918. libgnunettransport.la \
  919. $(top_builddir)/src/hello/libgnunethello.la \
  920. $(top_builddir)/src/util/libgnunetutil.la \
  921. libgnunettransporttesting.la
  922. test_transport_api_http_reverse_SOURCES = \
  923. test_transport_api.c
  924. test_transport_api_http_reverse_LDADD = \
  925. libgnunettransport.la \
  926. $(top_builddir)/src/hello/libgnunethello.la \
  927. $(top_builddir)/src/util/libgnunetutil.la \
  928. libgnunettransporttesting.la
  929. test_transport_api_timeout_http_SOURCES = \
  930. test_transport_api_timeout.c
  931. test_transport_api_timeout_http_LDADD = \
  932. libgnunettransport.la \
  933. $(top_builddir)/src/hello/libgnunethello.la \
  934. $(top_builddir)/src/util/libgnunetutil.la \
  935. libgnunettransporttesting.la
  936. test_transport_api_reliability_http_SOURCES = \
  937. test_transport_api_reliability.c
  938. test_transport_api_reliability_http_LDADD = \
  939. libgnunettransport.la \
  940. $(top_builddir)/src/hello/libgnunethello.la \
  941. $(top_builddir)/src/util/libgnunetutil.la \
  942. libgnunettransporttesting.la
  943. test_transport_api_reliability_http_xhr_SOURCES = \
  944. test_transport_api_reliability.c
  945. test_transport_api_reliability_http_xhr_LDADD = \
  946. libgnunettransport.la \
  947. $(top_builddir)/src/hello/libgnunethello.la \
  948. $(top_builddir)/src/util/libgnunetutil.la \
  949. libgnunettransporttesting.la
  950. test_quota_compliance_http_SOURCES = \
  951. test_quota_compliance.c
  952. test_quota_compliance_http_LDADD = \
  953. libgnunettransport.la \
  954. $(top_builddir)/src/hello/libgnunethello.la \
  955. $(top_builddir)/src/ats/libgnunetats.la \
  956. $(top_builddir)/src/nt/libgnunetnt.la \
  957. $(top_builddir)/src/util/libgnunetutil.la \
  958. libgnunettransporttesting.la
  959. test_quota_compliance_http_asymmetric_SOURCES = \
  960. test_quota_compliance.c
  961. test_quota_compliance_http_asymmetric_LDADD = \
  962. libgnunettransport.la \
  963. $(top_builddir)/src/hello/libgnunethello.la \
  964. $(top_builddir)/src/ats/libgnunetats.la \
  965. $(top_builddir)/src/nt/libgnunetnt.la \
  966. $(top_builddir)/src/util/libgnunetutil.la \
  967. libgnunettransporttesting.la
  968. test_quota_compliance_https_SOURCES = \
  969. test_quota_compliance.c
  970. test_quota_compliance_https_LDADD = \
  971. libgnunettransport.la \
  972. $(top_builddir)/src/hello/libgnunethello.la \
  973. $(top_builddir)/src/ats/libgnunetats.la \
  974. $(top_builddir)/src/nt/libgnunetnt.la \
  975. $(top_builddir)/src/util/libgnunetutil.la \
  976. libgnunettransporttesting.la
  977. test_quota_compliance_https_asymmetric_SOURCES = \
  978. test_quota_compliance.c
  979. test_quota_compliance_https_asymmetric_LDADD = \
  980. libgnunettransport.la \
  981. $(top_builddir)/src/hello/libgnunethello.la \
  982. $(top_builddir)/src/ats/libgnunetats.la \
  983. $(top_builddir)/src/nt/libgnunetnt.la \
  984. $(top_builddir)/src/util/libgnunetutil.la \
  985. libgnunettransporttesting.la
  986. # HTTPS tests
  987. test_transport_api_https_SOURCES = \
  988. test_transport_api.c
  989. test_transport_api_https_LDADD = \
  990. libgnunettransport.la \
  991. $(top_builddir)/src/hello/libgnunethello.la \
  992. $(top_builddir)/src/util/libgnunetutil.la \
  993. libgnunettransporttesting.la
  994. test_transport_api_timeout_https_SOURCES = \
  995. test_transport_api_timeout.c
  996. test_transport_api_timeout_https_LDADD = \
  997. libgnunettransport.la \
  998. $(top_builddir)/src/hello/libgnunethello.la \
  999. $(top_builddir)/src/util/libgnunetutil.la \
  1000. libgnunettransporttesting.la
  1001. test_transport_api_reliability_https_SOURCES = \
  1002. test_transport_api_reliability.c
  1003. test_transport_api_reliability_https_LDADD = \
  1004. libgnunettransport.la \
  1005. $(top_builddir)/src/hello/libgnunethello.la \
  1006. $(top_builddir)/src/util/libgnunetutil.la \
  1007. libgnunettransporttesting.la
  1008. test_transport_api_reliability_https_xhr_SOURCES = \
  1009. test_transport_api_reliability.c
  1010. test_transport_api_reliability_https_xhr_LDADD = \
  1011. libgnunettransport.la \
  1012. $(top_builddir)/src/hello/libgnunethello.la \
  1013. $(top_builddir)/src/util/libgnunetutil.la \
  1014. libgnunettransporttesting.la
  1015. test_transport_api_reliability_unix_SOURCES = \
  1016. test_transport_api_reliability.c
  1017. test_transport_api_reliability_unix_LDADD = \
  1018. libgnunettransport.la \
  1019. $(top_builddir)/src/hello/libgnunethello.la \
  1020. $(top_builddir)/src/util/libgnunetutil.la \
  1021. libgnunettransporttesting.la
  1022. test_transport_api_reliability_udp_SOURCES = \
  1023. test_transport_api_reliability.c
  1024. test_transport_api_reliability_udp_LDADD = \
  1025. libgnunettransport.la \
  1026. $(top_builddir)/src/hello/libgnunethello.la \
  1027. $(top_builddir)/src/util/libgnunetutil.la \
  1028. libgnunettransporttesting.la
  1029. if LINUX
  1030. test_transport_api_wlan_SOURCES = \
  1031. test_transport_api.c
  1032. test_transport_api_wlan_LDADD = \
  1033. libgnunettransport.la \
  1034. $(top_builddir)/src/hello/libgnunethello.la \
  1035. $(top_builddir)/src/util/libgnunetutil.la \
  1036. libgnunettransporttesting.la
  1037. endif
  1038. if LINUX
  1039. if HAVE_LIBBLUETOOTH
  1040. test_transport_api_bluetooth_SOURCES = \
  1041. test_transport_api.c
  1042. test_transport_api_bluetooth_LDADD = \
  1043. libgnunettransport.la \
  1044. $(top_builddir)/src/hello/libgnunethello.la \
  1045. $(top_builddir)/src/util/libgnunetutil.la \
  1046. libgnunettransporttesting.la
  1047. endif
  1048. endif
  1049. test_transport_address_switch_tcp_SOURCES = \
  1050. test_transport_address_switch.c
  1051. test_transport_address_switch_tcp_LDADD = \
  1052. libgnunettransport.la \
  1053. $(top_builddir)/src/hello/libgnunethello.la \
  1054. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  1055. $(top_builddir)/src/util/libgnunetutil.la \
  1056. libgnunettransporttesting.la
  1057. test_transport_address_switch_udp_SOURCES = \
  1058. test_transport_address_switch.c
  1059. test_transport_address_switch_udp_LDADD = \
  1060. libgnunettransport.la \
  1061. $(top_builddir)/src/hello/libgnunethello.la \
  1062. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  1063. $(top_builddir)/src/util/libgnunetutil.la \
  1064. libgnunettransporttesting.la
  1065. test_transport_address_switch_http_SOURCES = \
  1066. test_transport_address_switch.c
  1067. test_transport_address_switch_http_LDADD = \
  1068. libgnunettransport.la \
  1069. $(top_builddir)/src/hello/libgnunethello.la \
  1070. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  1071. $(top_builddir)/src/util/libgnunetutil.la \
  1072. libgnunettransporttesting.la
  1073. test_transport_address_switch_https_SOURCES = \
  1074. test_transport_address_switch.c
  1075. test_transport_address_switch_https_LDADD = \
  1076. libgnunettransport.la \
  1077. $(top_builddir)/src/hello/libgnunethello.la \
  1078. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  1079. $(top_builddir)/src/util/libgnunetutil.la \
  1080. libgnunettransporttesting.la
  1081. test_quota_compliance_tcp_SOURCES = \
  1082. test_quota_compliance.c
  1083. test_quota_compliance_tcp_LDADD = \
  1084. libgnunettransport.la \
  1085. $(top_builddir)/src/hello/libgnunethello.la \
  1086. $(top_builddir)/src/ats/libgnunetats.la \
  1087. $(top_builddir)/src/nt/libgnunetnt.la \
  1088. $(top_builddir)/src/util/libgnunetutil.la \
  1089. libgnunettransporttesting.la
  1090. test_quota_compliance_tcp_asymmetric_SOURCES = \
  1091. test_quota_compliance.c
  1092. test_quota_compliance_tcp_asymmetric_LDADD = \
  1093. libgnunettransport.la \
  1094. $(top_builddir)/src/hello/libgnunethello.la \
  1095. $(top_builddir)/src/nt/libgnunetnt.la \
  1096. $(top_builddir)/src/ats/libgnunetats.la \
  1097. $(top_builddir)/src/util/libgnunetutil.la \
  1098. libgnunettransporttesting.la
  1099. test_quota_compliance_udp_SOURCES = \
  1100. test_quota_compliance.c
  1101. test_quota_compliance_udp_LDADD = \
  1102. libgnunettransport.la \
  1103. $(top_builddir)/src/hello/libgnunethello.la \
  1104. $(top_builddir)/src/ats/libgnunetats.la \
  1105. $(top_builddir)/src/nt/libgnunetnt.la \
  1106. $(top_builddir)/src/util/libgnunetutil.la \
  1107. libgnunettransporttesting.la
  1108. test_quota_compliance_unix_SOURCES = \
  1109. test_quota_compliance.c
  1110. test_quota_compliance_unix_LDADD = \
  1111. libgnunettransport.la \
  1112. $(top_builddir)/src/hello/libgnunethello.la \
  1113. $(top_builddir)/src/ats/libgnunetats.la \
  1114. $(top_builddir)/src/nt/libgnunetnt.la \
  1115. $(top_builddir)/src/util/libgnunetutil.la \
  1116. libgnunettransporttesting.la
  1117. test_quota_compliance_unix_asymmetric_SOURCES = \
  1118. test_quota_compliance.c
  1119. test_quota_compliance_unix_asymmetric_LDADD = \
  1120. libgnunettransport.la \
  1121. $(top_builddir)/src/hello/libgnunethello.la \
  1122. $(top_builddir)/src/ats/libgnunetats.la \
  1123. $(top_builddir)/src/nt/libgnunetnt.la \
  1124. $(top_builddir)/src/util/libgnunetutil.la \
  1125. libgnunettransporttesting.la
  1126. test_quota_compliance_wlan_SOURCES = \
  1127. test_quota_compliance.c
  1128. test_quota_compliance_wlan_LDADD = \
  1129. libgnunettransport.la \
  1130. $(top_builddir)/src/hello/libgnunethello.la \
  1131. $(top_builddir)/src/ats/libgnunetats.la \
  1132. $(top_builddir)/src/nt/libgnunetnt.la \
  1133. $(top_builddir)/src/util/libgnunetutil.la \
  1134. libgnunettransporttesting.la
  1135. test_quota_compliance_wlan_asymmetric_SOURCES = \
  1136. test_quota_compliance.c
  1137. test_quota_compliance_wlan_asymmetric_LDADD = \
  1138. libgnunettransport.la \
  1139. $(top_builddir)/src/hello/libgnunethello.la \
  1140. $(top_builddir)/src/ats/libgnunetats.la \
  1141. $(top_builddir)/src/nt/libgnunetnt.la \
  1142. $(top_builddir)/src/util/libgnunetutil.la \
  1143. libgnunettransporttesting.la
  1144. test_quota_compliance_bluetooth_SOURCES = \
  1145. test_quota_compliance.c
  1146. test_quota_compliance_bluetooth_LDADD = \
  1147. libgnunettransport.la \
  1148. $(top_builddir)/src/hello/libgnunethello.la \
  1149. $(top_builddir)/src/ats/libgnunetats.la \
  1150. $(top_builddir)/src/nt/libgnunetnt.la \
  1151. $(top_builddir)/src/util/libgnunetutil.la \
  1152. libgnunettransporttesting.la
  1153. test_quota_compliance_bluetooth_asymmetric_SOURCES = \
  1154. test_quota_compliance.c
  1155. test_quota_compliance_bluetooth_asymmetric_LDADD = \
  1156. libgnunettransport.la \
  1157. $(top_builddir)/src/hello/libgnunethello.la \
  1158. $(top_builddir)/src/ats/libgnunetats.la \
  1159. $(top_builddir)/src/nt/libgnunetnt.la \
  1160. $(top_builddir)/src/util/libgnunetutil.la \
  1161. libgnunettransporttesting.la
  1162. test_transport_api_multi_SOURCES = \
  1163. test_transport_api.c
  1164. test_transport_api_multi_LDADD = \
  1165. libgnunettransport.la \
  1166. $(top_builddir)/src/hello/libgnunethello.la \
  1167. $(top_builddir)/src/util/libgnunetutil.la \
  1168. libgnunettransporttesting.la
  1169. test_transport_api_monitor_peers_SOURCES = \
  1170. test_transport_api_monitor_peers.c
  1171. test_transport_api_monitor_peers_LDADD = \
  1172. libgnunettransport.la \
  1173. $(top_builddir)/src/hello/libgnunethello.la \
  1174. $(top_builddir)/src/util/libgnunetutil.la \
  1175. libgnunettransporttesting.la
  1176. test_transport_api_slow_ats_SOURCES = \
  1177. test_transport_api.c
  1178. test_transport_api_slow_ats_LDADD = \
  1179. libgnunettransport.la \
  1180. $(top_builddir)/src/hello/libgnunethello.la \
  1181. $(top_builddir)/src/util/libgnunetutil.la \
  1182. libgnunettransporttesting.la
  1183. EXTRA_DIST = \
  1184. communicator-unix.conf \
  1185. test_plugin_hostkey \
  1186. test_plugin_hostkey.ecc \
  1187. test_delay \
  1188. template_cfg_peer1.conf\
  1189. template_cfg_peer2.conf\
  1190. test_plugin_transport_data.conf\
  1191. test_plugin_transport_data_udp.conf\
  1192. test_quota_compliance_data.conf\
  1193. test_quota_compliance_http_peer1.conf\
  1194. test_quota_compliance_http_peer2.conf\
  1195. test_quota_compliance_https_peer1.conf\
  1196. test_quota_compliance_https_peer2.conf\
  1197. test_quota_compliance_tcp_peer1.conf\
  1198. test_quota_compliance_tcp_peer2.conf\
  1199. test_quota_compliance_udp_peer1.conf\
  1200. test_quota_compliance_udp_peer2.conf\
  1201. test_quota_compliance_unix_peer1.conf\
  1202. test_quota_compliance_unix_peer2.conf\
  1203. test_quota_compliance_wlan_peer1.conf\
  1204. test_quota_compliance_wlan_peer2.conf\
  1205. test_quota_compliance_bluetooth_peer1.conf\
  1206. test_quota_compliance_bluetooth_peer2.conf\
  1207. test_quota_compliance_http_asymmetric_peer1.conf\
  1208. test_quota_compliance_http_asymmetric_peer2.conf\
  1209. test_quota_compliance_https_asymmetric_peer1.conf\
  1210. test_quota_compliance_https_asymmetric_peer2.conf\
  1211. test_quota_compliance_tcp_asymmetric_peer1.conf\
  1212. test_quota_compliance_tcp_asymmetric_peer2.conf\
  1213. test_quota_compliance_unix_asymmetric_peer1.conf\
  1214. test_quota_compliance_unix_asymmetric_peer2.conf\
  1215. test_quota_compliance_wlan_asymmetric_peer1.conf\
  1216. test_quota_compliance_wlan_asymmetric_peer2.conf\
  1217. test_quota_compliance_bluetooth_asymmetric_peer1.conf\
  1218. test_quota_compliance_bluetooth_asymmetric_peer2.conf\
  1219. test_transport_api_data.conf\
  1220. test_transport_api_blacklisting_tcp_peer1.conf \
  1221. test_transport_api_blacklisting_tcp_peer2.conf \
  1222. test_transport_api_http_peer1.conf\
  1223. test_transport_api_http_peer2.conf\
  1224. test_transport_api_https_peer1.conf\
  1225. test_transport_api_https_peer2.conf\
  1226. test_transport_api_limited_sockets_tcp_peer1.conf\
  1227. test_transport_api_limited_sockets_tcp_peer2.conf\
  1228. test_transport_api_timeout_tcp_peer1.conf\
  1229. test_transport_api_timeout_tcp_peer2.conf\
  1230. test_transport_api_multi_peer1.conf\
  1231. test_transport_api_multi_peer2.conf\
  1232. test_transport_api_restart_1peer_peer1.conf\
  1233. test_transport_api_restart_1peer_peer2.conf\
  1234. test_transport_api_reliability_http_peer1.conf\
  1235. test_transport_api_reliability_http_peer2.conf\
  1236. test_transport_api_reliability_https_peer1.conf\
  1237. test_transport_api_reliability_https_peer2.conf\
  1238. test_transport_api_reliability_tcp_nat_peer1.conf\
  1239. test_transport_api_reliability_tcp_nat_peer2.conf\
  1240. test_transport_api_reliability_tcp_peer1.conf\
  1241. test_transport_api_reliability_tcp_peer2.conf\
  1242. test_transport_api_reliability_wlan_peer1.conf\
  1243. test_transport_api_reliability_wlan_peer2.conf\
  1244. test_transport_api_reliability_bluetooth_peer1.conf\
  1245. test_transport_api_reliability_bluetooth_peer2.conf\
  1246. test_transport_api_manipulation_send_tcp_peer1.conf\
  1247. test_transport_api_manipulation_send_tcp_peer2.conf\
  1248. test_transport_api_manipulation_recv_tcp_peer1.conf\
  1249. test_transport_api_manipulation_recv_tcp_peer2.conf\
  1250. test_transport_api_manipulation_cfg_peer1.conf\
  1251. test_transport_api_manipulation_cfg_peer2.conf\
  1252. test_transport_api_restart_1peer_peer1.conf\
  1253. test_transport_api_restart_1peer_peer2.conf\
  1254. test_transport_api_restart_2peers_peer1.conf\
  1255. test_transport_api_restart_2peers_peer2.conf\
  1256. test_transport_api_tcp_nat_peer1.conf\
  1257. test_transport_api_tcp_nat_peer2.conf\
  1258. test_transport_api_tcp_peer1.conf\
  1259. test_transport_api_tcp_peer2.conf\
  1260. test_transport_api_udp_nat_peer1.conf\
  1261. test_transport_api_udp_nat_peer2.conf\
  1262. test_transport_api_udp_peer1.conf\
  1263. test_transport_api_udp_peer2.conf\
  1264. test_transport_api_timeout_udp_peer1.conf\
  1265. test_transport_api_timeout_udp_peer2.conf\
  1266. test_transport_api_unix_peer1.conf\
  1267. test_transport_api_unix_peer2.conf\
  1268. test_transport_api_unix_abstract_peer1.conf \
  1269. test_transport_api_unix_abstract_peer2.conf \
  1270. test_transport_api_timeout_unix_peer1.conf\
  1271. test_transport_api_timeout_unix_peer2.conf\
  1272. test_transport_api_timeout_wlan_peer1.conf \
  1273. test_transport_api_timeout_wlan_peer2.conf \
  1274. test_transport_api_timeout_bluetooth_peer1.conf\
  1275. test_transport_api_timeout_bluetooth_peer2.conf\
  1276. test_transport_api_reliability_udp_peer1.conf\
  1277. test_transport_api_reliability_udp_peer2.conf\
  1278. test_transport_api_reliability_http_xhr_peer1.conf\
  1279. test_transport_api_reliability_http_xhr_peer2.conf\
  1280. test_transport_api_reliability_https_xhr_peer1.conf\
  1281. test_transport_api_reliability_https_xhr_peer2.conf\
  1282. test_transport_api_reliability_unix_peer1.conf\
  1283. test_transport_api_reliability_unix_peer2.conf\
  1284. test_transport_api_reliability_wlan_peer1.conf\
  1285. test_transport_api_reliability_wlan_peer2.conf\
  1286. test_transport_api_unreliability_wlan_peer1.conf\
  1287. test_transport_api_unreliability_wlan_peer2.conf\
  1288. test_transport_api_reliability_bluetooth_peer1.conf\
  1289. test_transport_api_reliability_bluetooth_peer2.conf\
  1290. test_transport_api_wlan_peer1.conf\
  1291. test_transport_api_wlan_peer2.conf\
  1292. test_transport_api_bluetooth_peer1.conf\
  1293. test_transport_api_bluetooth_peer2.conf\
  1294. test_transport_api_monitor_peers_peer1.conf\
  1295. test_transport_api_monitor_peers_peer2.conf\
  1296. test_transport_api_monitor_validation_peer1.conf\
  1297. test_transport_api_monitor_validation_peer2.conf\
  1298. test_transport_defaults.conf\
  1299. test_transport_api_disconnect_tcp_peer1.conf\
  1300. test_transport_api_disconnect_tcp_peer2.conf\
  1301. test_transport_api_timeout_http_peer1.conf\
  1302. test_transport_api_timeout_http_peer2.conf\
  1303. test_transport_api_timeout_https_peer1.conf\
  1304. test_transport_api_timeout_https_peer2.conf\
  1305. test_transport_blacklisting_cfg_peer1.conf \
  1306. test_transport_blacklisting_cfg_peer2.conf \
  1307. test_transport_blacklisting_cfg_blp_peer1_full.conf\
  1308. test_transport_blacklisting_cfg_blp_peer1_plugin.conf \
  1309. test_transport_blacklisting_cfg_blp_peer2_full.conf\
  1310. test_transport_blacklisting_cfg_blp_peer2_plugin.conf \
  1311. test_transport_blacklisting_cfg_blp_peer1_multiple_plugins.conf \
  1312. test_transport_blacklisting_cfg_blp_peer2_multiple_plugins.conf \
  1313. test_transport_api_http_reverse_peer1.conf \
  1314. test_transport_api_http_reverse_peer2.conf \
  1315. perf_tcp_peer1.conf \
  1316. perf_tcp_peer2.conf \
  1317. test_transport_api_slow_ats_peer1.conf \
  1318. test_transport_api_slow_ats_peer2.conf \
  1319. tcp_connection_legacy.c \
  1320. tcp_server_mst_legacy.c \
  1321. tcp_server_legacy.c \
  1322. tcp_service_legacy.c