From 321c6b87981c455809251d567fe23476f0ad7e71 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Mon, 13 May 2019 09:51:18 +0200 Subject: use AS_CASE/AS_IF --- configure.ac | 190 ++++++++++++++++++++++----------------------------------- po/POTFILES.in | 116 +++++++++++++++++------------------ 2 files changed, 130 insertions(+), 176 deletions(-) diff --git a/configure.ac b/configure.ac index d90598cfc..815c015f3 100644 --- a/configure.ac +++ b/configure.ac @@ -28,13 +28,9 @@ AC_CONFIG_AUX_DIR([build-aux]) AC_ARG_WITH(nssdir, [ --with-nssdir=DIR legacy switch, no longer supported, do not use], [AC_MSG_RESULT([$with_nssdir]) - case $with_nssdir in - no) - ;; - *) - AC_MSG_ERROR([--with-nssdir is no longer supported]) - ;; - esac + AS_CASE([$with_nssdir], + [no],[], + [AC_MSG_ERROR([--with-nssdir is no longer supported])]) ]) AC_CANONICAL_TARGET @@ -64,10 +60,8 @@ AC_FUNC_FSEEKO CFLAGS="-Wall $CFLAGS" # use '-fno-strict-aliasing', but only if the compiler can take it -if gcc -fno-strict-aliasing -S -o /dev/null -xc /dev/null >/dev/null 2>&1; -then - CFLAGS="-fno-strict-aliasing $CFLAGS" -fi +AS_IF([gcc -fno-strict-aliasing -S -o /dev/null -xc /dev/null >/dev/null 2>&1], + [CFLAGS="-fno-strict-aliasing $CFLAGS"]) # Use Linux interface name unless the OS has a different preference DEFAULT_INTERFACE="\"eth0\"" @@ -243,86 +237,56 @@ AC_SUBST([PERL]) # iptables is a soft requirement to run tests AC_PATH_TARGET_TOOL(VAR_IPTABLES_BINARY, iptables, false) -if test x"$VAR_IPTABLES_BINARY" = x"false" -then - if test -x "/sbin/iptables" - then - VAR_IPTABLES_BINARY="/sbin/iptables" - elif test -x "/usr/sbin/iptables" - then - VAR_IPTABLES_BINARY="/usr/sbin/iptables" - fi -fi +AS_IF([test x"$VAR_IPTABLES_BINARY" = x"false"], + [AS_IF([test -x "/sbin/iptables"], + [VAR_IPTABLES_BINARY="/sbin/iptables"], + [AS_IF([test -x "/usr/sbin/iptables"], + [VAR_IPTABLES_BINARY="/usr/sbin/iptables"])])]) -if test x"$VAR_IPTABLES_BINARY" != x"false" -then -AC_DEFINE_UNQUOTED([IPTABLES], "$VAR_IPTABLES_BINARY", [Path to iptables]) -else -AC_MSG_WARN([warning: 'iptables' not found.]) -fi +AS_IF([test x"$VAR_IPTABLES_BINARY" != x"false"], + [AC_DEFINE_UNQUOTED([IPTABLES], "$VAR_IPTABLES_BINARY", [Path to iptables])], + [AC_MSG_WARN([warning: 'iptables' not found.])]) # ip6tables is a soft requirement for some features AC_PATH_TARGET_TOOL(VAR_IP6TABLES_BINARY, ip6tables, false) -if test x"$VAR_IP6TABLES_BINARY" = x"false" -then - if test -x "/sbin/ip6tables" - then - VAR_IP6TABLES_BINARY="/sbin/ip6tables" - elif test -x "/usr/sbin/ip6tables" - then - VAR_IP6TABLES_BINARY="/usr/sbin/ip6tables" - fi -fi +AS_IF([test x"$VAR_IP6TABLES_BINARY" = x"false"], + [AS_IF([test -x "/sbin/ip6tables"], + [VAR_IP6TABLES_BINARY="/sbin/ip6tables"], + [AS_IF([test -x "/usr/sbin/ip6tables"], + [VAR_IP6TABLES_BINARY="/usr/sbin/ip6tables"])])]) + -if test x"$VAR_IP6TABLES_BINARY" != x"false" -then -AC_DEFINE_UNQUOTED([IP6TABLES], "$VAR_IP6TABLES_BINARY", [Path to ip6tables]) -else -AC_MSG_WARN([warning: 'ip6tables' not found.]) -fi +AS_IF([test x"$VAR_IP6TABLES_BINARY" != x"false"], + [AC_DEFINE_UNQUOTED([IP6TABLES], "$VAR_IP6TABLES_BINARY", [Path to ip6tables])], + [AC_MSG_WARN([warning: 'ip6tables' not found.])]) # ip is a soft requirement for some features AC_PATH_TARGET_TOOL(VAR_IP_BINARY, ip, false) -if test x"$VAR_IP_BINARY" = x"false" -then - if test -x "/sbin/ip" - then - VAR_IP_BINARY="/sbin/ip" - elif test -x "/usr/sbin/ip" - then - VAR_IP_BINARY="/usr/sbin/ip" - fi -fi +AS_IF([test x"$VAR_IP_BINARY" = x"false"], + [AS_IF([test -x "/sbin/ip"], + [VAR_IP_BINARY="/sbin/ip"], + [AS_IF([test -x "/usr/sbin/ip"], + [VAR_IP_BINARY="/usr/sbin/ip"])])]) -if test x"$VAR_IP_BINARY" != x"false" -then -AC_DEFINE_UNQUOTED([PATH_TO_IP], "$VAR_IP_BINARY", [Path to ip]) -else -AC_MSG_WARN([warning: 'ip' not found.]) -fi +AS_IF([test x"$VAR_IP_BINARY" != x"false"], + [AC_DEFINE_UNQUOTED([PATH_TO_IP], "$VAR_IP_BINARY", [Path to ip])], + [AC_MSG_WARN([warning: 'ip' not found.])]) # locate 'ifconfig' AC_PATH_TARGET_TOOL(VAR_IFCONFIG_BINARY, ifconfig, false) AC_CHECK_PROG(VAR_IFCONFIG_BINARY, ifconfig, true, false) -if test x"$VAR_IFCONFIG_BINARY" = x"false" -then - if test -x "/sbin/ifconfig" - then - VAR_IFCONFIG_BINARY="/sbin/ifconfig" - elif test -x "/usr/sbin/ifconfig" - then - VAR_IFCONFIG_BINARY="/usr/sbin/ifconfig" - fi -fi -if test x"$VAR_IFCONFIG_BINARY" != x"false" -then -AC_DEFINE_UNQUOTED([IFCONFIG], "$VAR_IFCONFIG_BINARY", [Path to ifconfig]) -else -AC_MSG_WARN(['ifconfig' not found.]) -fi +AS_IF([test x"$VAR_IFCONFIG_BINARY" = x"false"], + [AS_IF([test -x "/sbin/ifconfig"], + [VAR_IFCONFIG_BINARY="/sbin/ifconfig"], + [AS_IF([test -x "/usr/sbin/ifconfig"], + [VAR_IFCONFIG_BINARY="/usr/sbin/ifconfig"])])]) + +AS_IF([test x"$VAR_IFCONFIG_BINARY" != x"false"], + [AC_DEFINE_UNQUOTED([IFCONFIG], "$VAR_IFCONFIG_BINARY", [Path to ifconfig])], + [AC_MSG_WARN(['ifconfig' not found.])]) AC_PATH_TARGET_TOOL(VAR_SYSCTL_BINARY, sysctl, false) @@ -340,12 +304,9 @@ AS_IF([test x"$VAR_SYSCTL_BINARY" != x"false"], # miniupnpc / upnpc binary is a soft runtime requirement AC_PATH_TARGET_TOOL(VAR_UPNPC_BINARY, upnpc, false) -if test x"$VAR_UPNPC_BINARY" != x"false" -then -AC_DEFINE_UNQUOTED([UPNPC], "$VAR_UPNPC_BINARY", [Path to upnpc binary]) -else -AC_MSG_WARN([warning: 'upnpc' binary not found.]) -fi +AS_IF([test x"$VAR_UPNPC_BINARY" != x"false"], + [AC_DEFINE_UNQUOTED([UPNPC], "$VAR_UPNPC_BINARY", [Path to upnpc binary])], + [AC_MSG_WARN([warning: 'upnpc' binary not found.])]) AC_CHECK_MEMBER(struct tm.tm_gmtoff, [AC_DEFINE(HAVE_TM_GMTOFF, 1, @@ -366,11 +327,9 @@ AM_CONDITIONAL(HAVE_GETADDRINFO_A, [test "$have_addrinfo_a" = 1]) # tests only run on Windows -if test "x$build_target" = "xmingw" -then - AC_CHECK_LIB(plibc, plibc_init, [], [AC_MSG_ERROR([GNUnet requires PlibC on Windows])]) - AC_CHECK_LIB(gnurx, regexec, [], [AC_MSG_ERROR([GNUnet requires libgnurx on Windows])]) -fi +AS_IF([test "x$build_target" = "xmingw"], + [AC_CHECK_LIB(plibc, plibc_init, [], [AC_MSG_ERROR([GNUnet requires PlibC on Windows])]) + AC_CHECK_LIB(gnurx, regexec, [], [AC_MSG_ERROR([GNUnet requires libgnurx on Windows])])]) # libgcrypt gcrypt=0 @@ -381,8 +340,8 @@ NEED_LIBGCRYPT_VERSION=1.6.0 AM_PATH_LIBGCRYPT("$NEED_LIBGCRYPT_API:$NEED_LIBGCRYPT_VERSION", gcrypt=1) AC_CHECK_DECLS([gcry_mpi_set_opaque_copy], [], [], [[#include ]]) -if test $gcrypt = 0 -then +AS_IF([test $gcrypt = 0], + [ AC_MSG_ERROR([[ *** *** You need libgcrypt to build this program. @@ -391,7 +350,7 @@ then *** (at least version $NEED_LIBGCRYPT_VERSION (API $NEED_LIBGCRYPT_API) *** is required.) ***]]) -fi +]) AC_DEFINE_UNQUOTED([NEED_LIBGCRYPT_VERSION], "$NEED_LIBGCRYPT_VERSION", [required libgcrypt version]) AC_CHECK_DECLS([struct in6_ifreq], [], [], [[#include ]]) @@ -405,14 +364,14 @@ AC_ARG_ENABLE([documentation], [documentation=${enableval}], [documentation=yes]) AC_MSG_RESULT($documentation) -if test "x$documentation" = "xyes" -then +AS_IF([test "x$documentation" = "xyes"], +[ AM_CONDITIONAL([DOCUMENTATION],true) AC_DEFINE([DOCUMENTATION],[1],[Building the documentation]) -else +],[ AM_CONDITIONAL([DOCUMENTATION],false) AC_DEFINE([DOCUMENTATION],[0],[Not building the documentation]) -fi +]) # FIXME: Something is wrong about this in the output of ./configure runs AC_MSG_CHECKING(wether to include generated texi2mdoc output in installation) @@ -444,14 +403,14 @@ AC_ARG_ENABLE([documentation-only], [documentation_only=${enableval}], [documentation_only=no]) AC_MSG_RESULT($documentation_only) -if test "x$documentation_only" = "xyes" -then +AS_IF([test "x$documentation_only" = "xyes"], + [ AM_CONDITIONAL([DOCUMENTATION_ONLY],true) AC_DEFINE([DOCUMENTATION_ONLY],[1],[Building only the documentation]) -else + ],[ AM_CONDITIONAL([DOCUMENTATION_ONLY],false) AC_DEFINE([DOCUMENTATION_ONLY],[0],[Not building only the documentation]) -fi + ]) # should the build process be including the manpages? (default: yes) AC_MSG_CHECKING(whether to include man pages) @@ -460,40 +419,39 @@ AC_ARG_ENABLE([include-manpages], [include_manpages=${enableval}], [include_manpages=yes]) AC_MSG_RESULT($include_manpages) -if test "x$include_manpages" = "xyes" -then +AS_IF([test "x$include_manpages" = "xyes"], + [ AM_CONDITIONAL([INCLUDE_MANPAGES],true) AC_DEFINE([INCLUDE_MANPAGES],[1],[Including the man pages in the build and installation]) -else + ],[ AM_CONDITIONAL([INCLUDE_MANPAGES],false) AC_DEFINE([INCLUDE_MANPAGES],[0],[Not including the man pages in the build and installation]) -fi + ]) # Adam shostack suggests the following for Windows: # -D_FORTIFY_SOURCE=2 -fstack-protector-all AC_ARG_ENABLE(gcc-hardening, AS_HELP_STRING(--enable-gcc-hardening, enable compiler security checks), -[if test x$enableval = xyes; then +[AS_IF([test x$enableval = xyes],[ CFLAGS="$CFLAGS -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-all" CFLAGS="$CFLAGS -fwrapv -fPIE -Wstack-protector" CFLAGS="$CFLAGS --param ssp-buffer-size=1" LDFLAGS="$LDFLAGS -pie" -fi]) + ])]) # Linker hardening options # Currently these options are ELF specific - you can't use this with MacOSX AC_ARG_ENABLE(linker-hardening, AS_HELP_STRING(--enable-linker-hardening, enable linker security fixups), -[if test x$enableval = xyes; then - LDFLAGS="$LDFLAGS -z relro -z now" -fi]) +[AS_IF([test x$enableval = xyes], + [LDFLAGS="$LDFLAGS -z relro -z now"])]) AC_ARG_ENABLE(sanitizer, AS_HELP_STRING(--enable-sanitizer, enable Address Sanitizer and Undefined Behavior Sanitizer), -[if test x$enableval = xyes; then +[AS_IF([test x$enableval = xyes],[ LDFLAGS="$CFLAGS -fsanitize=address,undefined -fno-omit-frame-pointer" -fi]) + ])]) extra_logging=GNUNET_NO @@ -512,18 +470,14 @@ AC_ARG_ENABLE([poisoning], [AS_HELP_STRING([--enable-poisoning], [enable poisoning of freed memory (good for debugging)])], [enable_poisoning=${enableval}], [ - if test "x$extra_logging" != "xGNUNET_NO"; then - enable_poisoning="defaults to yes (extra logging is enabled)" - else - enable_poisoning=no - fi + AS_IF([test "x$extra_logging" != "xGNUNET_NO"], + [enable_poisoning="defaults to yes (extra logging is enabled)"], + [enable_poisoning=no]) ]) AC_MSG_RESULT($enable_poisoning) -if test ! "x$enable_poisoning" = "xno"; then - enable_poisoning=1 -else - enable_poisoning=0 -fi +AS_IF([test ! "x$enable_poisoning" = "xno"], + [enable_poisoning=1], + [enable_poisoning=0]) AC_DEFINE_UNQUOTED([ENABLE_POISONING],[$enable_poisoning],[1 if freed memory should be poisoned, 0 otherwise]) if test $build = $target diff --git a/po/POTFILES.in b/po/POTFILES.in index 7b6741bf7..fe69ea13e 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -4,14 +4,6 @@ src/arm/arm_monitor_api.c src/arm/gnunet-arm.c src/arm/gnunet-service-arm.c src/arm/mockup-service.c -src/ats-tests/ats-testing-experiment.c -src/ats-tests/ats-testing-log.c -src/ats-tests/ats-testing-preferences.c -src/ats-tests/ats-testing-traffic.c -src/ats-tests/ats-testing.c -src/ats-tests/gnunet-ats-sim.c -src/ats-tests/gnunet-solver-eval.c -src/ats-tool/gnunet-ats.c src/ats/ats_api2_application.c src/ats/ats_api2_transport.c src/ats/ats_api_connectivity.c @@ -19,10 +11,10 @@ src/ats/ats_api_performance.c src/ats/ats_api_scanner.c src/ats/ats_api_scheduling.c src/ats/gnunet-ats-solver-eval.c -src/ats/gnunet-service-ats-new.c -src/ats/gnunet-service-ats.c src/ats/gnunet-service-ats_addresses.c +src/ats/gnunet-service-ats.c src/ats/gnunet-service-ats_connectivity.c +src/ats/gnunet-service-ats-new.c src/ats/gnunet-service-ats_normalization.c src/ats/gnunet-service-ats_performance.c src/ats/gnunet-service-ats_plugins.c @@ -34,6 +26,14 @@ src/ats/plugin_ats2_simple.c src/ats/plugin_ats_mlp.c src/ats/plugin_ats_proportional.c src/ats/plugin_ats_ril.c +src/ats-tests/ats-testing.c +src/ats-tests/ats-testing-experiment.c +src/ats-tests/ats-testing-log.c +src/ats-tests/ats-testing-preferences.c +src/ats-tests/ats-testing-traffic.c +src/ats-tests/gnunet-ats-sim.c +src/ats-tests/gnunet-solver-eval.c +src/ats-tool/gnunet-ats.c src/auction/gnunet-auction-create.c src/auction/gnunet-auction-info.c src/auction/gnunet-auction-join.c @@ -50,8 +50,8 @@ src/cadet/cadet_api_list_peers.c src/cadet/cadet_api_list_tunnels.c src/cadet/cadet_test_lib.c src/cadet/desirability_table.c -src/cadet/gnunet-cadet-profiler.c src/cadet/gnunet-cadet.c +src/cadet/gnunet-cadet-profiler.c src/cadet/gnunet-service-cadet.c src/cadet/gnunet-service-cadet_channel.c src/cadet/gnunet-service-cadet_connection.c @@ -67,15 +67,15 @@ src/consensus/gnunet-service-consensus.c src/consensus/plugin_block_consensus.c src/conversation/conversation_api.c src/conversation/conversation_api_call.c -src/conversation/gnunet-conversation-test.c src/conversation/gnunet-conversation.c -src/conversation/gnunet-helper-audio-playback-gst.c +src/conversation/gnunet-conversation-test.c +src/conversation/gnunet_gst.c +src/conversation/gnunet_gst_test.c src/conversation/gnunet-helper-audio-playback.c -src/conversation/gnunet-helper-audio-record-gst.c +src/conversation/gnunet-helper-audio-playback-gst.c src/conversation/gnunet-helper-audio-record.c +src/conversation/gnunet-helper-audio-record-gst.c src/conversation/gnunet-service-conversation.c -src/conversation/gnunet_gst.c -src/conversation/gnunet_gst_test.c src/conversation/microphone.c src/conversation/plugin_gnsrecord_conversation.c src/conversation/speaker.c @@ -112,6 +112,7 @@ src/dht/dht_api.c src/dht/dht_test_lib.c src/dht/gnunet-dht-get.c src/dht/gnunet-dht-monitor.c +src/dht/gnunet_dht_profiler.c src/dht/gnunet-dht-put.c src/dht/gnunet-service-dht.c src/dht/gnunet-service-dht_clients.c @@ -120,7 +121,6 @@ src/dht/gnunet-service-dht_hello.c src/dht/gnunet-service-dht_neighbours.c src/dht/gnunet-service-dht_nse.c src/dht/gnunet-service-dht_routing.c -src/dht/gnunet_dht_profiler.c src/dht/plugin_block_dht.c src/dns/dns_api.c src/dns/gnunet-dns-monitor.c @@ -130,8 +130,8 @@ src/dns/gnunet-service-dns.c src/dns/gnunet-zonewalk.c src/dns/plugin_block_dns.c src/exit/gnunet-daemon-exit.c -src/exit/gnunet-helper-exit-windows.c src/exit/gnunet-helper-exit.c +src/exit/gnunet-helper-exit-windows.c src/fragmentation/defragmentation.c src/fragmentation/fragmentation.c src/fs/fs_api.c @@ -156,8 +156,8 @@ src/fs/gnunet-auto-share.c src/fs/gnunet-daemon-fsprofiler.c src/fs/gnunet-directory.c src/fs/gnunet-download.c -src/fs/gnunet-fs-profiler.c src/fs/gnunet-fs.c +src/fs/gnunet-fs-profiler.c src/fs/gnunet-helper-fs-publish.c src/fs/gnunet-publish.c src/fs/gnunet-search.c @@ -177,10 +177,10 @@ src/gns/gns_tld_api.c src/gns/gnunet-bcd.c src/gns/gnunet-dns2gns.c src/gns/gnunet-gns-benchmark.c +src/gns/gnunet-gns.c src/gns/gnunet-gns-helper-service-w32.c src/gns/gnunet-gns-import.c src/gns/gnunet-gns-proxy.c -src/gns/gnunet-gns.c src/gns/gnunet-service-gns.c src/gns/gnunet-service-gns_interceptor.c src/gns/gnunet-service-gns_resolver.c @@ -189,19 +189,19 @@ src/gns/nss/nss_gns_query.c src/gns/plugin_block_gns.c src/gns/plugin_gnsrecord_gns.c src/gns/plugin_rest_gns.c -src/gns/w32nsp-install.c -src/gns/w32nsp-resolve.c -src/gns/w32nsp-uninstall.c -src/gns/w32nsp.c src/gnsrecord/gnsrecord.c src/gnsrecord/gnsrecord_crypto.c src/gnsrecord/gnsrecord_misc.c src/gnsrecord/gnsrecord_serialization.c src/gnsrecord/plugin_gnsrecord_dns.c +src/gns/w32nsp.c +src/gns/w32nsp-install.c +src/gns/w32nsp-resolve.c +src/gns/w32nsp-uninstall.c src/hello/address.c src/hello/gnunet-hello.c -src/hello/hello-ng.c src/hello/hello.c +src/hello/hello-ng.c src/hostlist/gnunet-daemon-hostlist.c src/hostlist/gnunet-daemon-hostlist_client.c src/hostlist/gnunet-daemon-hostlist_server.c @@ -225,8 +225,8 @@ src/namecache/namecache_api.c src/namecache/plugin_namecache_flat.c src/namecache/plugin_namecache_postgres.c src/namecache/plugin_namecache_sqlite.c -src/namestore/gnunet-namestore-fcfsd.c src/namestore/gnunet-namestore.c +src/namestore/gnunet-namestore-fcfsd.c src/namestore/gnunet-service-namestore.c src/namestore/gnunet-zoneimport.c src/namestore/namestore_api.c @@ -242,10 +242,10 @@ src/nat-auto/gnunet-service-nat-auto.c src/nat-auto/gnunet-service-nat-auto_legacy.c src/nat-auto/nat_auto_api.c src/nat-auto/nat_auto_api_test.c -src/nat/gnunet-helper-nat-client-windows.c src/nat/gnunet-helper-nat-client.c -src/nat/gnunet-helper-nat-server-windows.c +src/nat/gnunet-helper-nat-client-windows.c src/nat/gnunet-helper-nat-server.c +src/nat/gnunet-helper-nat-server-windows.c src/nat/gnunet-nat.c src/nat/gnunet-service-nat.c src/nat/gnunet-service-nat_externalip.c @@ -254,17 +254,17 @@ src/nat/gnunet-service-nat_mini.c src/nat/gnunet-service-nat_stun.c src/nat/nat_api.c src/nat/nat_api_stun.c -src/nse/gnunet-nse-profiler.c src/nse/gnunet-nse.c +src/nse/gnunet-nse-profiler.c src/nse/gnunet-service-nse.c src/nse/nse_api.c src/nt/nt.c -src/peerinfo-tool/gnunet-peerinfo.c -src/peerinfo-tool/gnunet-peerinfo_plugins.c -src/peerinfo-tool/plugin_rest_peerinfo.c src/peerinfo/gnunet-service-peerinfo.c src/peerinfo/peerinfo_api.c src/peerinfo/peerinfo_api_notify.c +src/peerinfo-tool/gnunet-peerinfo.c +src/peerinfo-tool/gnunet-peerinfo_plugins.c +src/peerinfo-tool/plugin_rest_peerinfo.c src/peerstore/gnunet-peerstore.c src/peerstore/gnunet-service-peerstore.c src/peerstore/peerstore_api.c @@ -312,22 +312,22 @@ src/revocation/gnunet-revocation.c src/revocation/gnunet-service-revocation.c src/revocation/plugin_block_revocation.c src/revocation/revocation_api.c -src/rps/gnunet-rps-profiler.c src/rps/gnunet-rps.c +src/rps/gnunet-rps-profiler.c src/rps/gnunet-service-rps.c src/rps/gnunet-service-rps_custommap.c src/rps/gnunet-service-rps_sampler.c src/rps/gnunet-service-rps_sampler_elem.c src/rps/gnunet-service-rps_view.c +src/rps/rps_api.c src/rps/rps-sampler_client.c src/rps/rps-sampler_common.c src/rps/rps-test_util.c -src/rps/rps_api.c src/scalarproduct/gnunet-scalarproduct.c -src/scalarproduct/gnunet-service-scalarproduct-ecc_alice.c -src/scalarproduct/gnunet-service-scalarproduct-ecc_bob.c src/scalarproduct/gnunet-service-scalarproduct_alice.c src/scalarproduct/gnunet-service-scalarproduct_bob.c +src/scalarproduct/gnunet-service-scalarproduct-ecc_alice.c +src/scalarproduct/gnunet-service-scalarproduct-ecc_bob.c src/scalarproduct/scalarproduct_api.c src/secretsharing/gnunet-secretsharing-profiler.c src/secretsharing/gnunet-service-secretsharing.c @@ -353,16 +353,15 @@ src/statistics/gnunet-statistics.c src/statistics/statistics_api.c src/template/gnunet-service-template.c src/template/gnunet-template.c -src/testbed-logger/gnunet-service-testbed-logger.c -src/testbed-logger/testbed_logger_api.c src/testbed/generate-underlay-topology.c src/testbed/gnunet-daemon-latency-logger.c src/testbed/gnunet-daemon-testbed-blacklist.c src/testbed/gnunet-daemon-testbed-underlay.c src/testbed/gnunet-helper-testbed.c +src/testbed/gnunet_mpi_test.c src/testbed/gnunet-service-test-barriers.c -src/testbed/gnunet-service-testbed.c src/testbed/gnunet-service-testbed_barriers.c +src/testbed/gnunet-service-testbed.c src/testbed/gnunet-service-testbed_cache.c src/testbed/gnunet-service-testbed_connectionpool.c src/testbed/gnunet-service-testbed_cpustatus.c @@ -370,19 +369,20 @@ src/testbed/gnunet-service-testbed_links.c src/testbed/gnunet-service-testbed_meminfo.c src/testbed/gnunet-service-testbed_oc.c src/testbed/gnunet-service-testbed_peers.c -src/testbed/gnunet-testbed-profiler.c -src/testbed/gnunet_mpi_test.c src/testbed/gnunet_testbed_mpi_spawn.c -src/testbed/testbed_api.c +src/testbed/gnunet-testbed-profiler.c +src/testbed-logger/gnunet-service-testbed-logger.c +src/testbed-logger/testbed_logger_api.c src/testbed/testbed_api_barriers.c +src/testbed/testbed_api.c src/testbed/testbed_api_hosts.c src/testbed/testbed_api_operations.c src/testbed/testbed_api_peers.c src/testbed/testbed_api_sd.c src/testbed/testbed_api_services.c src/testbed/testbed_api_statistics.c -src/testbed/testbed_api_test.c src/testbed/testbed_api_testbed.c +src/testbed/testbed_api_test.c src/testbed/testbed_api_topology.c src/testbed/testbed_api_underlay.c src/testing/gnunet-testing.c @@ -394,41 +394,35 @@ src/transport/gnunet-communicator-tcp.c src/transport/gnunet-communicator-udp.c src/transport/gnunet-communicator-unix.c src/transport/gnunet-helper-transport-bluetooth.c -src/transport/gnunet-helper-transport-wlan-dummy.c src/transport/gnunet-helper-transport-wlan.c +src/transport/gnunet-helper-transport-wlan-dummy.c src/transport/gnunet-service-tng.c -src/transport/gnunet-service-transport.c src/transport/gnunet-service-transport_ats.c +src/transport/gnunet-service-transport.c src/transport/gnunet-service-transport_hello.c src/transport/gnunet-service-transport_manipulation.c src/transport/gnunet-service-transport_neighbours.c src/transport/gnunet-service-transport_plugins.c src/transport/gnunet-service-transport_validation.c +src/transport/gnunet-transport.c src/transport/gnunet-transport-certificate-creation.c src/transport/gnunet-transport-profiler.c src/transport/gnunet-transport-wlan-receiver.c src/transport/gnunet-transport-wlan-sender.c -src/transport/gnunet-transport.c src/transport/plugin_transport_http_client.c src/transport/plugin_transport_http_common.c src/transport/plugin_transport_http_server.c src/transport/plugin_transport_smtp.c src/transport/plugin_transport_tcp.c src/transport/plugin_transport_template.c -src/transport/plugin_transport_udp.c src/transport/plugin_transport_udp_broadcasting.c +src/transport/plugin_transport_udp.c src/transport/plugin_transport_unix.c src/transport/plugin_transport_wlan.c src/transport/tcp_connection_legacy.c src/transport/tcp_server_legacy.c src/transport/tcp_server_mst_legacy.c src/transport/tcp_service_legacy.c -src/transport/transport-testing-filenames.c -src/transport/transport-testing-loggers.c -src/transport/transport-testing-main.c -src/transport/transport-testing-send.c -src/transport/transport-testing.c -src/transport/transport-testing2.c src/transport/transport_api2_application.c src/transport/transport_api2_communication.c src/transport/transport_api2_core.c @@ -441,6 +435,12 @@ src/transport/transport_api_manipulation.c src/transport/transport_api_monitor_peers.c src/transport/transport_api_monitor_plugins.c src/transport/transport_api_offer_hello.c +src/transport/transport-testing2.c +src/transport/transport-testing.c +src/transport/transport-testing-filenames.c +src/transport/transport-testing-loggers.c +src/transport/transport-testing-main.c +src/transport/transport-testing-send.c src/util/bandwidth.c src/util/benchmark.c src/util/bio.c @@ -453,8 +453,8 @@ src/util/configuration_loader.c src/util/container_bloomfilter.c src/util/container_heap.c src/util/container_meta_data.c -src/util/container_multihashmap.c src/util/container_multihashmap32.c +src/util/container_multihashmap.c src/util/container_multipeermap.c src/util/container_multishortmap.c src/util/crypto_abe.c @@ -476,16 +476,16 @@ src/util/dnsparser.c src/util/dnsstub.c src/util/getopt.c src/util/getopt_helpers.c -src/util/gnunet-config-diff.c src/util/gnunet-config.c +src/util/gnunet-config-diff.c src/util/gnunet-ecc.c src/util/gnunet-helper-w32-console.c src/util/gnunet-qr.c src/util/gnunet-resolver.c src/util/gnunet-scrypt.c src/util/gnunet-service-resolver.c -src/util/gnunet-timeout-w32.c src/util/gnunet-timeout.c +src/util/gnunet-timeout-w32.c src/util/gnunet-uri.c src/util/helper.c src/util/load.c @@ -514,13 +514,13 @@ src/util/tun.c src/util/w32cat.c src/util/win.c src/util/winproc.c -src/vpn/gnunet-helper-vpn-windows.c src/vpn/gnunet-helper-vpn.c +src/vpn/gnunet-helper-vpn-windows.c src/vpn/gnunet-service-vpn.c src/vpn/gnunet-vpn.c src/vpn/vpn_api.c -src/zonemaster/gnunet-service-zonemaster-monitor.c src/zonemaster/gnunet-service-zonemaster.c +src/zonemaster/gnunet-service-zonemaster-monitor.c src/fs/fs_api.h src/include/compat.h src/include/gnunet_common.h -- cgit v1.2.3