Makefile.am 52 KB

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