Makefile.am 50 KB

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