Makefile.am 51 KB

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