aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/include/gnunet_crypto_lib.h5
-rw-r--r--src/transport/Makefile.am12
2 files changed, 12 insertions, 5 deletions
diff --git a/src/include/gnunet_crypto_lib.h b/src/include/gnunet_crypto_lib.h
index 334dab156..1ebcfec97 100644
--- a/src/include/gnunet_crypto_lib.h
+++ b/src/include/gnunet_crypto_lib.h
@@ -708,8 +708,9 @@ GNUNET_CRYPTO_hmac (const struct GNUNET_CRYPTO_AuthKey *key,
708 * @param cls closure 708 * @param cls closure
709 * @param res resulting hash, NULL on error 709 * @param res resulting hash, NULL on error
710 */ 710 */
711typedef void (*GNUNET_CRYPTO_HashCompletedCallback) (void *cls, 711typedef void
712 const struct GNUNET_HashCode *res); 712(*GNUNET_CRYPTO_HashCompletedCallback) (void *cls,
713 const struct GNUNET_HashCode *res);
713 714
714 715
715/** 716/**
diff --git a/src/transport/Makefile.am b/src/transport/Makefile.am
index f7f6a9370..42432a403 100644
--- a/src/transport/Makefile.am
+++ b/src/transport/Makefile.am
@@ -489,8 +489,11 @@ check_PROGRAMS = \
489 $(HTTP_QUOTA_TEST) \ 489 $(HTTP_QUOTA_TEST) \
490 $(HTTPS_QUOTA_TEST) \ 490 $(HTTPS_QUOTA_TEST) \
491 $(WLAN_QUOTA_TEST) \ 491 $(WLAN_QUOTA_TEST) \
492 $(BT_QUOTA_TEST) \ 492 $(BT_QUOTA_TEST)
493 test_transport_api_slow_ats 493if HAVE_GETOPT_BINARY
494check_PROGRAMS += \
495test_transport_api_slow_ats
496endif
494endif 497endif
495 498
496if ENABLE_TEST_RUN 499if ENABLE_TEST_RUN
@@ -549,7 +552,6 @@ TESTS = \
549 $(UNIX_QUOTA_TEST) \ 552 $(UNIX_QUOTA_TEST) \
550 $(HTTP_QUOTA_TEST) \ 553 $(HTTP_QUOTA_TEST) \
551 $(HTTPS_QUOTA_TEST) \ 554 $(HTTPS_QUOTA_TEST) \
552 test_transport_api_slow_ats \
553 test_transport_api_timeout_tcp \ 555 test_transport_api_timeout_tcp \
554 test_transport_api_timeout_udp \ 556 test_transport_api_timeout_udp \
555 $(UNIX_PLUGIN_TIMEOUT_TEST) \ 557 $(UNIX_PLUGIN_TIMEOUT_TEST) \
@@ -561,6 +563,10 @@ TESTS = \
561 test_transport_address_switch_udp \ 563 test_transport_address_switch_udp \
562 $(HTTP_SWITCH) \ 564 $(HTTP_SWITCH) \
563 $(HTTPS_SWITCH) 565 $(HTTPS_SWITCH)
566if HAVE_GETOPT_BINARY
567TESTS += \
568test_transport_api_slow_ats
569endif
564endif 570endif
565 571
566test_transport_testing_startstop_SOURCES = \ 572test_transport_testing_startstop_SOURCES = \