aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2019-05-13 09:51:18 +0200
committerChristian Grothoff <christian@grothoff.org>2019-05-13 09:51:18 +0200
commit321c6b87981c455809251d567fe23476f0ad7e71 (patch)
treed10b943739f909d2af3b2893e8af8b3b3b2d57bd
parentd22f368443dabdca0de859f8e87b2be41d75ab1b (diff)
downloadgnunet-321c6b87981c455809251d567fe23476f0ad7e71.tar.gz
gnunet-321c6b87981c455809251d567fe23476f0ad7e71.zip
use AS_CASE/AS_IF
-rw-r--r--configure.ac190
-rw-r--r--po/POTFILES.in116
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])
28AC_ARG_WITH(nssdir, 28AC_ARG_WITH(nssdir,
29 [ --with-nssdir=DIR legacy switch, no longer supported, do not use], 29 [ --with-nssdir=DIR legacy switch, no longer supported, do not use],
30 [AC_MSG_RESULT([$with_nssdir]) 30 [AC_MSG_RESULT([$with_nssdir])
31 case $with_nssdir in 31 AS_CASE([$with_nssdir],
32 no) 32 [no],[],
33 ;; 33 [AC_MSG_ERROR([--with-nssdir is no longer supported])])
34 *)
35 AC_MSG_ERROR([--with-nssdir is no longer supported])
36 ;;
37 esac
38 ]) 34 ])
39 35
40AC_CANONICAL_TARGET 36AC_CANONICAL_TARGET
@@ -64,10 +60,8 @@ AC_FUNC_FSEEKO
64 60
65CFLAGS="-Wall $CFLAGS" 61CFLAGS="-Wall $CFLAGS"
66# use '-fno-strict-aliasing', but only if the compiler can take it 62# use '-fno-strict-aliasing', but only if the compiler can take it
67if gcc -fno-strict-aliasing -S -o /dev/null -xc /dev/null >/dev/null 2>&1; 63AS_IF([gcc -fno-strict-aliasing -S -o /dev/null -xc /dev/null >/dev/null 2>&1],
68then 64 [CFLAGS="-fno-strict-aliasing $CFLAGS"])
69 CFLAGS="-fno-strict-aliasing $CFLAGS"
70fi
71 65
72# Use Linux interface name unless the OS has a different preference 66# Use Linux interface name unless the OS has a different preference
73DEFAULT_INTERFACE="\"eth0\"" 67DEFAULT_INTERFACE="\"eth0\""
@@ -243,86 +237,56 @@ AC_SUBST([PERL])
243# iptables is a soft requirement to run tests 237# iptables is a soft requirement to run tests
244AC_PATH_TARGET_TOOL(VAR_IPTABLES_BINARY, iptables, false) 238AC_PATH_TARGET_TOOL(VAR_IPTABLES_BINARY, iptables, false)
245 239
246if test x"$VAR_IPTABLES_BINARY" = x"false" 240AS_IF([test x"$VAR_IPTABLES_BINARY" = x"false"],
247then 241 [AS_IF([test -x "/sbin/iptables"],
248 if test -x "/sbin/iptables" 242 [VAR_IPTABLES_BINARY="/sbin/iptables"],
249 then 243 [AS_IF([test -x "/usr/sbin/iptables"],
250 VAR_IPTABLES_BINARY="/sbin/iptables" 244 [VAR_IPTABLES_BINARY="/usr/sbin/iptables"])])])
251 elif test -x "/usr/sbin/iptables"
252 then
253 VAR_IPTABLES_BINARY="/usr/sbin/iptables"
254 fi
255fi
256 245
257if test x"$VAR_IPTABLES_BINARY" != x"false" 246AS_IF([test x"$VAR_IPTABLES_BINARY" != x"false"],
258then 247 [AC_DEFINE_UNQUOTED([IPTABLES], "$VAR_IPTABLES_BINARY", [Path to iptables])],
259AC_DEFINE_UNQUOTED([IPTABLES], "$VAR_IPTABLES_BINARY", [Path to iptables]) 248 [AC_MSG_WARN([warning: 'iptables' not found.])])
260else
261AC_MSG_WARN([warning: 'iptables' not found.])
262fi
263 249
264# ip6tables is a soft requirement for some features 250# ip6tables is a soft requirement for some features
265AC_PATH_TARGET_TOOL(VAR_IP6TABLES_BINARY, ip6tables, false) 251AC_PATH_TARGET_TOOL(VAR_IP6TABLES_BINARY, ip6tables, false)
266 252
267if test x"$VAR_IP6TABLES_BINARY" = x"false" 253AS_IF([test x"$VAR_IP6TABLES_BINARY" = x"false"],
268then 254 [AS_IF([test -x "/sbin/ip6tables"],
269 if test -x "/sbin/ip6tables" 255 [VAR_IP6TABLES_BINARY="/sbin/ip6tables"],
270 then 256 [AS_IF([test -x "/usr/sbin/ip6tables"],
271 VAR_IP6TABLES_BINARY="/sbin/ip6tables" 257 [VAR_IP6TABLES_BINARY="/usr/sbin/ip6tables"])])])
272 elif test -x "/usr/sbin/ip6tables" 258
273 then
274 VAR_IP6TABLES_BINARY="/usr/sbin/ip6tables"
275 fi
276fi
277 259
278if test x"$VAR_IP6TABLES_BINARY" != x"false" 260AS_IF([test x"$VAR_IP6TABLES_BINARY" != x"false"],
279then 261 [AC_DEFINE_UNQUOTED([IP6TABLES], "$VAR_IP6TABLES_BINARY", [Path to ip6tables])],
280AC_DEFINE_UNQUOTED([IP6TABLES], "$VAR_IP6TABLES_BINARY", [Path to ip6tables]) 262 [AC_MSG_WARN([warning: 'ip6tables' not found.])])
281else
282AC_MSG_WARN([warning: 'ip6tables' not found.])
283fi
284 263
285# ip is a soft requirement for some features 264# ip is a soft requirement for some features
286AC_PATH_TARGET_TOOL(VAR_IP_BINARY, ip, false) 265AC_PATH_TARGET_TOOL(VAR_IP_BINARY, ip, false)
287 266
288if test x"$VAR_IP_BINARY" = x"false" 267AS_IF([test x"$VAR_IP_BINARY" = x"false"],
289then 268 [AS_IF([test -x "/sbin/ip"],
290 if test -x "/sbin/ip" 269 [VAR_IP_BINARY="/sbin/ip"],
291 then 270 [AS_IF([test -x "/usr/sbin/ip"],
292 VAR_IP_BINARY="/sbin/ip" 271 [VAR_IP_BINARY="/usr/sbin/ip"])])])
293 elif test -x "/usr/sbin/ip"
294 then
295 VAR_IP_BINARY="/usr/sbin/ip"
296 fi
297fi
298 272
299if test x"$VAR_IP_BINARY" != x"false" 273AS_IF([test x"$VAR_IP_BINARY" != x"false"],
300then 274 [AC_DEFINE_UNQUOTED([PATH_TO_IP], "$VAR_IP_BINARY", [Path to ip])],
301AC_DEFINE_UNQUOTED([PATH_TO_IP], "$VAR_IP_BINARY", [Path to ip]) 275 [AC_MSG_WARN([warning: 'ip' not found.])])
302else
303AC_MSG_WARN([warning: 'ip' not found.])
304fi
305 276
306# locate 'ifconfig' 277# locate 'ifconfig'
307AC_PATH_TARGET_TOOL(VAR_IFCONFIG_BINARY, ifconfig, false) 278AC_PATH_TARGET_TOOL(VAR_IFCONFIG_BINARY, ifconfig, false)
308 279
309AC_CHECK_PROG(VAR_IFCONFIG_BINARY, ifconfig, true, false) 280AC_CHECK_PROG(VAR_IFCONFIG_BINARY, ifconfig, true, false)
310if test x"$VAR_IFCONFIG_BINARY" = x"false" 281AS_IF([test x"$VAR_IFCONFIG_BINARY" = x"false"],
311then 282 [AS_IF([test -x "/sbin/ifconfig"],
312 if test -x "/sbin/ifconfig" 283 [VAR_IFCONFIG_BINARY="/sbin/ifconfig"],
313 then 284 [AS_IF([test -x "/usr/sbin/ifconfig"],
314 VAR_IFCONFIG_BINARY="/sbin/ifconfig" 285 [VAR_IFCONFIG_BINARY="/usr/sbin/ifconfig"])])])
315 elif test -x "/usr/sbin/ifconfig" 286
316 then 287AS_IF([test x"$VAR_IFCONFIG_BINARY" != x"false"],
317 VAR_IFCONFIG_BINARY="/usr/sbin/ifconfig" 288 [AC_DEFINE_UNQUOTED([IFCONFIG], "$VAR_IFCONFIG_BINARY", [Path to ifconfig])],
318 fi 289 [AC_MSG_WARN(['ifconfig' not found.])])
319fi
320if test x"$VAR_IFCONFIG_BINARY" != x"false"
321then
322AC_DEFINE_UNQUOTED([IFCONFIG], "$VAR_IFCONFIG_BINARY", [Path to ifconfig])
323else
324AC_MSG_WARN(['ifconfig' not found.])
325fi
326 290
327 291
328AC_PATH_TARGET_TOOL(VAR_SYSCTL_BINARY, sysctl, false) 292AC_PATH_TARGET_TOOL(VAR_SYSCTL_BINARY, sysctl, false)
@@ -340,12 +304,9 @@ AS_IF([test x"$VAR_SYSCTL_BINARY" != x"false"],
340# miniupnpc / upnpc binary is a soft runtime requirement 304# miniupnpc / upnpc binary is a soft runtime requirement
341AC_PATH_TARGET_TOOL(VAR_UPNPC_BINARY, upnpc, false) 305AC_PATH_TARGET_TOOL(VAR_UPNPC_BINARY, upnpc, false)
342 306
343if test x"$VAR_UPNPC_BINARY" != x"false" 307AS_IF([test x"$VAR_UPNPC_BINARY" != x"false"],
344then 308 [AC_DEFINE_UNQUOTED([UPNPC], "$VAR_UPNPC_BINARY", [Path to upnpc binary])],
345AC_DEFINE_UNQUOTED([UPNPC], "$VAR_UPNPC_BINARY", [Path to upnpc binary]) 309 [AC_MSG_WARN([warning: 'upnpc' binary not found.])])
346else
347AC_MSG_WARN([warning: 'upnpc' binary not found.])
348fi
349 310
350AC_CHECK_MEMBER(struct tm.tm_gmtoff, 311AC_CHECK_MEMBER(struct tm.tm_gmtoff,
351 [AC_DEFINE(HAVE_TM_GMTOFF, 1, 312 [AC_DEFINE(HAVE_TM_GMTOFF, 1,
@@ -366,11 +327,9 @@ AM_CONDITIONAL(HAVE_GETADDRINFO_A, [test "$have_addrinfo_a" = 1])
366 327
367 328
368# tests only run on Windows 329# tests only run on Windows
369if test "x$build_target" = "xmingw" 330AS_IF([test "x$build_target" = "xmingw"],
370then 331 [AC_CHECK_LIB(plibc, plibc_init, [], [AC_MSG_ERROR([GNUnet requires PlibC on Windows])])
371 AC_CHECK_LIB(plibc, plibc_init, [], [AC_MSG_ERROR([GNUnet requires PlibC on Windows])]) 332 AC_CHECK_LIB(gnurx, regexec, [], [AC_MSG_ERROR([GNUnet requires libgnurx on Windows])])])
372 AC_CHECK_LIB(gnurx, regexec, [], [AC_MSG_ERROR([GNUnet requires libgnurx on Windows])])
373fi
374 333
375# libgcrypt 334# libgcrypt
376gcrypt=0 335gcrypt=0
@@ -381,8 +340,8 @@ NEED_LIBGCRYPT_VERSION=1.6.0
381AM_PATH_LIBGCRYPT("$NEED_LIBGCRYPT_API:$NEED_LIBGCRYPT_VERSION", gcrypt=1) 340AM_PATH_LIBGCRYPT("$NEED_LIBGCRYPT_API:$NEED_LIBGCRYPT_VERSION", gcrypt=1)
382AC_CHECK_DECLS([gcry_mpi_set_opaque_copy], [], [], [[#include <gcrypt.h>]]) 341AC_CHECK_DECLS([gcry_mpi_set_opaque_copy], [], [], [[#include <gcrypt.h>]])
383 342
384if test $gcrypt = 0 343AS_IF([test $gcrypt = 0],
385then 344 [
386 AC_MSG_ERROR([[ 345 AC_MSG_ERROR([[
387*** 346***
388*** You need libgcrypt to build this program. 347*** You need libgcrypt to build this program.
@@ -391,7 +350,7 @@ then
391*** (at least version $NEED_LIBGCRYPT_VERSION (API $NEED_LIBGCRYPT_API) 350*** (at least version $NEED_LIBGCRYPT_VERSION (API $NEED_LIBGCRYPT_API)
392*** is required.) 351*** is required.)
393***]]) 352***]])
394fi 353])
395AC_DEFINE_UNQUOTED([NEED_LIBGCRYPT_VERSION], "$NEED_LIBGCRYPT_VERSION", [required libgcrypt version]) 354AC_DEFINE_UNQUOTED([NEED_LIBGCRYPT_VERSION], "$NEED_LIBGCRYPT_VERSION", [required libgcrypt version])
396 355
397AC_CHECK_DECLS([struct in6_ifreq], [], [], [[#include <linux/if_tun.h>]]) 356AC_CHECK_DECLS([struct in6_ifreq], [], [], [[#include <linux/if_tun.h>]])
@@ -405,14 +364,14 @@ AC_ARG_ENABLE([documentation],
405 [documentation=${enableval}], 364 [documentation=${enableval}],
406 [documentation=yes]) 365 [documentation=yes])
407AC_MSG_RESULT($documentation) 366AC_MSG_RESULT($documentation)
408if test "x$documentation" = "xyes" 367AS_IF([test "x$documentation" = "xyes"],
409then 368[
410 AM_CONDITIONAL([DOCUMENTATION],true) 369 AM_CONDITIONAL([DOCUMENTATION],true)
411 AC_DEFINE([DOCUMENTATION],[1],[Building the documentation]) 370 AC_DEFINE([DOCUMENTATION],[1],[Building the documentation])
412else 371],[
413 AM_CONDITIONAL([DOCUMENTATION],false) 372 AM_CONDITIONAL([DOCUMENTATION],false)
414 AC_DEFINE([DOCUMENTATION],[0],[Not building the documentation]) 373 AC_DEFINE([DOCUMENTATION],[0],[Not building the documentation])
415fi 374])
416 375
417# FIXME: Something is wrong about this in the output of ./configure runs 376# FIXME: Something is wrong about this in the output of ./configure runs
418AC_MSG_CHECKING(wether to include generated texi2mdoc output in installation) 377AC_MSG_CHECKING(wether to include generated texi2mdoc output in installation)
@@ -444,14 +403,14 @@ AC_ARG_ENABLE([documentation-only],
444 [documentation_only=${enableval}], 403 [documentation_only=${enableval}],
445 [documentation_only=no]) 404 [documentation_only=no])
446AC_MSG_RESULT($documentation_only) 405AC_MSG_RESULT($documentation_only)
447if test "x$documentation_only" = "xyes" 406AS_IF([test "x$documentation_only" = "xyes"],
448then 407 [
449 AM_CONDITIONAL([DOCUMENTATION_ONLY],true) 408 AM_CONDITIONAL([DOCUMENTATION_ONLY],true)
450 AC_DEFINE([DOCUMENTATION_ONLY],[1],[Building only the documentation]) 409 AC_DEFINE([DOCUMENTATION_ONLY],[1],[Building only the documentation])
451else 410 ],[
452 AM_CONDITIONAL([DOCUMENTATION_ONLY],false) 411 AM_CONDITIONAL([DOCUMENTATION_ONLY],false)
453 AC_DEFINE([DOCUMENTATION_ONLY],[0],[Not building only the documentation]) 412 AC_DEFINE([DOCUMENTATION_ONLY],[0],[Not building only the documentation])
454fi 413 ])
455 414
456# should the build process be including the manpages? (default: yes) 415# should the build process be including the manpages? (default: yes)
457AC_MSG_CHECKING(whether to include man pages) 416AC_MSG_CHECKING(whether to include man pages)
@@ -460,40 +419,39 @@ AC_ARG_ENABLE([include-manpages],
460 [include_manpages=${enableval}], 419 [include_manpages=${enableval}],
461 [include_manpages=yes]) 420 [include_manpages=yes])
462AC_MSG_RESULT($include_manpages) 421AC_MSG_RESULT($include_manpages)
463if test "x$include_manpages" = "xyes" 422AS_IF([test "x$include_manpages" = "xyes"],
464then 423 [
465 AM_CONDITIONAL([INCLUDE_MANPAGES],true) 424 AM_CONDITIONAL([INCLUDE_MANPAGES],true)
466 AC_DEFINE([INCLUDE_MANPAGES],[1],[Including the man pages in the build and installation]) 425 AC_DEFINE([INCLUDE_MANPAGES],[1],[Including the man pages in the build and installation])
467else 426 ],[
468 AM_CONDITIONAL([INCLUDE_MANPAGES],false) 427 AM_CONDITIONAL([INCLUDE_MANPAGES],false)
469 AC_DEFINE([INCLUDE_MANPAGES],[0],[Not including the man pages in the build and installation]) 428 AC_DEFINE([INCLUDE_MANPAGES],[0],[Not including the man pages in the build and installation])
470fi 429 ])
471 430
472# Adam shostack suggests the following for Windows: 431# Adam shostack suggests the following for Windows:
473# -D_FORTIFY_SOURCE=2 -fstack-protector-all 432# -D_FORTIFY_SOURCE=2 -fstack-protector-all
474AC_ARG_ENABLE(gcc-hardening, 433AC_ARG_ENABLE(gcc-hardening,
475 AS_HELP_STRING(--enable-gcc-hardening, enable compiler security checks), 434 AS_HELP_STRING(--enable-gcc-hardening, enable compiler security checks),
476[if test x$enableval = xyes; then 435[AS_IF([test x$enableval = xyes],[
477 CFLAGS="$CFLAGS -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-all" 436 CFLAGS="$CFLAGS -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-all"
478 CFLAGS="$CFLAGS -fwrapv -fPIE -Wstack-protector" 437 CFLAGS="$CFLAGS -fwrapv -fPIE -Wstack-protector"
479 CFLAGS="$CFLAGS --param ssp-buffer-size=1" 438 CFLAGS="$CFLAGS --param ssp-buffer-size=1"
480 LDFLAGS="$LDFLAGS -pie" 439 LDFLAGS="$LDFLAGS -pie"
481fi]) 440 ])])
482 441
483# Linker hardening options 442# Linker hardening options
484# Currently these options are ELF specific - you can't use this with MacOSX 443# Currently these options are ELF specific - you can't use this with MacOSX
485AC_ARG_ENABLE(linker-hardening, 444AC_ARG_ENABLE(linker-hardening,
486 AS_HELP_STRING(--enable-linker-hardening, enable linker security fixups), 445 AS_HELP_STRING(--enable-linker-hardening, enable linker security fixups),
487[if test x$enableval = xyes; then 446[AS_IF([test x$enableval = xyes],
488 LDFLAGS="$LDFLAGS -z relro -z now" 447 [LDFLAGS="$LDFLAGS -z relro -z now"])])
489fi])
490 448
491 449
492AC_ARG_ENABLE(sanitizer, 450AC_ARG_ENABLE(sanitizer,
493 AS_HELP_STRING(--enable-sanitizer, enable Address Sanitizer and Undefined Behavior Sanitizer), 451 AS_HELP_STRING(--enable-sanitizer, enable Address Sanitizer and Undefined Behavior Sanitizer),
494[if test x$enableval = xyes; then 452[AS_IF([test x$enableval = xyes],[
495 LDFLAGS="$CFLAGS -fsanitize=address,undefined -fno-omit-frame-pointer" 453 LDFLAGS="$CFLAGS -fsanitize=address,undefined -fno-omit-frame-pointer"
496fi]) 454 ])])
497 455
498 456
499extra_logging=GNUNET_NO 457extra_logging=GNUNET_NO
@@ -512,18 +470,14 @@ AC_ARG_ENABLE([poisoning],
512 [AS_HELP_STRING([--enable-poisoning], [enable poisoning of freed memory (good for debugging)])], 470 [AS_HELP_STRING([--enable-poisoning], [enable poisoning of freed memory (good for debugging)])],
513 [enable_poisoning=${enableval}], 471 [enable_poisoning=${enableval}],
514 [ 472 [
515 if test "x$extra_logging" != "xGNUNET_NO"; then 473 AS_IF([test "x$extra_logging" != "xGNUNET_NO"],
516 enable_poisoning="defaults to yes (extra logging is enabled)" 474 [enable_poisoning="defaults to yes (extra logging is enabled)"],
517 else 475 [enable_poisoning=no])
518 enable_poisoning=no
519 fi
520 ]) 476 ])
521AC_MSG_RESULT($enable_poisoning) 477AC_MSG_RESULT($enable_poisoning)
522if test ! "x$enable_poisoning" = "xno"; then 478AS_IF([test ! "x$enable_poisoning" = "xno"],
523 enable_poisoning=1 479 [enable_poisoning=1],
524else 480 [enable_poisoning=0])
525 enable_poisoning=0
526fi
527AC_DEFINE_UNQUOTED([ENABLE_POISONING],[$enable_poisoning],[1 if freed memory should be poisoned, 0 otherwise]) 481AC_DEFINE_UNQUOTED([ENABLE_POISONING],[$enable_poisoning],[1 if freed memory should be poisoned, 0 otherwise])
528 482
529if test $build = $target 483if 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
4src/arm/gnunet-arm.c 4src/arm/gnunet-arm.c
5src/arm/gnunet-service-arm.c 5src/arm/gnunet-service-arm.c
6src/arm/mockup-service.c 6src/arm/mockup-service.c
7src/ats-tests/ats-testing-experiment.c
8src/ats-tests/ats-testing-log.c
9src/ats-tests/ats-testing-preferences.c
10src/ats-tests/ats-testing-traffic.c
11src/ats-tests/ats-testing.c
12src/ats-tests/gnunet-ats-sim.c
13src/ats-tests/gnunet-solver-eval.c
14src/ats-tool/gnunet-ats.c
15src/ats/ats_api2_application.c 7src/ats/ats_api2_application.c
16src/ats/ats_api2_transport.c 8src/ats/ats_api2_transport.c
17src/ats/ats_api_connectivity.c 9src/ats/ats_api_connectivity.c
@@ -19,10 +11,10 @@ src/ats/ats_api_performance.c
19src/ats/ats_api_scanner.c 11src/ats/ats_api_scanner.c
20src/ats/ats_api_scheduling.c 12src/ats/ats_api_scheduling.c
21src/ats/gnunet-ats-solver-eval.c 13src/ats/gnunet-ats-solver-eval.c
22src/ats/gnunet-service-ats-new.c
23src/ats/gnunet-service-ats.c
24src/ats/gnunet-service-ats_addresses.c 14src/ats/gnunet-service-ats_addresses.c
15src/ats/gnunet-service-ats.c
25src/ats/gnunet-service-ats_connectivity.c 16src/ats/gnunet-service-ats_connectivity.c
17src/ats/gnunet-service-ats-new.c
26src/ats/gnunet-service-ats_normalization.c 18src/ats/gnunet-service-ats_normalization.c
27src/ats/gnunet-service-ats_performance.c 19src/ats/gnunet-service-ats_performance.c
28src/ats/gnunet-service-ats_plugins.c 20src/ats/gnunet-service-ats_plugins.c
@@ -34,6 +26,14 @@ src/ats/plugin_ats2_simple.c
34src/ats/plugin_ats_mlp.c 26src/ats/plugin_ats_mlp.c
35src/ats/plugin_ats_proportional.c 27src/ats/plugin_ats_proportional.c
36src/ats/plugin_ats_ril.c 28src/ats/plugin_ats_ril.c
29src/ats-tests/ats-testing.c
30src/ats-tests/ats-testing-experiment.c
31src/ats-tests/ats-testing-log.c
32src/ats-tests/ats-testing-preferences.c
33src/ats-tests/ats-testing-traffic.c
34src/ats-tests/gnunet-ats-sim.c
35src/ats-tests/gnunet-solver-eval.c
36src/ats-tool/gnunet-ats.c
37src/auction/gnunet-auction-create.c 37src/auction/gnunet-auction-create.c
38src/auction/gnunet-auction-info.c 38src/auction/gnunet-auction-info.c
39src/auction/gnunet-auction-join.c 39src/auction/gnunet-auction-join.c
@@ -50,8 +50,8 @@ src/cadet/cadet_api_list_peers.c
50src/cadet/cadet_api_list_tunnels.c 50src/cadet/cadet_api_list_tunnels.c
51src/cadet/cadet_test_lib.c 51src/cadet/cadet_test_lib.c
52src/cadet/desirability_table.c 52src/cadet/desirability_table.c
53src/cadet/gnunet-cadet-profiler.c
54src/cadet/gnunet-cadet.c 53src/cadet/gnunet-cadet.c
54src/cadet/gnunet-cadet-profiler.c
55src/cadet/gnunet-service-cadet.c 55src/cadet/gnunet-service-cadet.c
56src/cadet/gnunet-service-cadet_channel.c 56src/cadet/gnunet-service-cadet_channel.c
57src/cadet/gnunet-service-cadet_connection.c 57src/cadet/gnunet-service-cadet_connection.c
@@ -67,15 +67,15 @@ src/consensus/gnunet-service-consensus.c
67src/consensus/plugin_block_consensus.c 67src/consensus/plugin_block_consensus.c
68src/conversation/conversation_api.c 68src/conversation/conversation_api.c
69src/conversation/conversation_api_call.c 69src/conversation/conversation_api_call.c
70src/conversation/gnunet-conversation-test.c
71src/conversation/gnunet-conversation.c 70src/conversation/gnunet-conversation.c
72src/conversation/gnunet-helper-audio-playback-gst.c 71src/conversation/gnunet-conversation-test.c
72src/conversation/gnunet_gst.c
73src/conversation/gnunet_gst_test.c
73src/conversation/gnunet-helper-audio-playback.c 74src/conversation/gnunet-helper-audio-playback.c
74src/conversation/gnunet-helper-audio-record-gst.c 75src/conversation/gnunet-helper-audio-playback-gst.c
75src/conversation/gnunet-helper-audio-record.c 76src/conversation/gnunet-helper-audio-record.c
77src/conversation/gnunet-helper-audio-record-gst.c
76src/conversation/gnunet-service-conversation.c 78src/conversation/gnunet-service-conversation.c
77src/conversation/gnunet_gst.c
78src/conversation/gnunet_gst_test.c
79src/conversation/microphone.c 79src/conversation/microphone.c
80src/conversation/plugin_gnsrecord_conversation.c 80src/conversation/plugin_gnsrecord_conversation.c
81src/conversation/speaker.c 81src/conversation/speaker.c
@@ -112,6 +112,7 @@ src/dht/dht_api.c
112src/dht/dht_test_lib.c 112src/dht/dht_test_lib.c
113src/dht/gnunet-dht-get.c 113src/dht/gnunet-dht-get.c
114src/dht/gnunet-dht-monitor.c 114src/dht/gnunet-dht-monitor.c
115src/dht/gnunet_dht_profiler.c
115src/dht/gnunet-dht-put.c 116src/dht/gnunet-dht-put.c
116src/dht/gnunet-service-dht.c 117src/dht/gnunet-service-dht.c
117src/dht/gnunet-service-dht_clients.c 118src/dht/gnunet-service-dht_clients.c
@@ -120,7 +121,6 @@ src/dht/gnunet-service-dht_hello.c
120src/dht/gnunet-service-dht_neighbours.c 121src/dht/gnunet-service-dht_neighbours.c
121src/dht/gnunet-service-dht_nse.c 122src/dht/gnunet-service-dht_nse.c
122src/dht/gnunet-service-dht_routing.c 123src/dht/gnunet-service-dht_routing.c
123src/dht/gnunet_dht_profiler.c
124src/dht/plugin_block_dht.c 124src/dht/plugin_block_dht.c
125src/dns/dns_api.c 125src/dns/dns_api.c
126src/dns/gnunet-dns-monitor.c 126src/dns/gnunet-dns-monitor.c
@@ -130,8 +130,8 @@ src/dns/gnunet-service-dns.c
130src/dns/gnunet-zonewalk.c 130src/dns/gnunet-zonewalk.c
131src/dns/plugin_block_dns.c 131src/dns/plugin_block_dns.c
132src/exit/gnunet-daemon-exit.c 132src/exit/gnunet-daemon-exit.c
133src/exit/gnunet-helper-exit-windows.c
134src/exit/gnunet-helper-exit.c 133src/exit/gnunet-helper-exit.c
134src/exit/gnunet-helper-exit-windows.c
135src/fragmentation/defragmentation.c 135src/fragmentation/defragmentation.c
136src/fragmentation/fragmentation.c 136src/fragmentation/fragmentation.c
137src/fs/fs_api.c 137src/fs/fs_api.c
@@ -156,8 +156,8 @@ src/fs/gnunet-auto-share.c
156src/fs/gnunet-daemon-fsprofiler.c 156src/fs/gnunet-daemon-fsprofiler.c
157src/fs/gnunet-directory.c 157src/fs/gnunet-directory.c
158src/fs/gnunet-download.c 158src/fs/gnunet-download.c
159src/fs/gnunet-fs-profiler.c
160src/fs/gnunet-fs.c 159src/fs/gnunet-fs.c
160src/fs/gnunet-fs-profiler.c
161src/fs/gnunet-helper-fs-publish.c 161src/fs/gnunet-helper-fs-publish.c
162src/fs/gnunet-publish.c 162src/fs/gnunet-publish.c
163src/fs/gnunet-search.c 163src/fs/gnunet-search.c
@@ -177,10 +177,10 @@ src/gns/gns_tld_api.c
177src/gns/gnunet-bcd.c 177src/gns/gnunet-bcd.c
178src/gns/gnunet-dns2gns.c 178src/gns/gnunet-dns2gns.c
179src/gns/gnunet-gns-benchmark.c 179src/gns/gnunet-gns-benchmark.c
180src/gns/gnunet-gns.c
180src/gns/gnunet-gns-helper-service-w32.c 181src/gns/gnunet-gns-helper-service-w32.c
181src/gns/gnunet-gns-import.c 182src/gns/gnunet-gns-import.c
182src/gns/gnunet-gns-proxy.c 183src/gns/gnunet-gns-proxy.c
183src/gns/gnunet-gns.c
184src/gns/gnunet-service-gns.c 184src/gns/gnunet-service-gns.c
185src/gns/gnunet-service-gns_interceptor.c 185src/gns/gnunet-service-gns_interceptor.c
186src/gns/gnunet-service-gns_resolver.c 186src/gns/gnunet-service-gns_resolver.c
@@ -189,19 +189,19 @@ src/gns/nss/nss_gns_query.c
189src/gns/plugin_block_gns.c 189src/gns/plugin_block_gns.c
190src/gns/plugin_gnsrecord_gns.c 190src/gns/plugin_gnsrecord_gns.c
191src/gns/plugin_rest_gns.c 191src/gns/plugin_rest_gns.c
192src/gns/w32nsp-install.c
193src/gns/w32nsp-resolve.c
194src/gns/w32nsp-uninstall.c
195src/gns/w32nsp.c
196src/gnsrecord/gnsrecord.c 192src/gnsrecord/gnsrecord.c
197src/gnsrecord/gnsrecord_crypto.c 193src/gnsrecord/gnsrecord_crypto.c
198src/gnsrecord/gnsrecord_misc.c 194src/gnsrecord/gnsrecord_misc.c
199src/gnsrecord/gnsrecord_serialization.c 195src/gnsrecord/gnsrecord_serialization.c
200src/gnsrecord/plugin_gnsrecord_dns.c 196src/gnsrecord/plugin_gnsrecord_dns.c
197src/gns/w32nsp.c
198src/gns/w32nsp-install.c
199src/gns/w32nsp-resolve.c
200src/gns/w32nsp-uninstall.c
201src/hello/address.c 201src/hello/address.c
202src/hello/gnunet-hello.c 202src/hello/gnunet-hello.c
203src/hello/hello-ng.c
204src/hello/hello.c 203src/hello/hello.c
204src/hello/hello-ng.c
205src/hostlist/gnunet-daemon-hostlist.c 205src/hostlist/gnunet-daemon-hostlist.c
206src/hostlist/gnunet-daemon-hostlist_client.c 206src/hostlist/gnunet-daemon-hostlist_client.c
207src/hostlist/gnunet-daemon-hostlist_server.c 207src/hostlist/gnunet-daemon-hostlist_server.c
@@ -225,8 +225,8 @@ src/namecache/namecache_api.c
225src/namecache/plugin_namecache_flat.c 225src/namecache/plugin_namecache_flat.c
226src/namecache/plugin_namecache_postgres.c 226src/namecache/plugin_namecache_postgres.c
227src/namecache/plugin_namecache_sqlite.c 227src/namecache/plugin_namecache_sqlite.c
228src/namestore/gnunet-namestore-fcfsd.c
229src/namestore/gnunet-namestore.c 228src/namestore/gnunet-namestore.c
229src/namestore/gnunet-namestore-fcfsd.c
230src/namestore/gnunet-service-namestore.c 230src/namestore/gnunet-service-namestore.c
231src/namestore/gnunet-zoneimport.c 231src/namestore/gnunet-zoneimport.c
232src/namestore/namestore_api.c 232src/namestore/namestore_api.c
@@ -242,10 +242,10 @@ src/nat-auto/gnunet-service-nat-auto.c
242src/nat-auto/gnunet-service-nat-auto_legacy.c 242src/nat-auto/gnunet-service-nat-auto_legacy.c
243src/nat-auto/nat_auto_api.c 243src/nat-auto/nat_auto_api.c
244src/nat-auto/nat_auto_api_test.c 244src/nat-auto/nat_auto_api_test.c
245src/nat/gnunet-helper-nat-client-windows.c
246src/nat/gnunet-helper-nat-client.c 245src/nat/gnunet-helper-nat-client.c
247src/nat/gnunet-helper-nat-server-windows.c 246src/nat/gnunet-helper-nat-client-windows.c
248src/nat/gnunet-helper-nat-server.c 247src/nat/gnunet-helper-nat-server.c
248src/nat/gnunet-helper-nat-server-windows.c
249src/nat/gnunet-nat.c 249src/nat/gnunet-nat.c
250src/nat/gnunet-service-nat.c 250src/nat/gnunet-service-nat.c
251src/nat/gnunet-service-nat_externalip.c 251src/nat/gnunet-service-nat_externalip.c
@@ -254,17 +254,17 @@ src/nat/gnunet-service-nat_mini.c
254src/nat/gnunet-service-nat_stun.c 254src/nat/gnunet-service-nat_stun.c
255src/nat/nat_api.c 255src/nat/nat_api.c
256src/nat/nat_api_stun.c 256src/nat/nat_api_stun.c
257src/nse/gnunet-nse-profiler.c
258src/nse/gnunet-nse.c 257src/nse/gnunet-nse.c
258src/nse/gnunet-nse-profiler.c
259src/nse/gnunet-service-nse.c 259src/nse/gnunet-service-nse.c
260src/nse/nse_api.c 260src/nse/nse_api.c
261src/nt/nt.c 261src/nt/nt.c
262src/peerinfo-tool/gnunet-peerinfo.c
263src/peerinfo-tool/gnunet-peerinfo_plugins.c
264src/peerinfo-tool/plugin_rest_peerinfo.c
265src/peerinfo/gnunet-service-peerinfo.c 262src/peerinfo/gnunet-service-peerinfo.c
266src/peerinfo/peerinfo_api.c 263src/peerinfo/peerinfo_api.c
267src/peerinfo/peerinfo_api_notify.c 264src/peerinfo/peerinfo_api_notify.c
265src/peerinfo-tool/gnunet-peerinfo.c
266src/peerinfo-tool/gnunet-peerinfo_plugins.c
267src/peerinfo-tool/plugin_rest_peerinfo.c
268src/peerstore/gnunet-peerstore.c 268src/peerstore/gnunet-peerstore.c
269src/peerstore/gnunet-service-peerstore.c 269src/peerstore/gnunet-service-peerstore.c
270src/peerstore/peerstore_api.c 270src/peerstore/peerstore_api.c
@@ -312,22 +312,22 @@ src/revocation/gnunet-revocation.c
312src/revocation/gnunet-service-revocation.c 312src/revocation/gnunet-service-revocation.c
313src/revocation/plugin_block_revocation.c 313src/revocation/plugin_block_revocation.c
314src/revocation/revocation_api.c 314src/revocation/revocation_api.c
315src/rps/gnunet-rps-profiler.c
316src/rps/gnunet-rps.c 315src/rps/gnunet-rps.c
316src/rps/gnunet-rps-profiler.c
317src/rps/gnunet-service-rps.c 317src/rps/gnunet-service-rps.c
318src/rps/gnunet-service-rps_custommap.c 318src/rps/gnunet-service-rps_custommap.c
319src/rps/gnunet-service-rps_sampler.c 319src/rps/gnunet-service-rps_sampler.c
320src/rps/gnunet-service-rps_sampler_elem.c 320src/rps/gnunet-service-rps_sampler_elem.c
321src/rps/gnunet-service-rps_view.c 321src/rps/gnunet-service-rps_view.c
322src/rps/rps_api.c
322src/rps/rps-sampler_client.c 323src/rps/rps-sampler_client.c
323src/rps/rps-sampler_common.c 324src/rps/rps-sampler_common.c
324src/rps/rps-test_util.c 325src/rps/rps-test_util.c
325src/rps/rps_api.c
326src/scalarproduct/gnunet-scalarproduct.c 326src/scalarproduct/gnunet-scalarproduct.c
327src/scalarproduct/gnunet-service-scalarproduct-ecc_alice.c
328src/scalarproduct/gnunet-service-scalarproduct-ecc_bob.c
329src/scalarproduct/gnunet-service-scalarproduct_alice.c 327src/scalarproduct/gnunet-service-scalarproduct_alice.c
330src/scalarproduct/gnunet-service-scalarproduct_bob.c 328src/scalarproduct/gnunet-service-scalarproduct_bob.c
329src/scalarproduct/gnunet-service-scalarproduct-ecc_alice.c
330src/scalarproduct/gnunet-service-scalarproduct-ecc_bob.c
331src/scalarproduct/scalarproduct_api.c 331src/scalarproduct/scalarproduct_api.c
332src/secretsharing/gnunet-secretsharing-profiler.c 332src/secretsharing/gnunet-secretsharing-profiler.c
333src/secretsharing/gnunet-service-secretsharing.c 333src/secretsharing/gnunet-service-secretsharing.c
@@ -353,16 +353,15 @@ src/statistics/gnunet-statistics.c
353src/statistics/statistics_api.c 353src/statistics/statistics_api.c
354src/template/gnunet-service-template.c 354src/template/gnunet-service-template.c
355src/template/gnunet-template.c 355src/template/gnunet-template.c
356src/testbed-logger/gnunet-service-testbed-logger.c
357src/testbed-logger/testbed_logger_api.c
358src/testbed/generate-underlay-topology.c 356src/testbed/generate-underlay-topology.c
359src/testbed/gnunet-daemon-latency-logger.c 357src/testbed/gnunet-daemon-latency-logger.c
360src/testbed/gnunet-daemon-testbed-blacklist.c 358src/testbed/gnunet-daemon-testbed-blacklist.c
361src/testbed/gnunet-daemon-testbed-underlay.c 359src/testbed/gnunet-daemon-testbed-underlay.c
362src/testbed/gnunet-helper-testbed.c 360src/testbed/gnunet-helper-testbed.c
361src/testbed/gnunet_mpi_test.c
363src/testbed/gnunet-service-test-barriers.c 362src/testbed/gnunet-service-test-barriers.c
364src/testbed/gnunet-service-testbed.c
365src/testbed/gnunet-service-testbed_barriers.c 363src/testbed/gnunet-service-testbed_barriers.c
364src/testbed/gnunet-service-testbed.c
366src/testbed/gnunet-service-testbed_cache.c 365src/testbed/gnunet-service-testbed_cache.c
367src/testbed/gnunet-service-testbed_connectionpool.c 366src/testbed/gnunet-service-testbed_connectionpool.c
368src/testbed/gnunet-service-testbed_cpustatus.c 367src/testbed/gnunet-service-testbed_cpustatus.c
@@ -370,19 +369,20 @@ src/testbed/gnunet-service-testbed_links.c
370src/testbed/gnunet-service-testbed_meminfo.c 369src/testbed/gnunet-service-testbed_meminfo.c
371src/testbed/gnunet-service-testbed_oc.c 370src/testbed/gnunet-service-testbed_oc.c
372src/testbed/gnunet-service-testbed_peers.c 371src/testbed/gnunet-service-testbed_peers.c
373src/testbed/gnunet-testbed-profiler.c
374src/testbed/gnunet_mpi_test.c
375src/testbed/gnunet_testbed_mpi_spawn.c 372src/testbed/gnunet_testbed_mpi_spawn.c
376src/testbed/testbed_api.c 373src/testbed/gnunet-testbed-profiler.c
374src/testbed-logger/gnunet-service-testbed-logger.c
375src/testbed-logger/testbed_logger_api.c
377src/testbed/testbed_api_barriers.c 376src/testbed/testbed_api_barriers.c
377src/testbed/testbed_api.c
378src/testbed/testbed_api_hosts.c 378src/testbed/testbed_api_hosts.c
379src/testbed/testbed_api_operations.c 379src/testbed/testbed_api_operations.c
380src/testbed/testbed_api_peers.c 380src/testbed/testbed_api_peers.c
381src/testbed/testbed_api_sd.c 381src/testbed/testbed_api_sd.c
382src/testbed/testbed_api_services.c 382src/testbed/testbed_api_services.c
383src/testbed/testbed_api_statistics.c 383src/testbed/testbed_api_statistics.c
384src/testbed/testbed_api_test.c
385src/testbed/testbed_api_testbed.c 384src/testbed/testbed_api_testbed.c
385src/testbed/testbed_api_test.c
386src/testbed/testbed_api_topology.c 386src/testbed/testbed_api_topology.c
387src/testbed/testbed_api_underlay.c 387src/testbed/testbed_api_underlay.c
388src/testing/gnunet-testing.c 388src/testing/gnunet-testing.c
@@ -394,41 +394,35 @@ src/transport/gnunet-communicator-tcp.c
394src/transport/gnunet-communicator-udp.c 394src/transport/gnunet-communicator-udp.c
395src/transport/gnunet-communicator-unix.c 395src/transport/gnunet-communicator-unix.c
396src/transport/gnunet-helper-transport-bluetooth.c 396src/transport/gnunet-helper-transport-bluetooth.c
397src/transport/gnunet-helper-transport-wlan-dummy.c
398src/transport/gnunet-helper-transport-wlan.c 397src/transport/gnunet-helper-transport-wlan.c
398src/transport/gnunet-helper-transport-wlan-dummy.c
399src/transport/gnunet-service-tng.c 399src/transport/gnunet-service-tng.c
400src/transport/gnunet-service-transport.c
401src/transport/gnunet-service-transport_ats.c 400src/transport/gnunet-service-transport_ats.c
401src/transport/gnunet-service-transport.c
402src/transport/gnunet-service-transport_hello.c 402src/transport/gnunet-service-transport_hello.c
403src/transport/gnunet-service-transport_manipulation.c 403src/transport/gnunet-service-transport_manipulation.c
404src/transport/gnunet-service-transport_neighbours.c 404src/transport/gnunet-service-transport_neighbours.c
405src/transport/gnunet-service-transport_plugins.c 405src/transport/gnunet-service-transport_plugins.c
406src/transport/gnunet-service-transport_validation.c 406src/transport/gnunet-service-transport_validation.c
407src/transport/gnunet-transport.c
407src/transport/gnunet-transport-certificate-creation.c 408src/transport/gnunet-transport-certificate-creation.c
408src/transport/gnunet-transport-profiler.c 409src/transport/gnunet-transport-profiler.c
409src/transport/gnunet-transport-wlan-receiver.c 410src/transport/gnunet-transport-wlan-receiver.c
410src/transport/gnunet-transport-wlan-sender.c 411src/transport/gnunet-transport-wlan-sender.c
411src/transport/gnunet-transport.c
412src/transport/plugin_transport_http_client.c 412src/transport/plugin_transport_http_client.c
413src/transport/plugin_transport_http_common.c 413src/transport/plugin_transport_http_common.c
414src/transport/plugin_transport_http_server.c 414src/transport/plugin_transport_http_server.c
415src/transport/plugin_transport_smtp.c 415src/transport/plugin_transport_smtp.c
416src/transport/plugin_transport_tcp.c 416src/transport/plugin_transport_tcp.c
417src/transport/plugin_transport_template.c 417src/transport/plugin_transport_template.c
418src/transport/plugin_transport_udp.c
419src/transport/plugin_transport_udp_broadcasting.c 418src/transport/plugin_transport_udp_broadcasting.c
419src/transport/plugin_transport_udp.c
420src/transport/plugin_transport_unix.c 420src/transport/plugin_transport_unix.c
421src/transport/plugin_transport_wlan.c 421src/transport/plugin_transport_wlan.c
422src/transport/tcp_connection_legacy.c 422src/transport/tcp_connection_legacy.c
423src/transport/tcp_server_legacy.c 423src/transport/tcp_server_legacy.c
424src/transport/tcp_server_mst_legacy.c 424src/transport/tcp_server_mst_legacy.c
425src/transport/tcp_service_legacy.c 425src/transport/tcp_service_legacy.c
426src/transport/transport-testing-filenames.c
427src/transport/transport-testing-loggers.c
428src/transport/transport-testing-main.c
429src/transport/transport-testing-send.c
430src/transport/transport-testing.c
431src/transport/transport-testing2.c
432src/transport/transport_api2_application.c 426src/transport/transport_api2_application.c
433src/transport/transport_api2_communication.c 427src/transport/transport_api2_communication.c
434src/transport/transport_api2_core.c 428src/transport/transport_api2_core.c
@@ -441,6 +435,12 @@ src/transport/transport_api_manipulation.c
441src/transport/transport_api_monitor_peers.c 435src/transport/transport_api_monitor_peers.c
442src/transport/transport_api_monitor_plugins.c 436src/transport/transport_api_monitor_plugins.c
443src/transport/transport_api_offer_hello.c 437src/transport/transport_api_offer_hello.c
438src/transport/transport-testing2.c
439src/transport/transport-testing.c
440src/transport/transport-testing-filenames.c
441src/transport/transport-testing-loggers.c
442src/transport/transport-testing-main.c
443src/transport/transport-testing-send.c
444src/util/bandwidth.c 444src/util/bandwidth.c
445src/util/benchmark.c 445src/util/benchmark.c
446src/util/bio.c 446src/util/bio.c
@@ -453,8 +453,8 @@ src/util/configuration_loader.c
453src/util/container_bloomfilter.c 453src/util/container_bloomfilter.c
454src/util/container_heap.c 454src/util/container_heap.c
455src/util/container_meta_data.c 455src/util/container_meta_data.c
456src/util/container_multihashmap.c
457src/util/container_multihashmap32.c 456src/util/container_multihashmap32.c
457src/util/container_multihashmap.c
458src/util/container_multipeermap.c 458src/util/container_multipeermap.c
459src/util/container_multishortmap.c 459src/util/container_multishortmap.c
460src/util/crypto_abe.c 460src/util/crypto_abe.c
@@ -476,16 +476,16 @@ src/util/dnsparser.c
476src/util/dnsstub.c 476src/util/dnsstub.c
477src/util/getopt.c 477src/util/getopt.c
478src/util/getopt_helpers.c 478src/util/getopt_helpers.c
479src/util/gnunet-config-diff.c
480src/util/gnunet-config.c 479src/util/gnunet-config.c
480src/util/gnunet-config-diff.c
481src/util/gnunet-ecc.c 481src/util/gnunet-ecc.c
482src/util/gnunet-helper-w32-console.c 482src/util/gnunet-helper-w32-console.c
483src/util/gnunet-qr.c 483src/util/gnunet-qr.c
484src/util/gnunet-resolver.c 484src/util/gnunet-resolver.c
485src/util/gnunet-scrypt.c 485src/util/gnunet-scrypt.c
486src/util/gnunet-service-resolver.c 486src/util/gnunet-service-resolver.c
487src/util/gnunet-timeout-w32.c
488src/util/gnunet-timeout.c 487src/util/gnunet-timeout.c
488src/util/gnunet-timeout-w32.c
489src/util/gnunet-uri.c 489src/util/gnunet-uri.c
490src/util/helper.c 490src/util/helper.c
491src/util/load.c 491src/util/load.c
@@ -514,13 +514,13 @@ src/util/tun.c
514src/util/w32cat.c 514src/util/w32cat.c
515src/util/win.c 515src/util/win.c
516src/util/winproc.c 516src/util/winproc.c
517src/vpn/gnunet-helper-vpn-windows.c
518src/vpn/gnunet-helper-vpn.c 517src/vpn/gnunet-helper-vpn.c
518src/vpn/gnunet-helper-vpn-windows.c
519src/vpn/gnunet-service-vpn.c 519src/vpn/gnunet-service-vpn.c
520src/vpn/gnunet-vpn.c 520src/vpn/gnunet-vpn.c
521src/vpn/vpn_api.c 521src/vpn/vpn_api.c
522src/zonemaster/gnunet-service-zonemaster-monitor.c
523src/zonemaster/gnunet-service-zonemaster.c 522src/zonemaster/gnunet-service-zonemaster.c
523src/zonemaster/gnunet-service-zonemaster-monitor.c
524src/fs/fs_api.h 524src/fs/fs_api.h
525src/include/compat.h 525src/include/compat.h
526src/include/gnunet_common.h 526src/include/gnunet_common.h