Makefile.am 49 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477
  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. bin_PROGRAMS = \
  225. gnunet-transport \
  226. gnunet-transport-certificate-creation
  227. #bin_SCRIPTS = \
  228. # gnunet-transport-certificate-creation
  229. gnunet_transport_certificate_creation_SOURCES = \
  230. gnunet-transport-certificate-creation.c
  231. gnunet_transport_certificate_creation_LDADD = \
  232. $(top_builddir)/src/util/libgnunetutil.la
  233. gnunet_communicator_unix_SOURCES = \
  234. gnunet-communicator-unix.c
  235. gnunet_communicator_unix_LDADD = \
  236. libgnunettransportcommunicator.la \
  237. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  238. $(top_builddir)/src/util/libgnunetutil.la
  239. gnunet_communicator_tcp_SOURCES = \
  240. gnunet-communicator-tcp.c
  241. gnunet_communicator_tcp_LDADD = \
  242. libgnunettransportcommunicator.la \
  243. $(top_builddir)/src/nat/libgnunetnatnew.la \
  244. $(top_builddir)/src/nt/libgnunetnt.la \
  245. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  246. $(top_builddir)/src/util/libgnunetutil.la \
  247. $(LIBGCRYPT_LIBS)
  248. gnunet_communicator_udp_SOURCES = \
  249. gnunet-communicator-udp.c
  250. gnunet_communicator_udp_LDADD = \
  251. libgnunettransportapplication.la \
  252. libgnunettransportcommunicator.la \
  253. $(top_builddir)/src/nat/libgnunetnatnew.la \
  254. $(top_builddir)/src/nt/libgnunetnt.la \
  255. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  256. $(top_builddir)/src/util/libgnunetutil.la \
  257. $(LIBGCRYPT_LIBS)
  258. gnunet_helper_transport_wlan_SOURCES = \
  259. gnunet-helper-transport-wlan.c
  260. gnunet_helper_transport_wlan_dummy_SOURCES = \
  261. gnunet-helper-transport-wlan-dummy.c
  262. gnunet_helper_transport_wlan_dummy_LDADD = \
  263. $(top_builddir)/src/util/libgnunetutil.la
  264. gnunet_transport_wlan_sender_SOURCES = \
  265. gnunet-transport-wlan-sender.c
  266. gnunet_transport_wlan_sender_LDADD = \
  267. $(top_builddir)/src/util/libgnunetutil.la
  268. gnunet_transport_wlan_receiver_SOURCES = \
  269. gnunet-transport-wlan-receiver.c
  270. gnunet_transport_wlan_receiver_LDADD = \
  271. $(top_builddir)/src/util/libgnunetutil.la
  272. gnunet_helper_transport_bluetooth_SOURCES = \
  273. gnunet-helper-transport-bluetooth.c
  274. if MINGW
  275. gnunet_helper_transport_bluetooth_LDADD = \
  276. $(top_builddir)/src/util/libgnunetutil.la
  277. gnunet_helper_transport_bluetooth_LDFLAGS = -lws2_32
  278. else
  279. gnunet_helper_transport_bluetooth_LDFLAGS = -lbluetooth
  280. endif
  281. gnunet_transport_profiler_SOURCES = \
  282. gnunet-transport-profiler.c
  283. gnunet_transport_profiler_LDADD = \
  284. libgnunettransport.la \
  285. $(top_builddir)/src/hello/libgnunethello.la \
  286. $(top_builddir)/src/ats/libgnunetats.la \
  287. $(top_builddir)/src/util/libgnunetutil.la \
  288. $(GN_LIBINTL)
  289. gnunet_transport_SOURCES = \
  290. gnunet-transport.c
  291. gnunet_transport_LDADD = \
  292. libgnunettransport.la \
  293. $(top_builddir)/src/hello/libgnunethello.la \
  294. $(top_builddir)/src/util/libgnunetutil.la \
  295. $(GN_LIBINTL)
  296. gnunet_service_transport_SOURCES = \
  297. gnunet-service-transport.c gnunet-service-transport.h \
  298. gnunet-service-transport_ats.h gnunet-service-transport_ats.c \
  299. gnunet-service-transport_hello.h gnunet-service-transport_hello.c \
  300. gnunet-service-transport_neighbours.h gnunet-service-transport_neighbours.c \
  301. gnunet-service-transport_plugins.h gnunet-service-transport_plugins.c \
  302. gnunet-service-transport_validation.h gnunet-service-transport_validation.c \
  303. gnunet-service-transport_manipulation.h gnunet-service-transport_manipulation.c
  304. # Note that while gnunet-service-transport does not use libgnunetnat
  305. # directly, we must link against it as GNUNET_NAT_mini_map_stop will
  306. # leave a 'dangling' task to process_unmap_output which will cause
  307. # a crash on unloading of a plugin unless the service links against
  308. # that library as well.
  309. gnunet_service_transport_LDADD = \
  310. libgnunettransport.la \
  311. $(top_builddir)/src/ats/libgnunetats.la \
  312. $(top_builddir)/src/hello/libgnunethello.la \
  313. $(top_builddir)/src/nt/libgnunetnt.la \
  314. $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
  315. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  316. $(top_builddir)/src/util/libgnunetutil.la \
  317. $(GN_GLPK) \
  318. $(GN_LIBINTL)
  319. gnunet_service_transport_CFLAGS = \
  320. $(CFLAGS)
  321. # -DANALYZE
  322. gnunet_service_tng_SOURCES = \
  323. gnunet-service-tng.c
  324. gnunet_service_tng_LDADD = \
  325. $(top_builddir)/src/peerstore/libgnunetpeerstore.la \
  326. $(top_builddir)/src/hello/libgnunethello.la \
  327. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  328. $(top_builddir)/src/util/libgnunetutil.la \
  329. $(LIBGCRYPT_LIBS) \
  330. $(GN_LIBINTL)
  331. plugin_LTLIBRARIES = \
  332. libgnunet_plugin_transport_tcp.la \
  333. libgnunet_plugin_transport_udp.la \
  334. $(UNIX_PLUGIN_LA) \
  335. $(HTTP_CLIENT_PLUGIN_LA) \
  336. $(HTTPS_CLIENT_PLUGIN_LA) \
  337. $(HTTP_SERVER_PLUGIN_LA) \
  338. $(HTTPS_SERVER_PLUGIN_LA) \
  339. $(WLAN_PLUGIN_LA) \
  340. $(BT_PLUGIN_LA)
  341. # Note: real plugins of course need to be added
  342. # to the plugin_LTLIBRARIES above
  343. noinst_LTLIBRARIES = \
  344. libgnunet_plugin_transport_template.la
  345. libgnunet_plugin_transport_tcp_la_SOURCES = \
  346. plugin_transport_tcp.c
  347. libgnunet_plugin_transport_tcp_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/nat/libgnunetnatnew.la \
  352. $(top_builddir)/src/util/libgnunetutil.la \
  353. $(LTLIBINTL)
  354. libgnunet_plugin_transport_tcp_la_LDFLAGS = \
  355. $(GN_PLUGIN_LDFLAGS)
  356. libgnunet_plugin_transport_template_la_SOURCES = \
  357. plugin_transport_template.c
  358. libgnunet_plugin_transport_template_la_LIBADD = \
  359. $(top_builddir)/src/util/libgnunetutil.la \
  360. $(LTLIBINTL)
  361. libgnunet_plugin_transport_template_la_LDFLAGS = \
  362. $(GN_PLUGIN_LDFLAGS)
  363. libgnunet_plugin_transport_wlan_la_SOURCES = \
  364. plugin_transport_wlan.c plugin_transport_wlan.h
  365. libgnunet_plugin_transport_wlan_la_LIBADD = \
  366. $(top_builddir)/src/hello/libgnunethello.la \
  367. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  368. $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
  369. $(top_builddir)/src/fragmentation/libgnunetfragmentation.la \
  370. $(top_builddir)/src/util/libgnunetutil.la
  371. libgnunet_plugin_transport_wlan_la_LDFLAGS = \
  372. $(GN_PLUGIN_LDFLAGS)
  373. libgnunet_plugin_transport_wlan_la_CFLAGS = \
  374. $(CFLAGS) -DBUILD_WLAN
  375. libgnunet_plugin_transport_bluetooth_la_SOURCES = \
  376. plugin_transport_wlan.c plugin_transport_wlan.h
  377. libgnunet_plugin_transport_bluetooth_la_LIBADD = \
  378. $(top_builddir)/src/hello/libgnunethello.la \
  379. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  380. $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
  381. $(top_builddir)/src/fragmentation/libgnunetfragmentation.la \
  382. $(top_builddir)/src/util/libgnunetutil.la
  383. libgnunet_plugin_transport_bluetooth_la_LDFLAGS = \
  384. $(GN_PLUGIN_LDFLAGS)
  385. libgnunet_plugin_transport_bluetooth_la_CFLAGS = \
  386. $(CFLAGS) -DBUILD_BLUETOOTH
  387. libgnunet_plugin_transport_udp_la_SOURCES = \
  388. plugin_transport_udp.c plugin_transport_udp.h \
  389. plugin_transport_udp_broadcasting.c
  390. libgnunet_plugin_transport_udp_la_LIBADD = \
  391. $(top_builddir)/src/hello/libgnunethello.la \
  392. $(top_builddir)/src/fragmentation/libgnunetfragmentation.la \
  393. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  394. $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
  395. $(top_builddir)/src/nat/libgnunetnatnew.la \
  396. $(top_builddir)/src/util/libgnunetutil.la \
  397. $(LTLIBINTL)
  398. libgnunet_plugin_transport_udp_la_LDFLAGS = \
  399. $(GN_PLUGIN_LDFLAGS)
  400. libgnunet_plugin_transport_unix_la_SOURCES = \
  401. plugin_transport_unix.c
  402. libgnunet_plugin_transport_unix_la_LIBADD = \
  403. $(top_builddir)/src/hello/libgnunethello.la \
  404. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  405. $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
  406. $(top_builddir)/src/util/libgnunetutil.la \
  407. $(LTLIBINTL)
  408. libgnunet_plugin_transport_unix_la_LDFLAGS = \
  409. $(GN_PLUGIN_LDFLAGS)
  410. libgnunet_plugin_transport_http_client_la_SOURCES = \
  411. plugin_transport_http_client.c plugin_transport_http_common.c plugin_transport_http_common.h
  412. libgnunet_plugin_transport_http_client_la_LIBADD = \
  413. $(top_builddir)/src/hello/libgnunethello.la \
  414. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  415. $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
  416. $(LIB_GNURL) \
  417. $(top_builddir)/src/util/libgnunetutil.la
  418. libgnunet_plugin_transport_http_client_la_LDFLAGS = \
  419. $(GN_PLUGIN_LDFLAGS)
  420. libgnunet_plugin_transport_http_client_la_CFLAGS = \
  421. $(CFLAGS)
  422. libgnunet_plugin_transport_http_client_la_CPPFLAGS = \
  423. $(CPP_GNURL) $(AM_CPPFLAGS)
  424. libgnunet_plugin_transport_http_server_la_SOURCES = \
  425. plugin_transport_http_server.c plugin_transport_http_common.c
  426. libgnunet_plugin_transport_http_server_la_LIBADD = \
  427. $(top_builddir)/src/hello/libgnunethello.la \
  428. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  429. $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
  430. $(top_builddir)/src/nat/libgnunetnatnew.la \
  431. $(top_builddir)/src/util/libgnunetutil.la
  432. libgnunet_plugin_transport_http_server_la_LDFLAGS = \
  433. $(GN_LIBMHD) \
  434. $(GN_PLUGIN_LDFLAGS)
  435. libgnunet_plugin_transport_http_server_la_CFLAGS = \
  436. $(CFLAGS)
  437. libgnunet_plugin_transport_https_client_la_SOURCES = \
  438. plugin_transport_http_client.c plugin_transport_http_common.c
  439. libgnunet_plugin_transport_https_client_la_LIBADD = \
  440. $(top_builddir)/src/hello/libgnunethello.la \
  441. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  442. $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
  443. $(LIB_GNURL) \
  444. $(top_builddir)/src/util/libgnunetutil.la
  445. libgnunet_plugin_transport_https_client_la_LDFLAGS = \
  446. $(GN_PLUGIN_LDFLAGS)
  447. libgnunet_plugin_transport_https_client_la_CFLAGS = \
  448. $(CFLAGS) -DBUILD_HTTPS
  449. libgnunet_plugin_transport_https_client_la_CPPFLAGS = \
  450. $(CPP_GNURL) $(AM_CPPFLAGS)
  451. libgnunet_plugin_transport_https_server_la_SOURCES = \
  452. plugin_transport_http_server.c plugin_transport_http_common.c
  453. libgnunet_plugin_transport_https_server_la_LIBADD = \
  454. $(top_builddir)/src/hello/libgnunethello.la \
  455. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  456. $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
  457. $(top_builddir)/src/nat/libgnunetnatnew.la \
  458. $(top_builddir)/src/util/libgnunetutil.la
  459. libgnunet_plugin_transport_https_server_la_LDFLAGS = \
  460. $(GN_LIBMHD) \
  461. $(GN_PLUGIN_LDFLAGS)
  462. libgnunet_plugin_transport_https_server_la_CFLAGS = \
  463. $(CFLAGS) -DBUILD_HTTPS
  464. if HAVE_TESTING
  465. check_PROGRAMS = \
  466. test_transport_address_switch_tcp \
  467. test_transport_address_switch_udp \
  468. test_transport_testing_startstop \
  469. test_transport_testing_restart \
  470. test_plugin_tcp \
  471. test_plugin_udp \
  472. $(UNIX_TEST) \
  473. $(WLAN_PLUGIN_TEST) \
  474. $(BT_PLUGIN_TEST) \
  475. test_http_common \
  476. $(HTTP_CLIENT_PLUGIN_TEST) \
  477. $(HTTPS_CLIENT_PLUGIN_TEST) \
  478. $(HTTP_SERVER_PLUGIN_TEST) \
  479. $(HTTPS_SERVER_PLUGIN_TEST) \
  480. test_transport_api_blacklisting_tcp \
  481. test_transport_api_disconnect_tcp \
  482. test_transport_api_tcp \
  483. test_transport_api_restart_1peer \
  484. test_transport_api_restart_2peers \
  485. test_transport_api_timeout_tcp \
  486. test_transport_api_limited_sockets_tcp \
  487. test_transport_api_tcp_nat \
  488. test_transport_api_udp \
  489. test_transport_api_timeout_udp \
  490. $(UNIX_PLUGIN_TEST) \
  491. $(UNIX_PLUGIN_TIMEOUT_TEST) \
  492. $(UNIX_API_ABSTRACT_TEST) \
  493. test_transport_api_udp_nat \
  494. $(HTTP_API_TEST) \
  495. $(HTTP_REVERSE_API_TEST) \
  496. $(HTTP_API_TIMEOUT_TEST) \
  497. $(HTTP_SWITCH) \
  498. $(HTTPS_API_TEST) \
  499. $(HTTPS_API_TIMEOUT_TEST) \
  500. $(HTTPS_SWITCH) \
  501. $(WLAN_API_TEST) \
  502. $(WLAN_TIMEOUT_TEST) \
  503. $(BT_API_TEST) \
  504. $(BT_TIMEOUT_TEST) \
  505. test_transport_api_multi \
  506. test_transport_api_monitor_peers \
  507. test_transport_blacklisting_no_bl \
  508. test_transport_blacklisting_outbound_bl_full \
  509. test_transport_blacklisting_outbound_bl_plugin \
  510. test_transport_blacklisting_inbound_bl_plugin \
  511. test_transport_blacklisting_inbound_bl_full \
  512. test_transport_blacklisting_multiple_plugins \
  513. test_transport_api_manipulation_send_tcp \
  514. test_transport_api_manipulation_recv_tcp \
  515. test_transport_api_manipulation_cfg \
  516. test_transport_api_reliability_tcp \
  517. test_transport_api_reliability_tcp_nat \
  518. test_transport_api_reliability_udp \
  519. $(UNIX_REL_TEST) \
  520. $(HTTP_REL_TEST) \
  521. $(HTTPS_REL_TEST) \
  522. $(WLAN_REL_TEST) \
  523. $(WLAN_UREL_TEST) \
  524. $(BT_REL_TEST) \
  525. $(BT_UREL_TEST) \
  526. test_quota_compliance_tcp \
  527. test_quota_compliance_tcp_asymmetric \
  528. test_quota_compliance_udp \
  529. $(UNIX_QUOTA_TEST) \
  530. $(HTTP_QUOTA_TEST) \
  531. $(HTTPS_QUOTA_TEST) \
  532. $(WLAN_QUOTA_TEST) \
  533. $(BT_QUOTA_TEST) \
  534. test_communicator_unix
  535. if HAVE_GETOPT_BINARY
  536. check_PROGRAMS += \
  537. test_transport_api_slow_ats
  538. endif
  539. endif
  540. if ENABLE_TEST_RUN
  541. AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;unset XDG_DATA_HOME;unset XDG_CONFIG_HOME;
  542. TESTS = \
  543. test_transport_address_switch_tcp \
  544. test_transport_address_switch_udp \
  545. $(HTTP_SWITCH) \
  546. $(HTTPS_SWITCH) \
  547. test_transport_testing_startstop \
  548. test_transport_testing_restart \
  549. test_plugin_tcp \
  550. test_plugin_udp \
  551. $(UNIX_TEST) \
  552. $(WLAN_PLUGIN_TEST) \
  553. $(BT_PLUGIN_TEST) \
  554. test_transport_api_blacklisting_tcp \
  555. test_transport_api_disconnect_tcp \
  556. test_transport_api_tcp \
  557. test_transport_api_restart_1peer \
  558. test_transport_api_restart_2peers \
  559. test_transport_api_limited_sockets_tcp \
  560. test_transport_api_tcp_nat \
  561. test_transport_api_udp \
  562. $(UNIX_PLUGIN_TEST) \
  563. $(UNIX_API_ABSTRACT_TEST) \
  564. test_transport_api_udp_nat \
  565. $(HTTP_API_TEST) \
  566. $(HTTPS_API_TEST) \
  567. $(WLAN_API_TEST) \
  568. $(BT_API_TEST) \
  569. test_transport_api_multi \
  570. test_transport_api_monitor_peers \
  571. test_transport_blacklisting_no_bl \
  572. test_transport_blacklisting_outbound_bl_full \
  573. test_transport_blacklisting_outbound_bl_plugin \
  574. test_transport_blacklisting_inbound_bl_plugin \
  575. test_transport_blacklisting_inbound_bl_full \
  576. test_transport_blacklisting_multiple_plugins \
  577. test_transport_api_manipulation_send_tcp \
  578. test_transport_api_manipulation_recv_tcp \
  579. test_transport_api_manipulation_cfg \
  580. test_transport_api_reliability_tcp \
  581. test_transport_api_reliability_tcp_nat \
  582. test_transport_api_reliability_udp \
  583. $(UNIX_REL_TEST) \
  584. $(HTTP_REL_TEST) \
  585. $(HTTPS_REL_TEST) \
  586. $(WLAN_REL_TEST) \
  587. $(WLAN_UREL_TEST) \
  588. $(BT_REL_TEST) \
  589. $(BT_UREL_TEST) \
  590. test_quota_compliance_tcp \
  591. test_quota_compliance_tcp_asymmetric \
  592. test_quota_compliance_udp \
  593. $(UNIX_QUOTA_TEST) \
  594. $(HTTP_QUOTA_TEST) \
  595. $(HTTPS_QUOTA_TEST) \
  596. test_transport_api_timeout_tcp \
  597. test_transport_api_timeout_udp \
  598. $(UNIX_PLUGIN_TIMEOUT_TEST) \
  599. $(HTTP_API_TIMEOUT_TEST) \
  600. $(HTTPS_API_TIMEOUT_TEST) \
  601. $(WLAN_TIMEOUT_TEST) \
  602. $(BT_TIMEOUT_TEST) \
  603. test_communicator_unix
  604. if HAVE_GETOPT_BINARY
  605. TESTS += \
  606. test_transport_api_slow_ats
  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. test_plugin_udp_SOURCES = \
  696. test_plugin_transport.c
  697. test_plugin_udp_LDADD = \
  698. libgnunettransport.la \
  699. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  700. $(top_builddir)/src/hello/libgnunethello.la \
  701. $(top_builddir)/src/util/libgnunetutil.la \
  702. libgnunettransporttesting.la
  703. test_communicator_unix_SOURCES = \
  704. test_communicator_unix.c
  705. test_communicator_unix_LDADD = \
  706. libgnunettransporttesting2.la \
  707. $(top_builddir)/src/util/libgnunetutil.la
  708. test_plugin_unix_SOURCES = \
  709. test_plugin_transport.c
  710. test_plugin_unix_LDADD = \
  711. libgnunettransport.la \
  712. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  713. $(top_builddir)/src/hello/libgnunethello.la \
  714. $(top_builddir)/src/util/libgnunetutil.la \
  715. libgnunettransporttesting.la
  716. test_plugin_wlan_SOURCES = \
  717. test_plugin_transport.c
  718. test_plugin_wlan_LDADD = \
  719. libgnunettransport.la \
  720. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  721. $(top_builddir)/src/hello/libgnunethello.la \
  722. $(top_builddir)/src/util/libgnunetutil.la \
  723. libgnunettransporttesting.la
  724. test_plugin_bluetooth_SOURCES = \
  725. test_plugin_transport.c
  726. test_plugin_bluetooth_LDADD = \
  727. libgnunettransport.la \
  728. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  729. $(top_builddir)/src/hello/libgnunethello.la \
  730. $(top_builddir)/src/util/libgnunetutil.la \
  731. libgnunettransporttesting.la
  732. test_http_common_SOURCES = \
  733. test_http_common.c plugin_transport_http_common.c
  734. test_http_common_LDADD = \
  735. libgnunettransport.la \
  736. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  737. $(top_builddir)/src/hello/libgnunethello.la \
  738. $(top_builddir)/src/util/libgnunetutil.la \
  739. libgnunettransporttesting.la
  740. test_plugin_http_server_SOURCES = \
  741. test_plugin_transport.c
  742. test_plugin_http_server_LDADD = \
  743. libgnunettransport.la \
  744. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  745. $(top_builddir)/src/hello/libgnunethello.la \
  746. $(top_builddir)/src/util/libgnunetutil.la \
  747. libgnunettransporttesting.la
  748. test_plugin_https_server_SOURCES = \
  749. test_plugin_transport.c
  750. test_plugin_https_server_LDADD = \
  751. libgnunettransport.la \
  752. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  753. $(top_builddir)/src/hello/libgnunethello.la \
  754. $(top_builddir)/src/util/libgnunetutil.la \
  755. libgnunettransporttesting.la
  756. test_plugin_http_client_SOURCES = \
  757. test_plugin_transport.c
  758. test_plugin_http_client_LDADD = \
  759. libgnunettransport.la \
  760. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  761. $(top_builddir)/src/hello/libgnunethello.la \
  762. $(top_builddir)/src/util/libgnunetutil.la \
  763. libgnunettransporttesting.la
  764. test_plugin_https_client_SOURCES = \
  765. test_plugin_transport.c
  766. test_plugin_https_client_LDADD = \
  767. libgnunettransport.la \
  768. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  769. $(top_builddir)/src/hello/libgnunethello.la \
  770. $(top_builddir)/src/util/libgnunetutil.la \
  771. libgnunettransporttesting.la
  772. test_transport_api_tcp_SOURCES = \
  773. test_transport_api.c
  774. test_transport_api_tcp_LDADD = \
  775. libgnunettransport.la \
  776. $(top_builddir)/src/hello/libgnunethello.la \
  777. $(top_builddir)/src/util/libgnunetutil.la \
  778. libgnunettransporttesting.la
  779. test_transport_api_restart_1peer_SOURCES = \
  780. test_transport_api_restart_reconnect.c
  781. test_transport_api_restart_1peer_LDADD = \
  782. libgnunettransport.la \
  783. $(top_builddir)/src/hello/libgnunethello.la \
  784. $(top_builddir)/src/ats/libgnunetats.la \
  785. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  786. $(top_builddir)/src/util/libgnunetutil.la \
  787. libgnunettransporttesting.la
  788. test_transport_api_restart_2peers_SOURCES = \
  789. test_transport_api_restart_reconnect.c
  790. test_transport_api_restart_2peers_LDADD = \
  791. libgnunettransport.la \
  792. $(top_builddir)/src/hello/libgnunethello.la \
  793. $(top_builddir)/src/ats/libgnunetats.la \
  794. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  795. $(top_builddir)/src/util/libgnunetutil.la \
  796. libgnunettransporttesting.la
  797. test_transport_api_limited_sockets_tcp_SOURCES = \
  798. test_transport_api_limited_sockets.c
  799. test_transport_api_limited_sockets_tcp_LDADD = \
  800. libgnunettransport.la \
  801. $(top_builddir)/src/hello/libgnunethello.la \
  802. $(top_builddir)/src/util/libgnunetutil.la \
  803. libgnunettransporttesting.la
  804. test_transport_api_tcp_nat_SOURCES = \
  805. test_transport_api.c
  806. test_transport_api_tcp_nat_LDADD = \
  807. libgnunettransport.la \
  808. $(top_builddir)/src/hello/libgnunethello.la \
  809. $(top_builddir)/src/util/libgnunetutil.la \
  810. libgnunettransporttesting.la
  811. test_transport_api_manipulation_send_tcp_SOURCES = \
  812. test_transport_api_manipulation_send_tcp.c
  813. test_transport_api_manipulation_send_tcp_LDADD = \
  814. libgnunettransport.la \
  815. $(top_builddir)/src/hello/libgnunethello.la \
  816. $(top_builddir)/src/util/libgnunetutil.la \
  817. libgnunettransporttesting.la
  818. test_transport_api_manipulation_recv_tcp_SOURCES = \
  819. test_transport_api_manipulation_recv_tcp.c
  820. test_transport_api_manipulation_recv_tcp_LDADD = \
  821. libgnunettransport.la \
  822. $(top_builddir)/src/hello/libgnunethello.la \
  823. $(top_builddir)/src/util/libgnunetutil.la \
  824. libgnunettransporttesting.la
  825. test_transport_api_manipulation_cfg_SOURCES = \
  826. test_transport_api_manipulation_cfg.c
  827. test_transport_api_manipulation_cfg_LDADD = \
  828. libgnunettransport.la \
  829. $(top_builddir)/src/hello/libgnunethello.la \
  830. $(top_builddir)/src/util/libgnunetutil.la \
  831. libgnunettransporttesting.la
  832. test_transport_api_reliability_tcp_SOURCES = \
  833. test_transport_api_reliability.c
  834. test_transport_api_reliability_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_timeout_tcp_SOURCES = \
  840. test_transport_api_timeout.c
  841. test_transport_api_timeout_tcp_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_timeout_unix_SOURCES = \
  847. test_transport_api_timeout.c
  848. test_transport_api_timeout_unix_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_timeout_wlan_SOURCES = \
  854. test_transport_api_timeout.c
  855. test_transport_api_timeout_wlan_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_timeout_bluetooth_SOURCES = \
  861. test_transport_api_timeout.c
  862. test_transport_api_timeout_bluetooth_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_nat_SOURCES = \
  868. test_transport_api_reliability.c
  869. test_transport_api_reliability_tcp_nat_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_reliability_bluetooth_SOURCES = \
  875. test_transport_api_reliability.c
  876. test_transport_api_reliability_bluetooth_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_reliability_wlan_SOURCES = \
  882. test_transport_api_reliability.c
  883. test_transport_api_reliability_wlan_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_udp_SOURCES = \
  889. test_transport_api.c
  890. test_transport_api_udp_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_udp_SOURCES = \
  896. test_transport_api_timeout.c
  897. test_transport_api_timeout_udp_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_udp_nat_SOURCES = \
  903. test_transport_api.c
  904. test_transport_api_udp_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_unix_SOURCES = \
  910. test_transport_api.c
  911. test_transport_api_unix_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_unix_abstract_SOURCES = \
  917. test_transport_api.c
  918. test_transport_api_unix_abstract_LDADD = \
  919. libgnunettransport.la \
  920. $(top_builddir)/src/hello/libgnunethello.la \
  921. $(top_builddir)/src/util/libgnunetutil.la \
  922. libgnunettransporttesting.la
  923. # HTTP tests
  924. test_transport_api_http_SOURCES = \
  925. test_transport_api.c
  926. test_transport_api_http_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_http_reverse_SOURCES = \
  932. test_transport_api.c
  933. test_transport_api_http_reverse_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_timeout_http_SOURCES = \
  939. test_transport_api_timeout.c
  940. test_transport_api_timeout_http_LDADD = \
  941. libgnunettransport.la \
  942. $(top_builddir)/src/hello/libgnunethello.la \
  943. $(top_builddir)/src/util/libgnunetutil.la \
  944. libgnunettransporttesting.la
  945. test_transport_api_reliability_http_SOURCES = \
  946. test_transport_api_reliability.c
  947. test_transport_api_reliability_http_LDADD = \
  948. libgnunettransport.la \
  949. $(top_builddir)/src/hello/libgnunethello.la \
  950. $(top_builddir)/src/util/libgnunetutil.la \
  951. libgnunettransporttesting.la
  952. test_transport_api_reliability_http_xhr_SOURCES = \
  953. test_transport_api_reliability.c
  954. test_transport_api_reliability_http_xhr_LDADD = \
  955. libgnunettransport.la \
  956. $(top_builddir)/src/hello/libgnunethello.la \
  957. $(top_builddir)/src/util/libgnunetutil.la \
  958. libgnunettransporttesting.la
  959. test_quota_compliance_http_SOURCES = \
  960. test_quota_compliance.c
  961. test_quota_compliance_http_LDADD = \
  962. libgnunettransport.la \
  963. $(top_builddir)/src/hello/libgnunethello.la \
  964. $(top_builddir)/src/ats/libgnunetats.la \
  965. $(top_builddir)/src/nt/libgnunetnt.la \
  966. $(top_builddir)/src/util/libgnunetutil.la \
  967. libgnunettransporttesting.la
  968. test_quota_compliance_http_asymmetric_SOURCES = \
  969. test_quota_compliance.c
  970. test_quota_compliance_http_asymmetric_LDADD = \
  971. libgnunettransport.la \
  972. $(top_builddir)/src/hello/libgnunethello.la \
  973. $(top_builddir)/src/ats/libgnunetats.la \
  974. $(top_builddir)/src/nt/libgnunetnt.la \
  975. $(top_builddir)/src/util/libgnunetutil.la \
  976. libgnunettransporttesting.la
  977. test_quota_compliance_https_SOURCES = \
  978. test_quota_compliance.c
  979. test_quota_compliance_https_LDADD = \
  980. libgnunettransport.la \
  981. $(top_builddir)/src/hello/libgnunethello.la \
  982. $(top_builddir)/src/ats/libgnunetats.la \
  983. $(top_builddir)/src/nt/libgnunetnt.la \
  984. $(top_builddir)/src/util/libgnunetutil.la \
  985. libgnunettransporttesting.la
  986. test_quota_compliance_https_asymmetric_SOURCES = \
  987. test_quota_compliance.c
  988. test_quota_compliance_https_asymmetric_LDADD = \
  989. libgnunettransport.la \
  990. $(top_builddir)/src/hello/libgnunethello.la \
  991. $(top_builddir)/src/ats/libgnunetats.la \
  992. $(top_builddir)/src/nt/libgnunetnt.la \
  993. $(top_builddir)/src/util/libgnunetutil.la \
  994. libgnunettransporttesting.la
  995. # HTTPS tests
  996. test_transport_api_https_SOURCES = \
  997. test_transport_api.c
  998. test_transport_api_https_LDADD = \
  999. libgnunettransport.la \
  1000. $(top_builddir)/src/hello/libgnunethello.la \
  1001. $(top_builddir)/src/util/libgnunetutil.la \
  1002. libgnunettransporttesting.la
  1003. test_transport_api_timeout_https_SOURCES = \
  1004. test_transport_api_timeout.c
  1005. test_transport_api_timeout_https_LDADD = \
  1006. libgnunettransport.la \
  1007. $(top_builddir)/src/hello/libgnunethello.la \
  1008. $(top_builddir)/src/util/libgnunetutil.la \
  1009. libgnunettransporttesting.la
  1010. test_transport_api_reliability_https_SOURCES = \
  1011. test_transport_api_reliability.c
  1012. test_transport_api_reliability_https_LDADD = \
  1013. libgnunettransport.la \
  1014. $(top_builddir)/src/hello/libgnunethello.la \
  1015. $(top_builddir)/src/util/libgnunetutil.la \
  1016. libgnunettransporttesting.la
  1017. test_transport_api_reliability_https_xhr_SOURCES = \
  1018. test_transport_api_reliability.c
  1019. test_transport_api_reliability_https_xhr_LDADD = \
  1020. libgnunettransport.la \
  1021. $(top_builddir)/src/hello/libgnunethello.la \
  1022. $(top_builddir)/src/util/libgnunetutil.la \
  1023. libgnunettransporttesting.la
  1024. test_transport_api_reliability_unix_SOURCES = \
  1025. test_transport_api_reliability.c
  1026. test_transport_api_reliability_unix_LDADD = \
  1027. libgnunettransport.la \
  1028. $(top_builddir)/src/hello/libgnunethello.la \
  1029. $(top_builddir)/src/util/libgnunetutil.la \
  1030. libgnunettransporttesting.la
  1031. test_transport_api_reliability_udp_SOURCES = \
  1032. test_transport_api_reliability.c
  1033. test_transport_api_reliability_udp_LDADD = \
  1034. libgnunettransport.la \
  1035. $(top_builddir)/src/hello/libgnunethello.la \
  1036. $(top_builddir)/src/util/libgnunetutil.la \
  1037. libgnunettransporttesting.la
  1038. if LINUX
  1039. test_transport_api_wlan_SOURCES = \
  1040. test_transport_api.c
  1041. test_transport_api_wlan_LDADD = \
  1042. libgnunettransport.la \
  1043. $(top_builddir)/src/hello/libgnunethello.la \
  1044. $(top_builddir)/src/util/libgnunetutil.la \
  1045. libgnunettransporttesting.la
  1046. endif
  1047. if LINUX
  1048. if HAVE_LIBBLUETOOTH
  1049. test_transport_api_bluetooth_SOURCES = \
  1050. test_transport_api.c
  1051. test_transport_api_bluetooth_LDADD = \
  1052. libgnunettransport.la \
  1053. $(top_builddir)/src/hello/libgnunethello.la \
  1054. $(top_builddir)/src/util/libgnunetutil.la \
  1055. libgnunettransporttesting.la
  1056. endif
  1057. endif
  1058. test_transport_address_switch_tcp_SOURCES = \
  1059. test_transport_address_switch.c
  1060. test_transport_address_switch_tcp_LDADD = \
  1061. libgnunettransport.la \
  1062. $(top_builddir)/src/hello/libgnunethello.la \
  1063. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  1064. $(top_builddir)/src/util/libgnunetutil.la \
  1065. libgnunettransporttesting.la
  1066. test_transport_address_switch_udp_SOURCES = \
  1067. test_transport_address_switch.c
  1068. test_transport_address_switch_udp_LDADD = \
  1069. libgnunettransport.la \
  1070. $(top_builddir)/src/hello/libgnunethello.la \
  1071. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  1072. $(top_builddir)/src/util/libgnunetutil.la \
  1073. libgnunettransporttesting.la
  1074. test_transport_address_switch_http_SOURCES = \
  1075. test_transport_address_switch.c
  1076. test_transport_address_switch_http_LDADD = \
  1077. libgnunettransport.la \
  1078. $(top_builddir)/src/hello/libgnunethello.la \
  1079. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  1080. $(top_builddir)/src/util/libgnunetutil.la \
  1081. libgnunettransporttesting.la
  1082. test_transport_address_switch_https_SOURCES = \
  1083. test_transport_address_switch.c
  1084. test_transport_address_switch_https_LDADD = \
  1085. libgnunettransport.la \
  1086. $(top_builddir)/src/hello/libgnunethello.la \
  1087. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  1088. $(top_builddir)/src/util/libgnunetutil.la \
  1089. libgnunettransporttesting.la
  1090. test_quota_compliance_tcp_SOURCES = \
  1091. test_quota_compliance.c
  1092. test_quota_compliance_tcp_LDADD = \
  1093. libgnunettransport.la \
  1094. $(top_builddir)/src/hello/libgnunethello.la \
  1095. $(top_builddir)/src/ats/libgnunetats.la \
  1096. $(top_builddir)/src/nt/libgnunetnt.la \
  1097. $(top_builddir)/src/util/libgnunetutil.la \
  1098. libgnunettransporttesting.la
  1099. test_quota_compliance_tcp_asymmetric_SOURCES = \
  1100. test_quota_compliance.c
  1101. test_quota_compliance_tcp_asymmetric_LDADD = \
  1102. libgnunettransport.la \
  1103. $(top_builddir)/src/hello/libgnunethello.la \
  1104. $(top_builddir)/src/nt/libgnunetnt.la \
  1105. $(top_builddir)/src/ats/libgnunetats.la \
  1106. $(top_builddir)/src/util/libgnunetutil.la \
  1107. libgnunettransporttesting.la
  1108. test_quota_compliance_udp_SOURCES = \
  1109. test_quota_compliance.c
  1110. test_quota_compliance_udp_LDADD = \
  1111. libgnunettransport.la \
  1112. $(top_builddir)/src/hello/libgnunethello.la \
  1113. $(top_builddir)/src/ats/libgnunetats.la \
  1114. $(top_builddir)/src/nt/libgnunetnt.la \
  1115. $(top_builddir)/src/util/libgnunetutil.la \
  1116. libgnunettransporttesting.la
  1117. test_quota_compliance_unix_SOURCES = \
  1118. test_quota_compliance.c
  1119. test_quota_compliance_unix_LDADD = \
  1120. libgnunettransport.la \
  1121. $(top_builddir)/src/hello/libgnunethello.la \
  1122. $(top_builddir)/src/ats/libgnunetats.la \
  1123. $(top_builddir)/src/nt/libgnunetnt.la \
  1124. $(top_builddir)/src/util/libgnunetutil.la \
  1125. libgnunettransporttesting.la
  1126. test_quota_compliance_unix_asymmetric_SOURCES = \
  1127. test_quota_compliance.c
  1128. test_quota_compliance_unix_asymmetric_LDADD = \
  1129. libgnunettransport.la \
  1130. $(top_builddir)/src/hello/libgnunethello.la \
  1131. $(top_builddir)/src/ats/libgnunetats.la \
  1132. $(top_builddir)/src/nt/libgnunetnt.la \
  1133. $(top_builddir)/src/util/libgnunetutil.la \
  1134. libgnunettransporttesting.la
  1135. test_quota_compliance_wlan_SOURCES = \
  1136. test_quota_compliance.c
  1137. test_quota_compliance_wlan_LDADD = \
  1138. libgnunettransport.la \
  1139. $(top_builddir)/src/hello/libgnunethello.la \
  1140. $(top_builddir)/src/ats/libgnunetats.la \
  1141. $(top_builddir)/src/nt/libgnunetnt.la \
  1142. $(top_builddir)/src/util/libgnunetutil.la \
  1143. libgnunettransporttesting.la
  1144. test_quota_compliance_wlan_asymmetric_SOURCES = \
  1145. test_quota_compliance.c
  1146. test_quota_compliance_wlan_asymmetric_LDADD = \
  1147. libgnunettransport.la \
  1148. $(top_builddir)/src/hello/libgnunethello.la \
  1149. $(top_builddir)/src/ats/libgnunetats.la \
  1150. $(top_builddir)/src/nt/libgnunetnt.la \
  1151. $(top_builddir)/src/util/libgnunetutil.la \
  1152. libgnunettransporttesting.la
  1153. test_quota_compliance_bluetooth_SOURCES = \
  1154. test_quota_compliance.c
  1155. test_quota_compliance_bluetooth_LDADD = \
  1156. libgnunettransport.la \
  1157. $(top_builddir)/src/hello/libgnunethello.la \
  1158. $(top_builddir)/src/ats/libgnunetats.la \
  1159. $(top_builddir)/src/nt/libgnunetnt.la \
  1160. $(top_builddir)/src/util/libgnunetutil.la \
  1161. libgnunettransporttesting.la
  1162. test_quota_compliance_bluetooth_asymmetric_SOURCES = \
  1163. test_quota_compliance.c
  1164. test_quota_compliance_bluetooth_asymmetric_LDADD = \
  1165. libgnunettransport.la \
  1166. $(top_builddir)/src/hello/libgnunethello.la \
  1167. $(top_builddir)/src/ats/libgnunetats.la \
  1168. $(top_builddir)/src/nt/libgnunetnt.la \
  1169. $(top_builddir)/src/util/libgnunetutil.la \
  1170. libgnunettransporttesting.la
  1171. test_transport_api_multi_SOURCES = \
  1172. test_transport_api.c
  1173. test_transport_api_multi_LDADD = \
  1174. libgnunettransport.la \
  1175. $(top_builddir)/src/hello/libgnunethello.la \
  1176. $(top_builddir)/src/util/libgnunetutil.la \
  1177. libgnunettransporttesting.la
  1178. test_transport_api_monitor_peers_SOURCES = \
  1179. test_transport_api_monitor_peers.c
  1180. test_transport_api_monitor_peers_LDADD = \
  1181. libgnunettransport.la \
  1182. $(top_builddir)/src/hello/libgnunethello.la \
  1183. $(top_builddir)/src/util/libgnunetutil.la \
  1184. libgnunettransporttesting.la
  1185. test_transport_api_slow_ats_SOURCES = \
  1186. test_transport_api.c
  1187. test_transport_api_slow_ats_LDADD = \
  1188. libgnunettransport.la \
  1189. $(top_builddir)/src/hello/libgnunethello.la \
  1190. $(top_builddir)/src/util/libgnunetutil.la \
  1191. libgnunettransporttesting.la
  1192. EXTRA_DIST = \
  1193. communicator-unix.conf \
  1194. test_plugin_hostkey \
  1195. test_plugin_hostkey.ecc \
  1196. test_delay \
  1197. template_cfg_peer1.conf\
  1198. template_cfg_peer2.conf\
  1199. test_plugin_transport_data.conf\
  1200. test_plugin_transport_data_udp.conf\
  1201. test_quota_compliance_data.conf\
  1202. test_quota_compliance_http_peer1.conf\
  1203. test_quota_compliance_http_peer2.conf\
  1204. test_quota_compliance_https_peer1.conf\
  1205. test_quota_compliance_https_peer2.conf\
  1206. test_quota_compliance_tcp_peer1.conf\
  1207. test_quota_compliance_tcp_peer2.conf\
  1208. test_quota_compliance_udp_peer1.conf\
  1209. test_quota_compliance_udp_peer2.conf\
  1210. test_quota_compliance_unix_peer1.conf\
  1211. test_quota_compliance_unix_peer2.conf\
  1212. test_quota_compliance_wlan_peer1.conf\
  1213. test_quota_compliance_wlan_peer2.conf\
  1214. test_quota_compliance_bluetooth_peer1.conf\
  1215. test_quota_compliance_bluetooth_peer2.conf\
  1216. test_quota_compliance_http_asymmetric_peer1.conf\
  1217. test_quota_compliance_http_asymmetric_peer2.conf\
  1218. test_quota_compliance_https_asymmetric_peer1.conf\
  1219. test_quota_compliance_https_asymmetric_peer2.conf\
  1220. test_quota_compliance_tcp_asymmetric_peer1.conf\
  1221. test_quota_compliance_tcp_asymmetric_peer2.conf\
  1222. test_quota_compliance_unix_asymmetric_peer1.conf\
  1223. test_quota_compliance_unix_asymmetric_peer2.conf\
  1224. test_quota_compliance_wlan_asymmetric_peer1.conf\
  1225. test_quota_compliance_wlan_asymmetric_peer2.conf\
  1226. test_quota_compliance_bluetooth_asymmetric_peer1.conf\
  1227. test_quota_compliance_bluetooth_asymmetric_peer2.conf\
  1228. test_transport_api_data.conf\
  1229. test_transport_api_blacklisting_tcp_peer1.conf \
  1230. test_transport_api_blacklisting_tcp_peer2.conf \
  1231. test_transport_api_http_peer1.conf\
  1232. test_transport_api_http_peer2.conf\
  1233. test_transport_api_https_peer1.conf\
  1234. test_transport_api_https_peer2.conf\
  1235. test_transport_api_limited_sockets_tcp_peer1.conf\
  1236. test_transport_api_limited_sockets_tcp_peer2.conf\
  1237. test_transport_api_timeout_tcp_peer1.conf\
  1238. test_transport_api_timeout_tcp_peer2.conf\
  1239. test_transport_api_multi_peer1.conf\
  1240. test_transport_api_multi_peer2.conf\
  1241. test_transport_api_restart_1peer_peer1.conf\
  1242. test_transport_api_restart_1peer_peer2.conf\
  1243. test_transport_api_reliability_http_peer1.conf\
  1244. test_transport_api_reliability_http_peer2.conf\
  1245. test_transport_api_reliability_https_peer1.conf\
  1246. test_transport_api_reliability_https_peer2.conf\
  1247. test_transport_api_reliability_tcp_nat_peer1.conf\
  1248. test_transport_api_reliability_tcp_nat_peer2.conf\
  1249. test_transport_api_reliability_tcp_peer1.conf\
  1250. test_transport_api_reliability_tcp_peer2.conf\
  1251. test_transport_api_reliability_wlan_peer1.conf\
  1252. test_transport_api_reliability_wlan_peer2.conf\
  1253. test_transport_api_reliability_bluetooth_peer1.conf\
  1254. test_transport_api_reliability_bluetooth_peer2.conf\
  1255. test_transport_api_manipulation_send_tcp_peer1.conf\
  1256. test_transport_api_manipulation_send_tcp_peer2.conf\
  1257. test_transport_api_manipulation_recv_tcp_peer1.conf\
  1258. test_transport_api_manipulation_recv_tcp_peer2.conf\
  1259. test_transport_api_manipulation_cfg_peer1.conf\
  1260. test_transport_api_manipulation_cfg_peer2.conf\
  1261. test_transport_api_restart_1peer_peer1.conf\
  1262. test_transport_api_restart_1peer_peer2.conf\
  1263. test_transport_api_restart_2peers_peer1.conf\
  1264. test_transport_api_restart_2peers_peer2.conf\
  1265. test_transport_api_tcp_nat_peer1.conf\
  1266. test_transport_api_tcp_nat_peer2.conf\
  1267. test_transport_api_tcp_peer1.conf\
  1268. test_transport_api_tcp_peer2.conf\
  1269. test_transport_api_udp_nat_peer1.conf\
  1270. test_transport_api_udp_nat_peer2.conf\
  1271. test_transport_api_udp_peer1.conf\
  1272. test_transport_api_udp_peer2.conf\
  1273. test_transport_api_timeout_udp_peer1.conf\
  1274. test_transport_api_timeout_udp_peer2.conf\
  1275. test_transport_api_unix_peer1.conf\
  1276. test_transport_api_unix_peer2.conf\
  1277. test_transport_api_unix_abstract_peer1.conf \
  1278. test_transport_api_unix_abstract_peer2.conf \
  1279. test_transport_api_timeout_unix_peer1.conf\
  1280. test_transport_api_timeout_unix_peer2.conf\
  1281. test_transport_api_timeout_wlan_peer1.conf \
  1282. test_transport_api_timeout_wlan_peer2.conf \
  1283. test_transport_api_timeout_bluetooth_peer1.conf\
  1284. test_transport_api_timeout_bluetooth_peer2.conf\
  1285. test_transport_api_reliability_udp_peer1.conf\
  1286. test_transport_api_reliability_udp_peer2.conf\
  1287. test_transport_api_reliability_http_xhr_peer1.conf\
  1288. test_transport_api_reliability_http_xhr_peer2.conf\
  1289. test_transport_api_reliability_https_xhr_peer1.conf\
  1290. test_transport_api_reliability_https_xhr_peer2.conf\
  1291. test_transport_api_reliability_unix_peer1.conf\
  1292. test_transport_api_reliability_unix_peer2.conf\
  1293. test_transport_api_reliability_wlan_peer1.conf\
  1294. test_transport_api_reliability_wlan_peer2.conf\
  1295. test_transport_api_unreliability_wlan_peer1.conf\
  1296. test_transport_api_unreliability_wlan_peer2.conf\
  1297. test_transport_api_reliability_bluetooth_peer1.conf\
  1298. test_transport_api_reliability_bluetooth_peer2.conf\
  1299. test_transport_api_wlan_peer1.conf\
  1300. test_transport_api_wlan_peer2.conf\
  1301. test_transport_api_bluetooth_peer1.conf\
  1302. test_transport_api_bluetooth_peer2.conf\
  1303. test_transport_api_monitor_peers_peer1.conf\
  1304. test_transport_api_monitor_peers_peer2.conf\
  1305. test_transport_api_monitor_validation_peer1.conf\
  1306. test_transport_api_monitor_validation_peer2.conf\
  1307. test_transport_defaults.conf\
  1308. test_transport_api_disconnect_tcp_peer1.conf\
  1309. test_transport_api_disconnect_tcp_peer2.conf\
  1310. test_transport_api_timeout_http_peer1.conf\
  1311. test_transport_api_timeout_http_peer2.conf\
  1312. test_transport_api_timeout_https_peer1.conf\
  1313. test_transport_api_timeout_https_peer2.conf\
  1314. test_transport_blacklisting_cfg_peer1.conf \
  1315. test_transport_blacklisting_cfg_peer2.conf \
  1316. test_transport_blacklisting_cfg_blp_peer1_full.conf\
  1317. test_transport_blacklisting_cfg_blp_peer1_plugin.conf \
  1318. test_transport_blacklisting_cfg_blp_peer2_full.conf\
  1319. test_transport_blacklisting_cfg_blp_peer2_plugin.conf \
  1320. test_transport_blacklisting_cfg_blp_peer1_multiple_plugins.conf \
  1321. test_transport_blacklisting_cfg_blp_peer2_multiple_plugins.conf \
  1322. test_transport_api_http_reverse_peer1.conf \
  1323. test_transport_api_http_reverse_peer2.conf \
  1324. perf_tcp_peer1.conf \
  1325. perf_tcp_peer2.conf \
  1326. test_transport_api_slow_ats_peer1.conf \
  1327. test_transport_api_slow_ats_peer2.conf \
  1328. tcp_connection_legacy.c \
  1329. tcp_server_mst_legacy.c \
  1330. tcp_server_legacy.c \
  1331. tcp_service_legacy.c