From d1e7d2af59e7b7c4a633c1853e43d3c35d3c9f88 Mon Sep 17 00:00:00 2001 From: Willow Liquorice Date: Tue, 9 Aug 2022 22:22:43 +0100 Subject: -Moved warnings file and warningfilter.py out of repo in preparation for cleanup --- doc/doxygen/warningfilter.py | 67 - doc/doxygen/warnings | 13889 ----------------------------------------- 2 files changed, 13956 deletions(-) delete mode 100755 doc/doxygen/warningfilter.py delete mode 100644 doc/doxygen/warnings diff --git a/doc/doxygen/warningfilter.py b/doc/doxygen/warningfilter.py deleted file mode 100755 index 6a4651024..000000000 --- a/doc/doxygen/warningfilter.py +++ /dev/null @@ -1,67 +0,0 @@ -#!/usr/bin/env python3 - -import argparse as ap -import re -import sys - -def sep_re(field, separator): - return rf"{field}(?:{separator}{field})*" - -fileclass = r"[\w-]" -filename = rf"{fileclass}+" -# filename = rf"(/{fileclass}+)+\.\w" -filepath = rf"{sep_re(filename, '/')}\.(?:\w+)" -main_match = rf"(?P/{filepath}|\[generated\]):(?P\d+): warning:" -type_name = rf"(?:const )?(?:unsigned (?:long )?|struct |enum )?(?:\w+)(?: \*?const)? \*{{0,3}}" -var_def = rf"{type_name}\w+(?:\[(?:\(\d+/\d+\))?\])?" -func_params = rf"\({sep_re(var_def, ', ')}(?:,\.\.\.)?\)" -simple_name = r"\w+" -func_name = simple_name -verbose_name = rf"{sep_re(simple_name, ' ')}" -command_re = "(?:]+>|\\\w+)" -macro_params = rf"\({sep_re(simple_name, ', ')}(?:,\.\.\.)?\)" - -matches = { - "not an input @file": re.compile(rf"{main_match} the name '(?P{filepath}|{simple_name})' supplied as the argument in the \\file statement is not an input file"), - "multiple @param docs": re.compile(rf"{main_match} argument '\w+' from the argument list of \w+ has multiple @param documentation sections"), - "undocumented param (message)": re.compile(rf"{main_match} The following parameters? of {func_name}(?:{func_params}|{macro_params}) (?:is|are) not documented:"), - "undocumented param (name)": re.compile(r" parameter '[\w.]+'"), - "explicit link not resolved": re.compile(rf"{main_match} explicit link request to '\w+(?:\(\))?' could not be resolved"), - "unknown command": re.compile(rf"{main_match} Found unknown command '\\\w+'"), - "missing argument": re.compile(rf"{main_match} argument '\w+' of command @param is not found in the argument list of {func_name}(?:{func_params}|{macro_params})"), - "eof inside group": re.compile(rf"{main_match} end of file while inside a group"), - "eof inside comment": re.compile(rf"{main_match} Reached end of file while still inside a \(nested\) comment. Nesting level \d+ \(probable line reference: \d+\)"), - "blank": re.compile(rf"^\s*$"), - "eof inside code block (line 1)": re.compile(rf"{main_match} reached end of file while inside a 'code' block!"), - "eof inside code block (line 2)": re.compile(rf"The command that should end the block seems to be missing!"), - "title mismatch": re.compile(rf"{main_match} group (?P\w+): ignoring title \"(?P{verbose_name})\" that does not match old title \"(?P{verbose_name})\""), - "end of comment expecting command": re.compile(rf"{main_match} end of comment block while expecting command {command_re}"), - "no matching tag": re.compile(rf"{main_match} found [^>]+)> tag without matching <(?P=tag)>"), - "documented empty return type": re.compile(rf"{main_match} documented empty return type of {func_name}"), - "unsupported tag": re.compile(rf"{main_match} Unsupported xml/html tag <(?P[^>]+)> found"), - "expected whitespace after command": re.compile(rf"{main_match} expected whitespace after \\(?P\w+) command"), - "illegal command": re.compile(rf"{main_match} Illegal command (?P(?:@|\\)\w+) as part of a (?P\\\w+) command"), - "undeclared symbol": re.compile(rf"{main_match} documented symbol '\w+' was not declared or defined\."), - "nameless member": re.compile(rf"{main_match} member with no name found."), - "end of empty list": re.compile(rf"{main_match} End of list marker found without any preceding list items"), -# "": re.compile(rf"{main_match} "), -} - -parser = ap.ArgumentParser() -parser.add_argument("filename") -args = parser.parse_args() - -counts = {**{k: 0 for k in matches.keys()}, - **{"unsorted":0}} - -with open(args.filename, "r") as file: - for line in file.readlines(): - for key, regex in matches.items(): - if regex.match(line): - counts[key] += 1 - break - else: - print(line.strip("\n"), file=sys.stderr) - counts["unsorted"] += 1 - -print(counts) diff --git a/doc/doxygen/warnings b/doc/doxygen/warnings deleted file mode 100644 index 51c432554..000000000 --- a/doc/doxygen/warnings +++ /dev/null @@ -1,13889 +0,0 @@ -sed 's/\(HAVE_DOT.*=\).*/\1 NO/' gnunet.doxy | doxygen - -warning: doxygen no longer ships with the FreeSans font. -You may want to clear or change DOT_FONTNAME. -Otherwise you run the risk that the wrong font is being used for dot generated graphs. -/home/william/Git/gnunet/src/include/gnunet_client_lib.h:108: warning: end of file while inside a group -/home/william/Git/gnunet/src/include/gnunet_gns_service.h:241: warning: end of file while inside a group -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:1129: warning: end of file while inside a group -/home/william/Git/gnunet/src/include/gnunet_mst_lib.h:174: warning: end of file while inside a group -/home/william/Git/gnunet/src/include/gnunet_nc_lib.h:108: warning: end of file while inside a group -/home/william/Git/gnunet/src/include/gnunet_service_lib.h:455: warning: end of file while inside a group -/home/william/Git/gnunet/src/include/gnunet_transport_core_service.h:183: warning: Reached end of file while still inside a (nested) comment. Nesting level 1 (probable line reference: 130) -/home/william/Git/gnunet/src/include/gnunet_transport_core_service.h:183: warning: reached end of file while inside a 'code' block! -The command that should end the block seems to be missing! - -/home/william/Git/gnunet/src/include/gnunet_transport_core_service.h:183: warning: end of file while inside a group -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:11153: warning: Reached end of file while still inside a (nested) comment. Nesting level 1 (probable line reference: 898) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:909: warning: reached end of file while inside a 'code' block! -The command that should end the block seems to be missing! - -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:2609: warning: reached end of file while inside a 'code' block! -The command that should end the block seems to be missing! - -/home/william/Git/gnunet/src/transport/transport_api2_core.c:805: warning: Reached end of file while still inside a (nested) comment. Nesting level 1 (probable line reference: 681) -/home/william/Git/gnunet/src/transport/transport_api2_core.c:805: warning: reached end of file while inside a 'code' block! -The command that should end the block seems to be missing! - -/home/william/Git/gnunet/src/transport/transport_api_core.c:969: warning: Reached end of file while still inside a (nested) comment. Nesting level 1 (probable line reference: 932) -/home/william/Git/gnunet/src/transport/transport_api_core.c:969: warning: reached end of file while inside a 'code' block! -The command that should end the block seems to be missing! - -/home/william/Git/gnunet/src/include/gnunet_block_lib.h:29: warning: group block: ignoring title "Block library" that does not match old title "Block group library" - -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:28: warning: group nat: ignoring title "NAT library" that does not match old title "NAT testing library" - -/home/william/Git/gnunet/src/include/gnunet_nc_lib.h:29: warning: group mq: ignoring title "NC library" that does not match old title "MQ library" - -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:29: warning: group set: ignoring title "Set intersection service" that does not match old title "Set service" - -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:29: warning: group set: ignoring title "Set union service" that does not match old title "Set service" - -/home/william/Git/gnunet/src/include/gnunet_transport_hello_service.h:31: warning: group transport: ignoring title "Transport service" that does not match old title "TRANSPORT service" - -/home/william/Git/gnunet/src/include/gnunet_transport_manipulation_service.h:29: warning: group transport: ignoring title "Transport service" that does not match old title "TRANSPORT service" - -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:29: warning: group transport: ignoring title "Transport service" that does not match old title "TRANSPORT service" - -/home/william/Git/gnunet/src/ats/gnunet-ats-solver-eval.c:20: warning: the name 'ats-tests/ats-testing-experiment.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/ats/gnunet-ats-solver-eval.h:20: warning: the name 'ats-tests/ats-testing-experiment.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/auction/gnunet-auction-info.c:21: warning: the name 'auction/gnunet-auction.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/auction/gnunet-auction-join.c:21: warning: the name 'auction/gnunet-auction.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_paths.h:21: warning: the name 'cadet/gnunet-service-cadet-new_paths.h' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/core/gnunet-service-core_sessions.h:21: warning: the name 'core/gnunet-service-core_neighbours.h' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/dhtu/testing_dhtu_cmd_send.c:21: warning: the name 'testing/testing_dhtu_cmd_send.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/dns/gnunet-zonewalk.c:21: warning: the name 'src/dns/gnunet-zoneimport.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/gnsrecord/gnunet-gnsrecord-tvg.c:21: warning: the name 'util/gnunet-gns-tvg.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/gnsrecord/json_gnsrecord.c:21: warning: the name 'json/json_gnsrecord.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/include/gnunet_nt_lib.h:20: warning: the name 'network' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/nat-auto/gnunet-nat-auto.c:21: warning: the name 'src/nat/gnunet-nat-auto.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/nat-auto/gnunet-nat-auto_legacy.c:21: warning: the name 'nat/nat_test.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/nat-auto/gnunet-nat-server.c:21: warning: the name 'src/nat/gnunet-nat-server.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/nat-auto/gnunet-service-nat-auto_legacy.c:21: warning: the name 'nat/nat_auto.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/nat-auto/nat_auto_api_test.c:20: warning: the name 'nat/nat_auto_api_test.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/nt/nt.c:20: warning: the name 'nt/nt_api_scanner.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/peerinfo-tool/plugin_rest_peerinfo.c:22: warning: the name 'peerinfo/plugin_rest_peerinfo.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/reclaim/gnunet-did.c:31: warning: the name 'src/did/gnunet-did.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/reclaim/json_reclaim.c:21: warning: the name 'rest-plugins/json_reclaim.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/reclaim/json_reclaim.h:21: warning: the name 'rest-plugins/json_reclaim.h' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/reclaim/plugin_reclaim_attribute_basic.c:21: warning: the name 'reclaim-attribute/plugin_reclaim_attribute_gnuid.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/reclaim/plugin_rest_openid_connect.c:22: warning: the name 'identity/plugin_rest_openid_connect.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/reclaim/reclaim_attribute.c:21: warning: the name 'reclaim-attribute/reclaim_attribute.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/reclaim/reclaim_attribute.h:21: warning: the name 'reclaim-attribute/reclaim_attribute.h' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/rest/plugin_rest_config.c:21: warning: the name 'gns/plugin_rest_config.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/rest/plugin_rest_copying.c:21: warning: the name 'gns/plugin_rest_copying.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/revocation/gnunet-revocation-tvg.c:21: warning: the name 'util/gnunet-revocation-tvg.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/revocation/plugin_block_revocation.c:21: warning: the name 'block/plugin_block_revocation.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:20: warning: the name 'rps/test_rps.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/seti/gnunet-service-seti.c:20: warning: the name 'set/gnunet-service-seti.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/seti/gnunet-seti-profiler.c:21: warning: the name 'set/gnunet-seti-profiler.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/seti/seti.h:20: warning: the name 'set/seti.h' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/setu/gnunet-service-setu_strata_estimator.c:20: warning: the name 'set/gnunet-service-setu_strata_estimator.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/setu/gnunet-service-setu_strata_estimator.h:21: warning: the name 'set/gnunet-service-setu_strata_estimator.h' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/setu/setu_api.c:20: warning: the name 'set/setu_api.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/testing/gnunet-cmds-helper.c:21: warning: the name 'testbed/gnunet-cmds-helper.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/testing/testing_api_cmd_block_until_external_trigger.c:21: warning: the name 'testing_api_cmd_block_until_all_peers_started.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/testing/testing_api_cmd_netjail_start_testsystem.c:21: warning: the name 'testing/testing_api_cmd_hello_world.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/testing/testing_api_cmd_netjail_stop_testsystem.c:21: warning: the name 'testing/testing_api_cmd_hello_world.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/transport/tcp_connection_legacy.c:21: warning: the name 'util/connection.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/transport/tcp_server_legacy.c:21: warning: the name 'util/server.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/transport/tcp_server_mst_legacy.c:21: warning: the name 'util/server_mst.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/transport/transport_api_cmd_backchannel_check.c:21: warning: the name 'testing_api_cmd_backchannel_check.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/transport/transport_api_cmd_connecting_peers.c:21: warning: the name 'testing_api_cmd_start_peer.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/transport/transport_api_cmd_send_simple.c:21: warning: the name 'testing_api_cmd_start_peer.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/transport/transport_api_cmd_start_peer.c:21: warning: the name 'testing_api_cmd_start_peer.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/transport/transport_api_cmd_stop_peer.c:21: warning: the name 'testing_api_cmd_stop_peer.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/transport/transport_api_traits.c:21: warning: the name 'transport/test_transport_start_with_config.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/util/dnsstub.c:20: warning: the name 'dns/dnsstub.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/util/gnunet-crypto-tvg.c:21: warning: the name 'util/gnunet-crypto-tgv.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/util/regex.c:20: warning: the name 'src/tun/regex.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/src/util/tun.c:21: warning: the name 'tun/tun.c' supplied as the argument in the \file statement is not an input file -/home/william/Git/gnunet/contrib/web/log.php:84: warning: documented symbol 'if' was not declared or defined. -/home/william/Git/gnunet/contrib/web/log.php:100: warning: documented symbol 'if' was not declared or defined. -/home/william/Git/gnunet/doc/tutorial/examples/005.c:5: warning: member with no name found. -/home/william/Git/gnunet/src/cadet/cadet.h:301: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_CADET_LOCAL_INFO_TUNNEL' could not be resolved -/home/william/Git/gnunet/src/cadet/cadet.h:302: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_CADET_LOCAL_INFO_PEER' could not be resolved -/home/william/Git/gnunet/src/cadet/cadet.h:460: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_CADET_LOCAL_INFO_TUNNEL' could not be resolved -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.h:192: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_CADET_CONNECTION_INITIATOR' could not be resolved -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_paths.c:310: warning: explicit link request to 'find_peer_at()' could not be resolved -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.c:227: warning: Found unknown command '\path_tails' -/home/william/Git/gnunet/src/conversation/conversation.h:265: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_CONVERSATION_RING' could not be resolved -/home/william/Git/gnunet/src/conversation/conversation_api_call.c:333: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_CONVERSATION_CS_HANG_UP' could not be resolved -/home/william/Git/gnunet/src/core/gnunet-service-core.c:380: warning: explicit link request to 'client_tokenizer_callback()' could not be resolved -/home/william/Git/gnunet/src/core/gnunet-service-core_typemap.h:91: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_CORE_COMRESSED_TYPE_MAP' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_dht_service.h:177: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_DHT_HOP' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_dht_service.h:128: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_DHT_HOP' could not be resolved -/home/william/Git/gnunet/src/dht/gnunet-dht-put.c:59: warning: explicit link request to 'GNUNET_DHT_DEMULTIPLEX_EVERYWHERE' could not be resolved -/home/william/Git/gnunet/src/exit/exit.h:96: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_VPN_TCP_DATA' could not be resolved -/home/william/Git/gnunet/src/exit/gnunet-daemon-exit.c:3513: warning: explicit link request to 'udp_services' could not be resolved -/home/william/Git/gnunet/src/exit/gnunet-daemon-exit.c:3513: warning: explicit link request to 'tcp_services' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:661: warning: explicit link request to 'GNUNET_GNSRECORD_PublicKey' could not be resolved -/home/william/Git/gnunet/src/hello/hello-ng.c:39: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_ADDRESS' could not be resolved -/home/william/Git/gnunet/src/hello/hello-uri.c:51: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_HELLO' could not be resolved -/home/william/Git/gnunet/src/hello/hello-uri.c:136: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_HELLO' could not be resolved -/home/william/Git/gnunet/src/hello/hello-uri.c:102: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_HELLO' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:661: warning: explicit link request to 'GNUNET_GNSRECORD_PublicKey' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:794: warning: found tag without matching -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:794: warning: found tag without matching -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:1031: warning: explicit link request to 'gnunet_mq_impl_send_continue' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:131: warning: explicit link request to 'GNUNET_MQ_extract_nexted_mh' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:470: warning: explicit link request to 'GNUNET_MY_exect_prepared()' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:4275: warning: explicit link request to 'view' could not be resolved -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:184: warning: end of comment block while expecting command -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:184: warning: end of comment block while expecting command -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:184: warning: end of comment block while expecting command -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:184: warning: end of comment block while expecting command -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_kind.h:153: warning: end of comment block while expecting command -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_kind.h:153: warning: end of comment block while expecting command -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:794: warning: found tag without matching -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:794: warning: found tag without matching -/home/william/Git/gnunet/src/my/my_result_helper.c:533: warning: expected whitespace after \a command -/home/william/Git/gnunet/src/namestore/namestore.h:348: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_MONITOR_NEXT' could not be resolved -/home/william/Git/gnunet/src/nat-auto/gnunet-service-nat-auto.c:293: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_NAT_REQUEST_AUTO_CFG' could not be resolved -/home/william/Git/gnunet/src/nat-auto/gnunet-service-nat-auto.c:164: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_NAT_REQUEST_AUTO_CFG' could not be resolved -/home/william/Git/gnunet/src/nat-auto/nat-auto.h:72: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_NAT_REQUEST_AUTO_CFG' could not be resolved -/home/william/Git/gnunet/src/nat/gnunet-nat.c:72: warning: explicit link request to 'bind_addr' could not be resolved -/home/william/Git/gnunet/src/reclaim/did.h:38: warning: Unsupported xml/html tag found -/home/william/Git/gnunet/src/reclaim/did.h:27: warning: Unsupported xml/html tag found -/home/william/Git/gnunet/src/reclaim/did.h:27: warning: Unsupported xml/html tag found -/home/william/Git/gnunet/src/reclaim/did.h:38: warning: Unsupported xml/html tag found -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim_tickets.c:1671: warning: Found unknown command '\GNUNET_GNSRECORD_TYPE_RECLAIM_TICKET' -/home/william/Git/gnunet/src/reclaim/reclaim_api.c:1479: warning: explicit link request to 'GNUNET_RECLAIM_get_credential_start' could not be resolved -/home/william/Git/gnunet/src/reclaim/reclaim_api.c:771: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_RECLAIM_credential_RESULT' could not be resolved -/home/william/Git/gnunet/src/reclaim/reclaim_api.c:796: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_RECLAIM_credential_RESULT' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:2566: warning: explicit link request to 'pull_map' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:1469: warning: explicit link request to 'valid_peers' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:2210: warning: explicit link request to 'view' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:1665: warning: explicit link request to 'valid_peers' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:2197: warning: explicit link request to 'view' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:1639: warning: explicit link request to 'initialise_peers' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:1572: warning: explicit link request to 'valid_peers' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.c:612: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_GETSLAVECONFIG' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.c:515: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_ADDHOST' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.c:479: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_ADDHOST' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:668: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_CREATEPEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:773: warning: explicit link request to 'GNUNET_MESSAGE_TYPDE_TESTBED_RECONFIGURE_PEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:712: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_GETPEERCONFIG' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:679: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_DESTROYPEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:701: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_DESTROYPEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:690: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_DESTROYPEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:760: warning: explicit link request to 'GNUNET_MESSAGE_TYPDE_TESTBED_RECONFIGURE_PEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:656: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_CREATEPEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_links.c:1198: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_LCONTROLLERS' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_links.h:183: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_LCONTROLLERS' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_peers.c:987: warning: explicit link request to 'GNUNET_MESSAGE_TYPDE_TESTBED_RECONFIGURE_PEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_peers.c:563: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_DESTROYPEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_peers.c:972: warning: explicit link request to 'GNUNET_MESSAGE_TYPDE_TESTBED_RECONFIGURE_PEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_peers.c:416: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_CREATEPEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_peers.c:431: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_CREATEPEER' could not be resolved -/home/william/Git/gnunet/src/testbed/testbed.h:739: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_UNDERLAYLINKMODELMSG' could not be resolved -/home/william/Git/gnunet/src/testbed/testbed_api.c:333: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_ADDHOSTCONFIRM' could not be resolved -/home/william/Git/gnunet/src/testbed/testbed_api.c:361: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_ADDHOSTCONFIRM' could not be resolved -/home/william/Git/gnunet/src/testbed/testbed_api.c:1020: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_SLAVE_INFORMATION' could not be resolved -/home/william/Git/gnunet/src/testing/testing_api_loop.c:516: warning: explicit link request to 'EXIT_FAILURE' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:227: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_COMMUNICATOR_TCP_HANDSHAKE_ACK' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:117: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_COMMUNICATOR_TCP_HANDSHAKE' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:317: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_COMMUNICATOR_TCP_REKEY' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:192: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_COMMUNICATOR_TCP_HANDSHAKE' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:155: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_COMMUNICATOR_TCP_HANDSHAKE_ACK' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:299: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_COMMUNICATOR_TCP_REKEY' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:229: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_COMMUNICATOR_UDP_HANDSHAKE' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:286: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_COMMUNICATOR_UDP_BROADCAST' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:317: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_COMMUNICATOR_UDP_BROADCAST' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:166: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_COMMUNICATOR_UDP_HANDSHAKE' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:1191: warning: explicit link request to 'receiver_heap' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:1191: warning: explicit link request to 'sender_heap' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:2142: warning: explicit link request to 'PMT_FRAGMENT_BOx' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:606: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_DV_HOP' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:411: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_EPHEMERAL' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:365: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_EPHEMERAL' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:3252: warning: Found unknown command '\dvh' -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:705: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_DV_INITIATOR' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:7555: warning: Found unknown command '\ea' -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:872: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_ADDRESS_VALIDATION_CHALLENGE' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:888: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_CHALLENGE' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:853: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_CHALLENGE' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:6929: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_DV_INITIATOR' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:562: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_DV_INITIATOR' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:640: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_DV_HOP' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:1727: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_EPHEMERAL' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-transport_validation.c:202: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_PONG_OWN' could not be resolved -/home/william/Git/gnunet/src/transport/plugin_transport_tcp.c:293: warning: explicit link request to 'LEGACY_SERVICE_shutdown()' could not be resolved -/home/william/Git/gnunet/src/transport/transport.h:449: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TRANSPORT_MONITOR_VALIDATION_REQUEST' could not be resolved -/home/william/Git/gnunet/src/transport/transport.h:388: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TRANSPORT_MONITOR_VALIDATION_RESPONSE' could not be resolved -/home/william/Git/gnunet/src/util/configuration.c:137: warning: Found unknown command '\inline' -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:1031: warning: explicit link request to 'gnunet_mq_impl_send_continue' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:131: warning: explicit link request to 'GNUNET_MQ_extract_nexted_mh' could not be resolved -/home/william/Git/gnunet/src/zonemaster/gnunet-service-zonemaster.c:209: warning: explicit link request to 'put_interval' could not be resolved -/home/william/Git/gnunet/src/abd/abd_serialization.c:143: warning: explicit link request to 'GNUNET_ABD_Credential' could not be resolved -/home/william/Git/gnunet/src/abd/abd_serialization.c:172: warning: explicit link request to 'GNUNET_ABD_Credential' could not be resolved -/home/william/Git/gnunet/src/abd/abd_serialization.c:264: warning: explicit link request to 'GNUNET_ABD_Credential' could not be resolved -/home/william/Git/gnunet/src/abd/abd_serialization.c:296: warning: explicit link request to 'GNUNET_ABD_Credential' could not be resolved -/home/william/Git/gnunet/src/abd/abd_serialization.h:45: warning: argument 'ds_count' from the argument list of GNUNET_ABD_delegation_set_get_size has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:45: warning: argument 'dsr' from the argument list of GNUNET_ABD_delegation_set_get_size has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:59: warning: argument 'd_count' from the argument list of GNUNET_ABD_delegation_set_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:59: warning: argument 'dsr' from the argument list of GNUNET_ABD_delegation_set_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:59: warning: argument 'dest_size' from the argument list of GNUNET_ABD_delegation_set_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:59: warning: argument 'dest' from the argument list of GNUNET_ABD_delegation_set_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:76: warning: argument 'len' from the argument list of GNUNET_ABD_delegation_set_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:76: warning: argument 'src' from the argument list of GNUNET_ABD_delegation_set_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:76: warning: argument 'd_count' from the argument list of GNUNET_ABD_delegation_set_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:76: warning: argument 'dsr' from the argument list of GNUNET_ABD_delegation_set_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.c:270: warning: explicit link request to 'GNUNET_ABD_Credential' could not be resolved -/home/william/Git/gnunet/src/abd/abd_serialization.h:93: warning: argument 'd_count' from the argument list of GNUNET_ABD_delegation_chain_get_size has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:93: warning: argument 'dd' from the argument list of GNUNET_ABD_delegation_chain_get_size has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:93: warning: argument 'c_count' from the argument list of GNUNET_ABD_delegation_chain_get_size has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:93: warning: argument 'cd' from the argument list of GNUNET_ABD_delegation_chain_get_size has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.c:304: warning: explicit link request to 'GNUNET_ABD_Credential' could not be resolved -/home/william/Git/gnunet/src/abd/abd_serialization.h:111: warning: argument 'd_count' from the argument list of GNUNET_ABD_delegation_chain_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:111: warning: argument 'dd' from the argument list of GNUNET_ABD_delegation_chain_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:111: warning: argument 'c_count' from the argument list of GNUNET_ABD_delegation_chain_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:111: warning: argument 'cd' from the argument list of GNUNET_ABD_delegation_chain_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:111: warning: argument 'dest_size' from the argument list of GNUNET_ABD_delegation_chain_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:111: warning: argument 'dest' from the argument list of GNUNET_ABD_delegation_chain_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:132: warning: argument 'len' from the argument list of GNUNET_ABD_delegation_chain_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:132: warning: argument 'src' from the argument list of GNUNET_ABD_delegation_chain_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:132: warning: argument 'd_count' from the argument list of GNUNET_ABD_delegation_chain_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:132: warning: argument 'dd' from the argument list of GNUNET_ABD_delegation_chain_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:132: warning: argument 'c_count' from the argument list of GNUNET_ABD_delegation_chain_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:132: warning: argument 'cd' from the argument list of GNUNET_ABD_delegation_chain_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.c:143: warning: explicit link request to 'GNUNET_ABD_Credential' could not be resolved -/home/william/Git/gnunet/src/abd/abd_serialization.c:172: warning: explicit link request to 'GNUNET_ABD_Credential' could not be resolved -/home/william/Git/gnunet/src/abd/gnunet-abd.c:430: warning: argument 'out' of command @param is not found in the argument list of parse_expiration(const char *expirationstring, int *etime_is_rel, uint64_t *etime) -/home/william/Git/gnunet/src/abd/gnunet-abd.c:430: warning: argument 'out' of command @param is not found in the argument list of parse_expiration(const char *expirationstring, int *etime_is_rel, uint64_t *etime) -/home/william/Git/gnunet/src/arm/gnunet-arm.c:728: warning: argument 'cls' from the argument list of action_loop has multiple @param documentation sections -/home/william/Git/gnunet/src/arm/gnunet-service-arm.c:1359: warning: argument 'message' of command @param is not found in the argument list of handle_list(void *cls, const struct GNUNET_ARM_Message *request) -/home/william/Git/gnunet/src/arm/gnunet-service-arm.c:1364: warning: The following parameter of handle_list(void *cls, const struct GNUNET_ARM_Message *request) is not documented: - parameter 'request' -/home/william/Git/gnunet/src/ats/gnunet-service-ats_addresses.c:670: warning: argument 'cls' of command @param is not found in the argument list of GAS_handle_request_address_list(struct GNUNET_SERVICE_Client *client, const struct AddressListRequestMessage *alrm) -/home/william/Git/gnunet/src/ats/gnunet-service-ats_addresses.c:675: warning: The following parameter of GAS_handle_request_address_list(struct GNUNET_SERVICE_Client *client, const struct AddressListRequestMessage *alrm) is not documented: - parameter 'client' -/home/william/Git/gnunet/src/ats/gnunet-service-ats_addresses.h:394: warning: argument 'peer' from the argument list of GAS_addresses_add has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_addresses.h:394: warning: argument 'plugin_name' from the argument list of GAS_addresses_add has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_addresses.h:394: warning: argument 'plugin_addr' from the argument list of GAS_addresses_add has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_addresses.h:394: warning: argument 'plugin_addr_len' from the argument list of GAS_addresses_add has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_addresses.h:394: warning: argument 'local_address_info' from the argument list of GAS_addresses_add has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_addresses.h:394: warning: argument 'session_id' from the argument list of GAS_addresses_add has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_addresses.h:394: warning: argument 'prop' from the argument list of GAS_addresses_add has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_addresses.h:411: warning: argument 'peer' from the argument list of GAS_addresses_update has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_addresses.h:411: warning: argument 'session_id' from the argument list of GAS_addresses_update has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_addresses.h:411: warning: argument 'prop' from the argument list of GAS_addresses_update has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_addresses.h:472: warning: argument 'peer' from the argument list of GAS_addresses_get_peer_info has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_addresses.h:472: warning: argument 'pi_it' from the argument list of GAS_addresses_get_peer_info has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_addresses.h:472: warning: argument 'pi_it_cls' from the argument list of GAS_addresses_get_peer_info has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_addresses.c:670: warning: argument 'cls' of command @param is not found in the argument list of GAS_handle_request_address_list(struct GNUNET_SERVICE_Client *client, const struct AddressListRequestMessage *alrm) -/home/william/Git/gnunet/src/ats/gnunet-service-ats_addresses.h:484: warning: argument 'alrm' from the argument list of GAS_handle_request_address_list has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_connectivity.h:45: warning: argument 'message' of command @param is not found in the argument list of GAS_handle_request_address(struct GNUNET_SERVICE_Client *client, const struct RequestAddressMessage *msg) -/home/william/Git/gnunet/src/ats/gnunet-service-ats_connectivity.c:82: warning: The following parameter of GAS_handle_request_address(struct GNUNET_SERVICE_Client *client, const struct RequestAddressMessage *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/ats/gnunet-service-ats_connectivity.h:45: warning: argument 'message' of command @param is not found in the argument list of GAS_handle_request_address(struct GNUNET_SERVICE_Client *client, const struct RequestAddressMessage *msg) -/home/william/Git/gnunet/src/ats/gnunet-service-ats_connectivity.h:52: warning: argument 'client' from the argument list of GAS_handle_request_address has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_connectivity.h:63: warning: argument 'client' from the argument list of GAS_handle_request_address_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_connectivity.h:63: warning: argument 'msg' from the argument list of GAS_handle_request_address_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_normalization.h:43: warning: argument 'address' from the argument list of GAS_normalization_update_property has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_plugins.h:44: warning: argument 'cfg' from the argument list of GAS_plugin_init has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_plugins.h:73: warning: argument 'address' from the argument list of GAS_plugin_notify_property_changed has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_plugins.c:498: warning: argument 'addr_net' of command @param is not found in the argument list of GAS_plugin_new_address(struct ATS_Address *new_address) -/home/william/Git/gnunet/src/ats/gnunet-service-ats_plugins.h:84: warning: argument 'new_address' from the argument list of GAS_plugin_new_address has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_preferences.h:80: warning: argument 'cls' from the argument list of GAS_preference_get_by_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_preferences.h:80: warning: argument 'id' from the argument list of GAS_preference_get_by_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_preferences.h:90: warning: argument 'client' from the argument list of GAS_preference_client_disconnect has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_reservations.h:61: warning: argument 'server' of command @param is not found in the argument list of GAS_reservations_init(void) -/home/william/Git/gnunet/src/ats/gnunet-service-ats_reservations.c:140: warning: argument 'message' of command @param is not found in the argument list of GAS_handle_reservation_request(struct GNUNET_SERVICE_Client *client, const struct ReservationRequestMessage *msg) -/home/william/Git/gnunet/src/ats/gnunet-service-ats_reservations.h:54: warning: argument 'client' from the argument list of GAS_handle_reservation_request has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_reservations.h:61: warning: argument 'server' of command @param is not found in the argument list of GAS_reservations_init(void) -/home/william/Git/gnunet/src/ats/gnunet-service-ats_scheduling.h:63: warning: argument 'peer' from the argument list of GAS_scheduling_transmit_address_suggestion has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_scheduling.h:63: warning: argument 'session_id' from the argument list of GAS_scheduling_transmit_address_suggestion has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_scheduling.h:63: warning: argument 'bandwidth_out' from the argument list of GAS_scheduling_transmit_address_suggestion has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_scheduling.h:63: warning: argument 'bandwidth_in' from the argument list of GAS_scheduling_transmit_address_suggestion has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_scheduling.c:119: warning: argument 'client' of command @param is not found in the argument list of GAS_handle_address_add(const struct AddressAddMessage *m) -/home/william/Git/gnunet/src/ats/gnunet-service-ats_scheduling.h:79: warning: argument 'm' from the argument list of GAS_handle_address_add has multiple @param documentation sections -/home/william/Git/gnunet/src/block/plugin_block_template.c:48: warning: argument 'ctx' of command @param is not found in the argument list of block_plugin_template_create_group(void *cls, enum GNUNET_BLOCK_Type type, uint32_t nonce, const void *raw_data, size_t raw_data_size, va_list va) -/home/william/Git/gnunet/src/block/plugin_block_template.c:59: warning: The following parameter of block_plugin_template_create_group(void *cls, enum GNUNET_BLOCK_Type type, uint32_t nonce, const void *raw_data, size_t raw_data_size, va_list va) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/block/plugin_block_template.c:96: warning: argument 'ctx' of command @param is not found in the argument list of block_plugin_template_check_query(void *cls, enum GNUNET_BLOCK_Type type, const struct GNUNET_HashCode *query, const void *xquery, size_t xquery_size) -/home/william/Git/gnunet/src/block/plugin_block_test.c:46: warning: argument 'ctx' of command @param is not found in the argument list of block_plugin_test_create_group(void *cls, enum GNUNET_BLOCK_Type type, uint32_t nonce, const void *raw_data, size_t raw_data_size, va_list va) -/home/william/Git/gnunet/src/block/plugin_block_test.c:57: warning: The following parameter of block_plugin_test_create_group(void *cls, enum GNUNET_BLOCK_Type type, uint32_t nonce, const void *raw_data, size_t raw_data_size, va_list va) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/block/plugin_block_test.c:94: warning: argument 'ctx' of command @param is not found in the argument list of block_plugin_test_check_query(void *cls, enum GNUNET_BLOCK_Type type, const struct GNUNET_HashCode *query, const void *xquery, size_t xquery_size) -/home/william/Git/gnunet/src/cadet/cadet_api.c:194: warning: argument 'call_cleaner' of command @param is not found in the argument list of destroy_channel(struct GNUNET_CADET_Channel *ch) -/home/william/Git/gnunet/src/cadet/cadet_api.c:461: warning: argument 'h' of command @param is not found in the argument list of handle_channel_created(void *cls, const struct GNUNET_CADET_LocalChannelCreateMessage *msg) -/home/william/Git/gnunet/src/cadet/cadet_api.c:468: warning: The following parameter of handle_channel_created(void *cls, const struct GNUNET_CADET_LocalChannelCreateMessage *msg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/cadet/cadet_api.c:529: warning: argument 'h' of command @param is not found in the argument list of handle_channel_destroy(void *cls, const struct GNUNET_CADET_LocalChannelDestroyMessage *msg) -/home/william/Git/gnunet/src/cadet/cadet_api.c:536: warning: The following parameter of handle_channel_destroy(void *cls, const struct GNUNET_CADET_LocalChannelDestroyMessage *msg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/cadet/cadet_api.c:584: warning: argument 'h' of command @param is not found in the argument list of handle_local_data(void *cls, const struct GNUNET_CADET_LocalData *message) -/home/william/Git/gnunet/src/cadet/cadet_api.c:589: warning: The following parameter of handle_local_data(void *cls, const struct GNUNET_CADET_LocalData *message) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/cadet/cadet_api.c:621: warning: argument 'h' of command @param is not found in the argument list of handle_local_ack(void *cls, const struct GNUNET_CADET_LocalAck *message) -/home/william/Git/gnunet/src/cadet/cadet_api.c:627: warning: The following parameter of handle_local_ack(void *cls, const struct GNUNET_CADET_LocalAck *message) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/cadet/cadet_api_drop_message.c:30: warning: End of list marker found without any preceding list items -/home/william/Git/gnunet/src/cadet/cadet_api_list_tunnels.c:96: warning: argument 'message' of command @param is not found in the argument list of handle_get_tunnels_end(void *cls, const struct GNUNET_MessageHeader *msg) -/home/william/Git/gnunet/src/cadet/cadet_api_list_tunnels.c:101: warning: The following parameter of handle_get_tunnels_end(void *cls, const struct GNUNET_MessageHeader *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/cadet/gnunet-cadet-profiler.c:688: warning: argument 'cls' from the argument list of tmt_rdy_ping has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-cadet-profiler.c:688: warning: argument 'size' from the argument list of tmt_rdy_ping has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-cadet-profiler.c:688: warning: argument 'buf' from the argument list of tmt_rdy_ping has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-cadet-profiler.c:661: warning: argument 'cls' of command @param is not found in the argument list of pong(struct GNUNET_CADET_Channel *channel, const struct CadetPingMessage *ping) -/home/william/Git/gnunet/src/cadet/gnunet-cadet-profiler.c:661: warning: argument 'tc' of command @param is not found in the argument list of pong(struct GNUNET_CADET_Channel *channel, const struct CadetPingMessage *ping) -/home/william/Git/gnunet/src/cadet/gnunet-cadet-profiler.c:666: warning: The following parameters of pong(struct GNUNET_CADET_Channel *channel, const struct CadetPingMessage *ping) are not documented: - parameter 'channel' - parameter 'ping' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet.c:440: warning: argument 'h_port' of command @param is not found in the argument list of bind_loose_channel(void *cls, const struct GNUNET_HashCode *port, void *value) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet.c:450: warning: The following parameter of bind_loose_channel(void *cls, const struct GNUNET_HashCode *port, void *value) is not documented: - parameter 'port' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet.c:1234: warning: argument 'server' of command @param is not found in the argument list of run(void *cls, const struct GNUNET_CONFIGURATION_Handle *c, struct GNUNET_SERVICE_Handle *service) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet.c:1240: warning: The following parameter of run(void *cls, const struct GNUNET_CONFIGURATION_Handle *c, struct GNUNET_SERVICE_Handle *service) is not documented: - parameter 'service' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet.h:295: warning: argument 'c' from the argument list of GSC_bind has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet.h:295: warning: argument 'ch' from the argument list of GSC_bind has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet.h:295: warning: argument 'dest' from the argument list of GSC_bind has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet.h:295: warning: argument 'port' from the argument list of GSC_bind has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet.h:295: warning: argument 'options' from the argument list of GSC_bind has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.c:1201: warning: Found unknown command '\e1' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.c:1201: warning: Found unknown command '\e2' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.c:1706: warning: Found unknown command '\e1' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.c:1706: warning: Found unknown command '\e2' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.h:75: warning: argument 'ch' from the argument list of GCCH_assign_type_to_drop has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.h:75: warning: argument 'message' from the argument list of GCCH_assign_type_to_drop has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.c:665: warning: argument 'owner_id' of command @param is not found in the argument list of GCCH_channel_local_new(struct CadetClient *owner, struct GNUNET_CADET_ClientChannelNumber ccn, struct CadetPeer *destination, const struct GNUNET_HashCode *port, uint32_t options) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.h:122: warning: argument 'owner' from the argument list of GCCH_channel_local_new has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.h:122: warning: argument 'destination' from the argument list of GCCH_channel_local_new has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.h:122: warning: argument 'port' from the argument list of GCCH_channel_local_new has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.h:122: warning: argument 'options' from the argument list of GCCH_channel_local_new has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.h:139: warning: argument 'ch' from the argument list of GCCH_bind has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.h:139: warning: argument 'c' from the argument list of GCCH_bind has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.h:139: warning: argument 'port' from the argument list of GCCH_bind has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.c:761: warning: argument 'chid' of command @param is not found in the argument list of GCCH_channel_incoming_new(struct CadetTunnel *t, struct GNUNET_CADET_ChannelTunnelNumber ctn, const struct GNUNET_HashCode *h_port, uint32_t options) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.c:761: warning: argument 'origin' of command @param is not found in the argument list of GCCH_channel_incoming_new(struct CadetTunnel *t, struct GNUNET_CADET_ChannelTunnelNumber ctn, const struct GNUNET_HashCode *h_port, uint32_t options) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.h:183: warning: argument 't' from the argument list of GCCH_channel_incoming_new has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.h:183: warning: argument 'h_port' from the argument list of GCCH_channel_incoming_new has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.h:183: warning: argument 'options' from the argument list of GCCH_channel_incoming_new has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.h:211: warning: argument 'ch' from the argument list of GCCH_handle_channel_plaintext_data has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.h:211: warning: argument 'cti' from the argument list of GCCH_handle_channel_plaintext_data has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.h:211: warning: argument 'msg' from the argument list of GCCH_handle_channel_plaintext_data has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.h:245: warning: argument 'ch' from the argument list of GCCH_handle_channel_open_ack has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.h:245: warning: argument 'cti' from the argument list of GCCH_handle_channel_open_ack has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.h:245: warning: argument 'port' from the argument list of GCCH_handle_channel_open_ack has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.h:268: warning: argument 'ch' from the argument list of GCCH_handle_remote_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.h:268: warning: argument 'cti' from the argument list of GCCH_handle_remote_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.h:301: warning: argument 'ch' from the argument list of GCCH_handle_local_ack has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.h:301: warning: argument 'client_ccn' from the argument list of GCCH_handle_local_ack has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.c:238: warning: explicit link request to 'GCC_destroy_from_core()' could not be resolved -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.c:238: warning: explicit link request to 'GCC_destroy_from_tunnel()' could not be resolved -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.c:434: warning: argument 'cti' of command @param is not found in the argument list of GCC_ack_observed(const struct GNUNET_CADET_ConnectionTunnelIdentifier *cid) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.c:441: warning: The following parameter of GCC_ack_observed(const struct GNUNET_CADET_ConnectionTunnelIdentifier *cid) is not documented: - parameter 'cid' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.c:828: warning: The following parameter of connection_create(struct CadetPeer *destination, struct CadetPeerPath *path, unsigned int off, struct CadetTConnection *ct, const struct GNUNET_CADET_ConnectionTunnelIdentifier *cid, enum CadetConnectionState init_state, GCC_ReadyCallback ready_cb, void *ready_cb_cls) is not documented: - parameter 'cid' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.c:885: warning: The following parameter of GCC_create_inbound(struct CadetPeer *destination, struct CadetPeerPath *path, struct CadetTConnection *ct, const struct GNUNET_CADET_ConnectionTunnelIdentifier *cid, GCC_ReadyCallback ready_cb, void *ready_cb_cls) is not documented: - parameter 'cid' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.c:982: warning: explicit link request to 'GCC_is_ready()' could not be resolved -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.c:1011: warning: argument 'out' of command @param is not found in the argument list of GCC_get_path(struct CadetConnection *cc, unsigned int *off) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.h:97: warning: argument 'destination' from the argument list of GCC_create has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.h:97: warning: argument 'path' from the argument list of GCC_create has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.h:97: warning: argument 'off' from the argument list of GCC_create has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.h:97: warning: argument 'ct' from the argument list of GCC_create has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.h:97: warning: argument 'ready_cb' from the argument list of GCC_create has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.h:97: warning: argument 'ready_cb_cls' from the argument list of GCC_create has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.h:119: warning: The following parameter of GCC_create_inbound(struct CadetPeer *destination, struct CadetPeerPath *path, struct CadetTConnection *ct, const struct GNUNET_CADET_ConnectionTunnelIdentifier *cid, GCC_ReadyCallback ready_cb, void *ready_cb_cls) is not documented: - parameter 'cid' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.c:982: warning: explicit link request to 'GCC_is_ready()' could not be resolved -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.c:987: warning: explicit link request to 'GNUNET_MQ_notify_send()' could not be resolved -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.c:993: warning: explicit link request to 'GCC_is_ready()' could not be resolved -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.h:140: warning: argument 'cc' from the argument list of GCC_transmit has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.h:140: warning: argument 'env' from the argument list of GCC_transmit has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.h:150: warning: argument 'cc' from the argument list of GCC_handle_connection_create_ack has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.c:434: warning: argument 'cti' of command @param is not found in the argument list of GCC_ack_observed(const struct GNUNET_CADET_ConnectionTunnelIdentifier *cid) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.c:452: warning: argument 'cti' of command @param is not found in the argument list of GCC_latency_observed(const struct GNUNET_CADET_ConnectionTunnelIdentifier *cid, struct GNUNET_TIME_Relative latency) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.h:305: warning: argument 'latency' from the argument list of GCC_latency_observed has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.c:1011: warning: argument 'out' of command @param is not found in the argument list of GCC_get_path(struct CadetConnection *cc, unsigned int *off) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.c:1011: warning: argument 'out' of command @param is not found in the argument list of GCC_get_path(struct CadetConnection *cc, unsigned int *off) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.h:327: warning: argument 'cc' from the argument list of GCC_get_path has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.h:327: warning: argument 'off' from the argument list of GCC_get_path has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_core.c:322: warning: The following parameter of route_message(struct CadetPeer *prev, const struct GNUNET_CADET_ConnectionTunnelIdentifier *cid, const struct GNUNET_MessageHeader *msg, const enum GNUNET_MQ_PriorityPreferences priority) is not documented: - parameter 'priority' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_core.c:616: warning: argument 'available' of command @param is not found in the argument list of dir_ready_cb(void *cls, int ready) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_core.c:629: warning: The following parameter of dir_ready_cb(void *cls, int ready) is not documented: - parameter 'ready' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_core.c:1229: warning: The following parameter of core_connect_cb(void *cls, const struct GNUNET_PeerIdentity *peer, struct GNUNET_MQ_Handle *mq) is not documented: - parameter 'mq' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_core.c:1251: warning: The following parameter of core_disconnect_cb(void *cls, const struct GNUNET_PeerIdentity *peer, void *peer_cls) is not documented: - parameter 'peer_cls' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_hello.c:58: warning: argument 'peer' of command @param is not found in the argument list of got_hello(void *cls, const struct GNUNET_PeerIdentity *id, const struct GNUNET_HELLO_Message *hello, const char *err_msg) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_hello.c:65: warning: The following parameter of got_hello(void *cls, const struct GNUNET_PeerIdentity *id, const struct GNUNET_HELLO_Message *hello, const char *err_msg) is not documented: - parameter 'id' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_paths.c:310: warning: explicit link request to 'find_peer_at()' could not be resolved -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_paths.c:471: warning: documented empty return type of GCPP_try_path_from_dht -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_paths.h:46: warning: argument 'get_path' from the argument list of GCPP_try_path_from_dht has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_paths.h:46: warning: argument 'get_path_length' from the argument list of GCPP_try_path_from_dht has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_paths.h:46: warning: argument 'put_path' from the argument list of GCPP_try_path_from_dht has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_paths.h:46: warning: argument 'put_path_length' from the argument list of GCPP_try_path_from_dht has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_paths.h:46: warning: documented empty return type of GCPP_try_path_from_dht -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_paths.c:599: warning: argument 'path' of command @param is not found in the argument list of GCPP_get_path_from_route(unsigned int path_length, const struct GNUNET_PeerIdentity *pids) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_paths.h:60: warning: argument 'path_length' from the argument list of GCPP_get_path_from_route has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_paths.h:157: warning: argument 'path' from the argument list of GCPP_release has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_paths.h:168: warning: argument 'path' from the argument list of GCPP_get_peer_at_offset has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_paths.h:168: warning: argument 'off' from the argument list of GCPP_get_peer_at_offset has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_paths.h:179: warning: argument 'path' from the argument list of GCPP_2s has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.c:237: warning: argument 'peer' of command @param is not found in the argument list of GCP_2s(const struct CadetPeer *cp) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.h:71: warning: argument 'cp' from the argument list of GCP_get_desirability_of_path has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.h:71: warning: argument 'off' from the argument list of GCP_get_desirability_of_path has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.h:169: warning: argument 'cp' from the argument list of GCP_iterate_paths_at has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.h:169: warning: argument 'dist' from the argument list of GCP_iterate_paths_at has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.h:169: warning: argument 'callback' from the argument list of GCP_iterate_paths_at has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.h:169: warning: argument 'callback_cls' from the argument list of GCP_iterate_paths_at has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.h:237: warning: argument 'cp' from the argument list of GCP_attach_path has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.h:237: warning: argument 'path' from the argument list of GCP_attach_path has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.h:237: warning: argument 'off' from the argument list of GCP_attach_path has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.h:237: warning: argument 'force' from the argument list of GCP_attach_path has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.h:288: warning: argument 'cp' from the argument list of GCP_set_hello has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.h:288: warning: argument 'hello' from the argument list of GCP_set_hello has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.h:337: warning: argument 'cp' from the argument list of GCP_request_mq has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.h:337: warning: argument 'cb' from the argument list of GCP_request_mq has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.h:337: warning: argument 'cb_cls' from the argument list of GCP_request_mq has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.h:364: warning: argument 'mqm' from the argument list of GCP_send has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.h:364: warning: argument 'env' from the argument list of GCP_send has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.h:391: warning: argument 'mqm' from the argument list of GCP_request_mq_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.h:391: warning: argument 'last_env' from the argument list of GCP_request_mq_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.c:686: warning: argument 'out' of command @param is not found in the argument list of t_hmac(const void *plaintext, size_t size, uint32_t iv, const struct GNUNET_CRYPTO_SymmetricSessionKey *key, struct GNUNET_ShortHashCode *hmac) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.c:905: warning: argument 'in' of command @param is not found in the argument list of t_h_encrypt(struct CadetTunnelAxolotl *ax, struct GNUNET_CADET_TunnelEncryptedMessage *msg) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.c:905: warning: argument 'out' of command @param is not found in the argument list of t_h_encrypt(struct CadetTunnelAxolotl *ax, struct GNUNET_CADET_TunnelEncryptedMessage *msg) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.c:910: warning: The following parameter of t_h_encrypt(struct CadetTunnelAxolotl *ax, struct GNUNET_CADET_TunnelEncryptedMessage *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.c:1501: warning: argument 'in' of command @param is not found in the argument list of update_ax_by_kx(struct CadetTunnelAxolotl *ax, const struct GNUNET_PeerIdentity *pid, const struct GNUNET_CRYPTO_EcdhePublicKey *ephemeral_key, const struct GNUNET_CRYPTO_EcdhePublicKey *ratchet_key) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.c:1501: warning: argument 'out' of command @param is not found in the argument list of update_ax_by_kx(struct CadetTunnelAxolotl *ax, const struct GNUNET_PeerIdentity *pid, const struct GNUNET_CRYPTO_EcdhePublicKey *ephemeral_key, const struct GNUNET_CRYPTO_EcdhePublicKey *ratchet_key) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.c:1514: warning: The following parameter of update_ax_by_kx(struct CadetTunnelAxolotl *ax, const struct GNUNET_PeerIdentity *pid, const struct GNUNET_CRYPTO_EcdhePublicKey *ephemeral_key, const struct GNUNET_CRYPTO_EcdhePublicKey *ratchet_key) is not documented: - parameter 'ax' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.c:2843: warning: argument 'cls' of command @param is not found in the argument list of GCT_consider_path(struct CadetTunnel *t, struct CadetPeerPath *p, unsigned int off) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.c:2843: warning: argument 'path' of command @param is not found in the argument list of GCT_consider_path(struct CadetTunnel *t, struct CadetPeerPath *p, unsigned int off) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.c:2851: warning: The following parameters of GCT_consider_path(struct CadetTunnel *t, struct CadetPeerPath *p, unsigned int off) are not documented: - parameter 't' - parameter 'p' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.c:3221: warning: argument 'options' of command @param is not found in the argument list of GCT_add_inbound_connection(struct CadetTunnel *t, const struct GNUNET_CADET_ConnectionTunnelIdentifier *cid, struct CadetPeerPath *path) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.c:3454: warning: argument 'The' of command @param is not found in the argument list of GCT_send(struct CadetTunnel *t, const struct GNUNET_MessageHeader *message, GCT_SendContinuation cont, void *cont_cls, struct GNUNET_CADET_ChannelTunnelNumber *ctn) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.c:3464: warning: The following parameter of GCT_send(struct CadetTunnel *t, const struct GNUNET_MessageHeader *message, GCT_SendContinuation cont, void *cont_cls, struct GNUNET_CADET_ChannelTunnelNumber *ctn) is not documented: - parameter 'ctn' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.c:3221: warning: argument 'options' of command @param is not found in the argument list of GCT_add_inbound_connection(struct CadetTunnel *t, const struct GNUNET_CADET_ConnectionTunnelIdentifier *cid, struct CadetPeerPath *path) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.h:133: warning: argument 't' from the argument list of GCT_add_inbound_connection has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.h:133: warning: argument 'cid' from the argument list of GCT_add_inbound_connection has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.h:133: warning: argument 'path' from the argument list of GCT_add_inbound_connection has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.h:160: warning: argument 'cls' of command @param is not found in the argument list of GCT_consider_path(struct CadetTunnel *t, struct CadetPeerPath *p, unsigned int off) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.h:160: warning: argument 'path' of command @param is not found in the argument list of GCT_consider_path(struct CadetTunnel *t, struct CadetPeerPath *p, unsigned int off) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.h:168: warning: The following parameters of GCT_consider_path(struct CadetTunnel *t, struct CadetPeerPath *p, unsigned int off) are not documented: - parameter 't' - parameter 'p' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.h:168: warning: argument 't' from the argument list of GCT_add_channel has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.h:168: warning: argument 'ch' from the argument list of GCT_add_channel has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.c:3454: warning: argument 'The' of command @param is not found in the argument list of GCT_send(struct CadetTunnel *t, const struct GNUNET_MessageHeader *message, GCT_SendContinuation cont, void *cont_cls, struct GNUNET_CADET_ChannelTunnelNumber *ctn) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.h:234: warning: argument 't' from the argument list of GCT_send has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.h:234: warning: argument 'message' from the argument list of GCT_send has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.h:234: warning: argument 'cont' from the argument list of GCT_send has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.h:234: warning: argument 'cont_cls' from the argument list of GCT_send has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.h:234: warning: The following parameter of GCT_send(struct CadetTunnel *t, const struct GNUNET_MessageHeader *message, GCT_SendContinuation cont, void *cont_cls, struct GNUNET_CADET_ChannelTunnelNumber *ctn) is not documented: - parameter 'ctn' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.c:3543: warning: argument 'q' of command @param is not found in the argument list of GCT_send_cancel(struct CadetTunnelQueueEntry *tq) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.h:261: warning: argument 't' from the argument list of GCT_count_channels has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.h:271: warning: argument 't' from the argument list of GCT_count_any_connections has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.h:350: warning: argument 'ct' from the argument list of GCT_handle_kx has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.h:350: warning: argument 'msg' from the argument list of GCT_handle_kx has multiple @param documentation sections -/home/william/Git/gnunet/src/consensus/plugin_block_consensus.c:53: warning: argument 'ctx' of command @param is not found in the argument list of block_plugin_consensus_check_query(void *cls, enum GNUNET_BLOCK_Type type, const struct GNUNET_HashCode *query, const void *xquery, size_t xquery_size) -/home/william/Git/gnunet/src/conversation/conversation_api.c:301: warning: argument 'msg' of command @param is not found in the argument list of handle_phone_hangup(void *cls, const struct ClientPhoneHangupMessage *hang) -/home/william/Git/gnunet/src/conversation/conversation_api.c:306: warning: The following parameter of handle_phone_hangup(void *cls, const struct ClientPhoneHangupMessage *hang) is not documented: - parameter 'hang' -/home/william/Git/gnunet/src/conversation/conversation_api_call.c:333: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_CONVERSATION_CS_HANG_UP' could not be resolved -/home/william/Git/gnunet/src/conversation/conversation_api_call.c:333: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_CONVERSATION_CS_HANG_UP' could not be resolved -/home/william/Git/gnunet/src/conversation/conversation_api_call.c:376: warning: argument 'msg' of command @param is not found in the argument list of check_call_audio(void *cls, const struct ClientAudioMessage *am) -/home/william/Git/gnunet/src/conversation/conversation_api_call.c:382: warning: The following parameter of check_call_audio(void *cls, const struct ClientAudioMessage *am) is not documented: - parameter 'am' -/home/william/Git/gnunet/src/conversation/conversation_api_call.c:392: warning: argument 'msg' of command @param is not found in the argument list of handle_call_audio(void *cls, const struct ClientAudioMessage *am) -/home/william/Git/gnunet/src/conversation/conversation_api_call.c:399: warning: The following parameter of handle_call_audio(void *cls, const struct ClientAudioMessage *am) is not documented: - parameter 'am' -/home/william/Git/gnunet/src/conversation/gnunet-helper-audio-playback-gst.c:235: warning: The following parameter of stdin_receiver(void *cls, const struct GNUNET_MessageHeader *msg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/conversation/gnunet-helper-audio-playback.c:584: warning: The following parameter of stdin_receiver(void *cls, const struct GNUNET_MessageHeader *msg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/conversation/gnunet_gst.c:702: warning: The following parameter of stdin_receiver(void *cls, const struct GNUNET_MessageHeader *msg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/core/core_api.c:159: warning: argument 'tc' of command @param is not found in the argument list of reconnect_task(void *cls) -/home/william/Git/gnunet/src/core/gnunet-service-core.c:380: warning: explicit link request to 'client_tokenizer_callback()' could not be resolved -/home/william/Git/gnunet/src/core/gnunet-service-core_kx.c:491: warning: Illegal command @return as part of a \a command -/home/william/Git/gnunet/src/core/gnunet-service-core_kx.c:707: warning: The following parameter of handle_transport_notify_connect(void *cls, const struct GNUNET_PeerIdentity *pid, struct GNUNET_MQ_Handle *mq) is not documented: - parameter 'mq' -/home/william/Git/gnunet/src/core/gnunet-service-core_kx.c:1207: warning: argument 'kx' of command @param is not found in the argument list of handle_pong(void *cls, const struct PongMessage *m) -/home/william/Git/gnunet/src/core/gnunet-service-core_kx.c:1214: warning: The following parameter of handle_pong(void *cls, const struct PongMessage *m) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/core/gnunet-service-core_kx.c:1900: warning: argument 'target' of command @param is not found in the argument list of GSC_NEIGHBOURS_check_excess_bandwidth(const struct GSC_KeyExchangeInfo *kxinfo) -/home/william/Git/gnunet/src/core/gnunet-service-core_kx.c:1905: warning: The following parameter of GSC_NEIGHBOURS_check_excess_bandwidth(const struct GSC_KeyExchangeInfo *kxinfo) is not documented: - parameter 'kxinfo' -/home/william/Git/gnunet/src/core/gnunet-service-core_kx.h:47: warning: argument 'kx' from the argument list of GSC_KX_encrypt_and_transmit has multiple @param documentation sections -/home/william/Git/gnunet/src/core/gnunet-service-core_kx.h:47: warning: argument 'payload' from the argument list of GSC_KX_encrypt_and_transmit has multiple @param documentation sections -/home/william/Git/gnunet/src/core/gnunet-service-core_kx.h:47: warning: argument 'payload_size' from the argument list of GSC_KX_encrypt_and_transmit has multiple @param documentation sections -/home/william/Git/gnunet/src/core/gnunet-service-core_kx.h:71: warning: argument 'target' of command @param is not found in the argument list of GSC_NEIGHBOURS_check_excess_bandwidth(const struct GSC_KeyExchangeInfo *kxinfo) -/home/william/Git/gnunet/src/core/gnunet-service-core_kx.h:76: warning: The following parameter of GSC_NEIGHBOURS_check_excess_bandwidth(const struct GSC_KeyExchangeInfo *kxinfo) is not documented: - parameter 'kxinfo' -/home/william/Git/gnunet/src/core/gnunet-service-core_kx.c:1887: warning: argument 'target' of command @param is not found in the argument list of GSC_NEIGHBOURS_get_queue_length(const struct GSC_KeyExchangeInfo *kxinfo) -/home/william/Git/gnunet/src/core/gnunet-service-core_sessions.c:610: warning: argument 'session' from the argument list of try_transmission has multiple @param documentation sections -/home/william/Git/gnunet/src/core/gnunet-service-core_sessions.c:477: warning: explicit link request to 'GSC_SESSIONS_dequeue()' could not be resolved -/home/william/Git/gnunet/src/core/gnunet-service-core_sessions.c:478: warning: explicit link request to 'GSC_CLIENTS_failed()' could not be resolved -/home/william/Git/gnunet/src/core/gnunet-service-core_sessions.c:483: warning: explicit link request to 'GSC_SESSIONS_dequeue()' could not be resolved -/home/william/Git/gnunet/src/core/gnunet-service-core_sessions.c:484: warning: explicit link request to 'GSC_CLIENTS_failed()' could not be resolved -/home/william/Git/gnunet/src/core/gnunet-service-core_sessions.h:98: warning: argument 'car' from the argument list of GSC_SESSIONS_queue_request has multiple @param documentation sections -/home/william/Git/gnunet/src/core/gnunet-service-core_sessions.h:120: warning: argument 'car' from the argument list of GSC_SESSIONS_transmit has multiple @param documentation sections -/home/william/Git/gnunet/src/core/gnunet-service-core_sessions.h:120: warning: argument 'msg' from the argument list of GSC_SESSIONS_transmit has multiple @param documentation sections -/home/william/Git/gnunet/src/core/gnunet-service-core_sessions.h:120: warning: argument 'priority' from the argument list of GSC_SESSIONS_transmit has multiple @param documentation sections -/home/william/Git/gnunet/src/core/gnunet-service-core_sessions.h:152: warning: argument 'peer' from the argument list of GSC_SESSIONS_set_typemap has multiple @param documentation sections -/home/william/Git/gnunet/src/core/gnunet-service-core_sessions.h:152: warning: argument 'msg' from the argument list of GSC_SESSIONS_set_typemap has multiple @param documentation sections -/home/william/Git/gnunet/src/core/gnunet-service-core_typemap.h:91: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_CORE_COMRESSED_TYPE_MAP' could not be resolved -/home/william/Git/gnunet/src/core/gnunet-service-core_typemap.h:91: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_CORE_COMRESSED_TYPE_MAP' could not be resolved -/home/william/Git/gnunet/src/core/gnunet-service-core_typemap.h:56: warning: argument 'types' from the argument list of GSC_TYPEMAP_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/core/gnunet-service-core_typemap.h:56: warning: argument 'tlen' from the argument list of GSC_TYPEMAP_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/core/gnunet-service-core_typemap.h:91: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_CORE_COMRESSED_TYPE_MAP' could not be resolved -/home/william/Git/gnunet/src/core/gnunet-service-core_typemap.h:94: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_CORE_COMRESSED_TYPE_MAP' could not be resolved -/home/william/Git/gnunet/src/core/gnunet-service-core_typemap.h:99: warning: argument 'msg' from the argument list of GSC_TYPEMAP_get_from_message has multiple @param documentation sections -/home/william/Git/gnunet/src/datacache/plugin_datacache_postgres.c:219: warning: argument 'num_result' of command @param is not found in the argument list of handle_results(void *cls, PGresult *result, unsigned int num_results) -/home/william/Git/gnunet/src/datacache/plugin_datacache_postgres.c:229: warning: The following parameter of handle_results(void *cls, PGresult *result, unsigned int num_results) is not documented: - parameter 'num_results' -/home/william/Git/gnunet/src/datacache/plugin_datacache_postgres.c:436: warning: argument 'num_result' of command @param is not found in the argument list of extract_result_cb(void *cls, PGresult *result, unsigned int num_results) -/home/william/Git/gnunet/src/datacache/plugin_datacache_postgres.c:446: warning: The following parameter of extract_result_cb(void *cls, PGresult *result, unsigned int num_results) is not documented: - parameter 'num_results' -/home/william/Git/gnunet/src/datacache/plugin_datacache_sqlite.c:149: warning: argument 'zsql' of command @param is not found in the argument list of sq_prepare(sqlite3 *dbh, const char *zSql, sqlite3_stmt **ppStmt) -/home/william/Git/gnunet/src/datacache/plugin_datacache_sqlite.c:158: warning: The following parameter of sq_prepare(sqlite3 *dbh, const char *zSql, sqlite3_stmt **ppStmt) is not documented: - parameter 'zSql' -/home/william/Git/gnunet/src/datastore/datastore_api.c:280: warning: argument 'qe' of command @param is not found in the argument list of delay_warning(void *cls) -/home/william/Git/gnunet/src/datastore/datastore_api.c:284: warning: The following parameter of delay_warning(void *cls) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/datastore/gnunet-service-datastore.c:561: warning: argument 'message' of command @param is not found in the argument list of handle_reserve(void *cls, const struct ReserveMessage *msg) -/home/william/Git/gnunet/src/datastore/gnunet-service-datastore.c:566: warning: The following parameter of handle_reserve(void *cls, const struct ReserveMessage *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/datastore/gnunet-service-datastore.c:645: warning: argument 'message' of command @param is not found in the argument list of handle_release_reserve(void *cls, const struct ReleaseReserveMessage *msg) -/home/william/Git/gnunet/src/datastore/gnunet-service-datastore.c:650: warning: The following parameter of handle_release_reserve(void *cls, const struct ReleaseReserveMessage *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/datastore/gnunet-service-datastore.c:727: warning: explicit link request to 'GNUNET_SYSERROR' could not be resolved -/home/william/Git/gnunet/src/datastore/gnunet-service-datastore.c:769: warning: argument 'message' of command @param is not found in the argument list of check_put(void *cls, const struct DataMessage *dm) -/home/william/Git/gnunet/src/datastore/gnunet-service-datastore.c:775: warning: The following parameter of check_put(void *cls, const struct DataMessage *dm) is not documented: - parameter 'dm' -/home/william/Git/gnunet/src/datastore/gnunet-service-datastore.c:788: warning: argument 'message' of command @param is not found in the argument list of handle_put(void *cls, const struct DataMessage *dm) -/home/william/Git/gnunet/src/datastore/gnunet-service-datastore.c:793: warning: The following parameter of handle_put(void *cls, const struct DataMessage *dm) is not documented: - parameter 'dm' -/home/william/Git/gnunet/src/datastore/gnunet-service-datastore.c:950: warning: argument 'message' of command @param is not found in the argument list of handle_get_zero_anonymity(void *cls, const struct GetZeroAnonymityMessage *msg) -/home/william/Git/gnunet/src/datastore/gnunet-service-datastore.c:955: warning: The following parameter of handle_get_zero_anonymity(void *cls, const struct GetZeroAnonymityMessage *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/datastore/gnunet-service-datastore.c:989: warning: explicit link request to 'GNUNET_SYSERROR' could not be resolved -/home/william/Git/gnunet/src/datastore/gnunet-service-datastore.c:1029: warning: argument 'message' of command @param is not found in the argument list of check_remove(void *cls, const struct DataMessage *dm) -/home/william/Git/gnunet/src/datastore/gnunet-service-datastore.c:1035: warning: The following parameter of check_remove(void *cls, const struct DataMessage *dm) is not documented: - parameter 'dm' -/home/william/Git/gnunet/src/datastore/gnunet-service-datastore.c:1048: warning: argument 'client' of command @param is not found in the argument list of handle_remove(void *cls, const struct DataMessage *dm) -/home/william/Git/gnunet/src/datastore/gnunet-service-datastore.c:1048: warning: argument 'message' of command @param is not found in the argument list of handle_remove(void *cls, const struct DataMessage *dm) -/home/william/Git/gnunet/src/datastore/gnunet-service-datastore.c:1054: warning: The following parameter of handle_remove(void *cls, const struct DataMessage *dm) is not documented: - parameter 'dm' -/home/william/Git/gnunet/src/datastore/plugin_datastore_heap.c:184: warning: The following parameter of heap_plugin_estimate_size(void *cls, unsigned long long *estimate) is not documented: - parameter 'estimate' -/home/william/Git/gnunet/src/datastore/plugin_datastore_mysql.c:278: warning: The following parameter of mysql_plugin_estimate_size(void *cls, unsigned long long *estimate) is not documented: - parameter 'estimate' -/home/william/Git/gnunet/src/datastore/plugin_datastore_postgres.c:198: warning: The following parameter of postgres_plugin_estimate_size(void *cls, unsigned long long *estimate) is not documented: - parameter 'estimate' -/home/william/Git/gnunet/src/datastore/plugin_datastore_postgres.c:770: warning: argument 'num_result' of command @param is not found in the argument list of process_keys(void *cls, PGresult *result, unsigned int num_results) -/home/william/Git/gnunet/src/datastore/plugin_datastore_postgres.c:777: warning: The following parameter of process_keys(void *cls, PGresult *result, unsigned int num_results) is not documented: - parameter 'num_results' -/home/william/Git/gnunet/src/datastore/plugin_datastore_sqlite.c:1233: warning: The following parameter of sqlite_plugin_estimate_size(void *cls, unsigned long long *estimate) is not documented: - parameter 'estimate' -/home/william/Git/gnunet/src/datastore/plugin_datastore_template.c:51: warning: The following parameter of template_plugin_estimate_size(void *cls, unsigned long long *estimate) is not documented: - parameter 'estimate' -/home/william/Git/gnunet/src/dht/gnunet-dht-put.c:59: warning: explicit link request to 'GNUNET_DHT_DEMULTIPLEX_EVERYWHERE' could not be resolved -/home/william/Git/gnunet/src/dht/gnunet-dht-put.c:59: warning: explicit link request to 'GNUNET_DHT_DEMULTIPLEX_EVERYWHERE' could not be resolved -/home/william/Git/gnunet/src/dht/gnunet-service-dht.h:171: warning: argument 'options' from the argument list of GDS_CLIENTS_process_get has multiple @param documentation sections -/home/william/Git/gnunet/src/dht/gnunet-service-dht.h:171: warning: argument 'type' from the argument list of GDS_CLIENTS_process_get has multiple @param documentation sections -/home/william/Git/gnunet/src/dht/gnunet-service-dht.h:171: warning: argument 'hop_count' from the argument list of GDS_CLIENTS_process_get has multiple @param documentation sections -/home/william/Git/gnunet/src/dht/gnunet-service-dht.h:171: warning: argument 'desired_replication_level' from the argument list of GDS_CLIENTS_process_get has multiple @param documentation sections -/home/william/Git/gnunet/src/dht/gnunet-service-dht.h:171: warning: argument 'path_length' from the argument list of GDS_CLIENTS_process_get has multiple @param documentation sections -/home/william/Git/gnunet/src/dht/gnunet-service-dht.h:171: warning: argument 'path' from the argument list of GDS_CLIENTS_process_get has multiple @param documentation sections -/home/william/Git/gnunet/src/dht/gnunet-service-dht.h:171: warning: argument 'key' from the argument list of GDS_CLIENTS_process_get has multiple @param documentation sections -/home/william/Git/gnunet/src/dht/gnunet-service-dht_clients.c:591: warning: argument 'message' of command @param is not found in the argument list of check_dht_local_get(void *cls, const struct GNUNET_DHT_ClientGetMessage *get) -/home/william/Git/gnunet/src/dht/gnunet-service-dht_clients.c:577: warning: The following parameter of check_dht_local_get(void *cls, const struct GNUNET_DHT_ClientGetMessage *get) is not documented: - parameter 'get' -/home/william/Git/gnunet/src/dht/gnunet-service-dht_clients.c:609: warning: argument 'message' of command @param is not found in the argument list of handle_dht_local_get(void *cls, const struct GNUNET_DHT_ClientGetMessage *get) -/home/william/Git/gnunet/src/dht/gnunet-service-dht_clients.c:614: warning: The following parameter of handle_dht_local_get(void *cls, const struct GNUNET_DHT_ClientGetMessage *get) is not documented: - parameter 'get' -/home/william/Git/gnunet/src/dht/gnunet-service-dht_clients.c:729: warning: argument 'message' of command @param is not found in the argument list of check_dht_local_get_result_seen(void *cls, const struct GNUNET_DHT_ClientGetResultSeenMessage *seen) -/home/william/Git/gnunet/src/dht/gnunet-service-dht_clients.c:614: warning: The following parameter of check_dht_local_get_result_seen(void *cls, const struct GNUNET_DHT_ClientGetResultSeenMessage *seen) is not documented: - parameter 'seen' -/home/william/Git/gnunet/src/dht/gnunet-service-dht_clients.c:755: warning: argument 'message' of command @param is not found in the argument list of handle_dht_local_get_result_seen(void *cls, const struct GNUNET_DHT_ClientGetResultSeenMessage *seen) -/home/william/Git/gnunet/src/dht/gnunet-service-dht_clients.c:760: warning: The following parameter of handle_dht_local_get_result_seen(void *cls, const struct GNUNET_DHT_ClientGetResultSeenMessage *seen) is not documented: - parameter 'seen' -/home/william/Git/gnunet/src/dht/gnunet-service-dht_clients.c:841: warning: argument 'message' of command @param is not found in the argument list of handle_dht_local_get_stop(void *cls, const struct GNUNET_DHT_ClientGetStopMessage *dht_stop_msg) -/home/william/Git/gnunet/src/dht/gnunet-service-dht_clients.c:850: warning: The following parameter of handle_dht_local_get_stop(void *cls, const struct GNUNET_DHT_ClientGetStopMessage *dht_stop_msg) is not documented: - parameter 'dht_stop_msg' -/home/william/Git/gnunet/src/dht/gnunet-service-dht_clients.c:1570: warning: argument 'server' of command @param is not found in the argument list of GDS_CLIENTS_init(void) -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.c:520: warning: argument 'key' of command @param is not found in the argument list of sign_path(const void *data, size_t data_size, struct GNUNET_TIME_Absolute exp_time, const struct GNUNET_PeerIdentity *pred, const struct GNUNET_PeerIdentity *succ, struct GNUNET_CRYPTO_EddsaSignature *sig) -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.c:529: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_DHT_PUT_HOP' could not be resolved -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.h:153: warning: Found unknown command '\para' -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.c:734: warning: The following parameter of GDS_u_connect(void *cls, struct GNUNET_DHTU_Target *target, const struct GNUNET_PeerIdentity *pid, void **ctx) is not documented: - parameter 'pid' -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.h:100: warning: argument 'type' of command @param is not found in the argument list of GDS_NEIGHBOURS_handle_reply(struct PeerInfo *pi, const struct GDS_DATACACHE_BlockData *bd, const struct GNUNET_HashCode *query_hash, unsigned int get_path_length, const struct GNUNET_DHT_PathElement *get_path) -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.c:1724: warning: argument 'message' of command @param is not found in the argument list of check_dht_p2p_put(void *cls, const struct PeerPutMessage *put) -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.c:1579: warning: The following parameter of check_dht_p2p_put(void *cls, const struct PeerPutMessage *put) is not documented: - parameter 'put' -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.c:1752: warning: argument 'message' of command @param is not found in the argument list of handle_dht_p2p_put(void *cls, const struct PeerPutMessage *put) -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.c:1757: warning: The following parameter of handle_dht_p2p_put(void *cls, const struct PeerPutMessage *put) is not documented: - parameter 'put' -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.c:1927: warning: argument 'key' of command @param is not found in the argument list of handle_find_my_hello(struct PeerInfo *pi, const struct GNUNET_HashCode *query_hash, struct GNUNET_BLOCK_Group *bg) -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.c:1936: warning: The following parameter of handle_find_my_hello(struct PeerInfo *pi, const struct GNUNET_HashCode *query_hash, struct GNUNET_BLOCK_Group *bg) is not documented: - parameter 'query_hash' -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.c:1998: warning: argument 'key' of command @param is not found in the argument list of handle_find_local_hello(struct PeerInfo *pi, const struct GNUNET_HashCode *query_hash, struct GNUNET_BLOCK_Group *bg) -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.c:2007: warning: The following parameter of handle_find_local_hello(struct PeerInfo *pi, const struct GNUNET_HashCode *query_hash, struct GNUNET_BLOCK_Group *bg) is not documented: - parameter 'query_hash' -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.c:2303: warning: argument 'message' of command @param is not found in the argument list of check_dht_p2p_result(void *cls, const struct PeerResultMessage *prm) -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.c:2257: warning: The following parameter of check_dht_p2p_result(void *cls, const struct PeerResultMessage *prm) is not documented: - parameter 'prm' -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.c:2335: warning: argument 'message' of command @param is not found in the argument list of handle_dht_p2p_result(void *cls, const struct PeerResultMessage *prm) -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.c:2340: warning: The following parameter of handle_dht_p2p_result(void *cls, const struct PeerResultMessage *prm) is not documented: - parameter 'prm' -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.c:2493: warning: argument 'message' of command @param is not found in the argument list of handle_dht_p2p_hello(void *cls, const struct GNUNET_MessageHeader *hello) -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.c:2498: warning: The following parameter of handle_dht_p2p_hello(void *cls, const struct GNUNET_MessageHeader *hello) is not documented: - parameter 'hello' -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.h:178: warning: argument 'origin' of command @param is not found in the argument list of GDS_u_receive(void *cls, void **tctx, void **sctx, const void *message, size_t message_size) -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.h:100: warning: argument 'type' of command @param is not found in the argument list of GDS_NEIGHBOURS_handle_reply(struct PeerInfo *pi, const struct GDS_DATACACHE_BlockData *bd, const struct GNUNET_HashCode *query_hash, unsigned int get_path_length, const struct GNUNET_DHT_PathElement *get_path) -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.h:153: warning: Found unknown command '\para' -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.h:160: warning: The following parameter of GDS_u_connect(void *cls, struct GNUNET_DHTU_Target *target, const struct GNUNET_PeerIdentity *pid, void **ctx) is not documented: - parameter 'pid' -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.h:178: warning: argument 'origin' of command @param is not found in the argument list of GDS_u_receive(void *cls, void **tctx, void **sctx, const void *message, size_t message_size) -/home/william/Git/gnunet/src/dht/gnunet-service-dht_routing.c:336: warning: argument 'reply_bf' of command @param is not found in the argument list of GDS_ROUTING_add(const struct GNUNET_PeerIdentity *sender, enum GNUNET_BLOCK_Type type, struct GNUNET_BLOCK_Group *bg, enum GNUNET_DHT_RouteOption options, const struct GNUNET_HashCode *key, const void *xquery, size_t xquery_size) -/home/william/Git/gnunet/src/dht/gnunet-service-dht_routing.c:336: warning: argument 'reply_bf_mutator' of command @param is not found in the argument list of GDS_ROUTING_add(const struct GNUNET_PeerIdentity *sender, enum GNUNET_BLOCK_Type type, struct GNUNET_BLOCK_Group *bg, enum GNUNET_DHT_RouteOption options, const struct GNUNET_HashCode *key, const void *xquery, size_t xquery_size) -/home/william/Git/gnunet/src/dht/gnunet-service-dht_routing.c:336: warning: argument 'reply_bf' of command @param is not found in the argument list of GDS_ROUTING_add(const struct GNUNET_PeerIdentity *sender, enum GNUNET_BLOCK_Type type, struct GNUNET_BLOCK_Group *bg, enum GNUNET_DHT_RouteOption options, const struct GNUNET_HashCode *key, const void *xquery, size_t xquery_size) -/home/william/Git/gnunet/src/dht/gnunet-service-dht_routing.c:336: warning: argument 'reply_bf_mutator' of command @param is not found in the argument list of GDS_ROUTING_add(const struct GNUNET_PeerIdentity *sender, enum GNUNET_BLOCK_Type type, struct GNUNET_BLOCK_Group *bg, enum GNUNET_DHT_RouteOption options, const struct GNUNET_HashCode *key, const void *xquery, size_t xquery_size) -/home/william/Git/gnunet/src/dht/gnunet-service-dht_routing.h:65: warning: argument 'sender' from the argument list of GDS_ROUTING_add has multiple @param documentation sections -/home/william/Git/gnunet/src/dht/gnunet-service-dht_routing.h:65: warning: argument 'type' from the argument list of GDS_ROUTING_add has multiple @param documentation sections -/home/william/Git/gnunet/src/dht/gnunet-service-dht_routing.h:65: warning: argument 'bg' from the argument list of GDS_ROUTING_add has multiple @param documentation sections -/home/william/Git/gnunet/src/dht/gnunet-service-dht_routing.h:65: warning: argument 'options' from the argument list of GDS_ROUTING_add has multiple @param documentation sections -/home/william/Git/gnunet/src/dht/gnunet-service-dht_routing.h:65: warning: argument 'key' from the argument list of GDS_ROUTING_add has multiple @param documentation sections -/home/william/Git/gnunet/src/dht/gnunet-service-dht_routing.h:65: warning: argument 'xquery' from the argument list of GDS_ROUTING_add has multiple @param documentation sections -/home/william/Git/gnunet/src/dht/gnunet-service-dht_routing.h:65: warning: argument 'xquery_size' from the argument list of GDS_ROUTING_add has multiple @param documentation sections -/home/william/Git/gnunet/src/dht/plugin_block_dht.c:46: warning: argument 'ctx' of command @param is not found in the argument list of block_plugin_dht_create_group(void *cls, enum GNUNET_BLOCK_Type type, uint32_t nonce, const void *raw_data, size_t raw_data_size, va_list va) -/home/william/Git/gnunet/src/dht/plugin_block_dht.c:57: warning: The following parameter of block_plugin_dht_create_group(void *cls, enum GNUNET_BLOCK_Type type, uint32_t nonce, const void *raw_data, size_t raw_data_size, va_list va) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/dhtu/plugin_dhtu_gnunet.c:299: warning: argument 'cls' of command @param is not found in the argument list of gnunet_drop(struct GNUNET_DHTU_PreferenceHandle *ph) -/home/william/Git/gnunet/src/dhtu/plugin_dhtu_gnunet.c:299: warning: argument 'target' of command @param is not found in the argument list of gnunet_drop(struct GNUNET_DHTU_PreferenceHandle *ph) -/home/william/Git/gnunet/src/dhtu/plugin_dhtu_gnunet.c:304: warning: The following parameter of gnunet_drop(struct GNUNET_DHTU_PreferenceHandle *ph) is not documented: - parameter 'ph' -/home/william/Git/gnunet/src/dhtu/plugin_dhtu_gnunet.c:375: warning: The following parameter of core_connect_cb(void *cls, const struct GNUNET_PeerIdentity *peer, struct GNUNET_MQ_Handle *mq) is not documented: - parameter 'mq' -/home/william/Git/gnunet/src/dhtu/plugin_dhtu_gnunet.c:417: warning: argument 'error' of command @param is not found in the argument list of peerinfo_cb(void *cls, const struct GNUNET_PeerIdentity *peer, const struct GNUNET_HELLO_Message *hello, const char *err_msg) -/home/william/Git/gnunet/src/dhtu/plugin_dhtu_gnunet.c:430: warning: The following parameter of peerinfo_cb(void *cls, const struct GNUNET_PeerIdentity *peer, const struct GNUNET_HELLO_Message *hello, const char *err_msg) is not documented: - parameter 'err_msg' -/home/william/Git/gnunet/src/dhtu/plugin_dhtu_ip.c:300: warning: argument 'src' of command @param is not found in the argument list of find_target(struct Plugin *plugin, const struct GNUNET_PeerIdentity *pid, const void *addr, size_t addrlen) -/home/william/Git/gnunet/src/dhtu/plugin_dhtu_ip.c:442: warning: argument 'cls' of command @param is not found in the argument list of ip_drop(struct GNUNET_DHTU_PreferenceHandle *ph) -/home/william/Git/gnunet/src/dhtu/plugin_dhtu_ip.c:442: warning: argument 'target' of command @param is not found in the argument list of ip_drop(struct GNUNET_DHTU_PreferenceHandle *ph) -/home/william/Git/gnunet/src/dhtu/plugin_dhtu_ip.c:447: warning: The following parameter of ip_drop(struct GNUNET_DHTU_PreferenceHandle *ph) is not documented: - parameter 'ph' -/home/william/Git/gnunet/src/dns/dns_api.c:198: warning: argument 'tc' of command @param is not found in the argument list of reconnect(void *cls) -/home/william/Git/gnunet/src/dns/dns_api.c:202: warning: argument 'cls' from the argument list of reconnect has multiple @param documentation sections -/home/william/Git/gnunet/src/dns/dns_api.c:171: warning: argument 'msg' of command @param is not found in the argument list of handle_request(void *cls, const struct GNUNET_DNS_Request *req) -/home/william/Git/gnunet/src/dns/dns_api.c:177: warning: The following parameter of handle_request(void *cls, const struct GNUNET_DNS_Request *req) is not documented: - parameter 'req' -/home/william/Git/gnunet/src/dns/gnunet-zonewalk.c:557: warning: argument '1' of command @param is not found in the argument list of main(int argc, char **argv) -/home/william/Git/gnunet/src/dns/plugin_block_dns.c:46: warning: argument 'ctx' of command @param is not found in the argument list of block_plugin_dns_create_group(void *cls, enum GNUNET_BLOCK_Type type, uint32_t nonce, const void *raw_data, size_t raw_data_size, va_list va) -/home/william/Git/gnunet/src/dns/plugin_block_dns.c:57: warning: The following parameter of block_plugin_dns_create_group(void *cls, enum GNUNET_BLOCK_Type type, uint32_t nonce, const void *raw_data, size_t raw_data_size, va_list va) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/dns/plugin_block_dns.c:94: warning: argument 'ctx' of command @param is not found in the argument list of block_plugin_dns_check_query(void *cls, enum GNUNET_BLOCK_Type type, const struct GNUNET_HashCode *query, const void *xquery, size_t xquery_size) -/home/william/Git/gnunet/src/exit/gnunet-daemon-exit.c:3513: warning: explicit link request to 'udp_services' could not be resolved -/home/william/Git/gnunet/src/exit/gnunet-daemon-exit.c:3513: warning: explicit link request to 'tcp_services' could not be resolved -/home/william/Git/gnunet/src/exit/gnunet-daemon-exit.c:1821: warning: argument 'message' of command @param is not found in the argument list of check_tcp_data(void *cls, const struct GNUNET_EXIT_TcpDataMessage *data) -/home/william/Git/gnunet/src/exit/gnunet-daemon-exit.c:1829: warning: The following parameter of check_tcp_data(void *cls, const struct GNUNET_EXIT_TcpDataMessage *data) is not documented: - parameter 'data' -/home/william/Git/gnunet/src/exit/gnunet-daemon-exit.c:1861: warning: argument 'message' of command @param is not found in the argument list of handle_tcp_data(void *cls, const struct GNUNET_EXIT_TcpDataMessage *data) -/home/william/Git/gnunet/src/exit/gnunet-daemon-exit.c:1867: warning: The following parameter of handle_tcp_data(void *cls, const struct GNUNET_EXIT_TcpDataMessage *data) is not documented: - parameter 'data' -/home/william/Git/gnunet/src/exit/gnunet-daemon-exit.c:3227: warning: argument 'tc' of command @param is not found in the argument list of dummy_task(void *cls) -/home/william/Git/gnunet/src/exit/gnunet-daemon-exit.c:3513: warning: explicit link request to 'udp_services' could not be resolved -/home/william/Git/gnunet/src/exit/gnunet-daemon-exit.c:3513: warning: explicit link request to 'tcp_services' could not be resolved -/home/william/Git/gnunet/src/fs/fs_api.h:628: warning: argument 'h' from the argument list of GNUNET_FS_queue_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_api.h:628: warning: argument 'start' from the argument list of GNUNET_FS_queue_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_api.h:628: warning: argument 'stop' from the argument list of GNUNET_FS_queue_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_api.h:628: warning: argument 'cls' from the argument list of GNUNET_FS_queue_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_api.h:628: warning: argument 'blocks' from the argument list of GNUNET_FS_queue_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_api.h:628: warning: argument 'priority' from the argument list of GNUNET_FS_queue_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_api.h:662: warning: argument 'cls' from the argument list of GNUNET_FS_data_reader_file_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_api.h:662: warning: argument 'offset' from the argument list of GNUNET_FS_data_reader_file_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_api.h:662: warning: argument 'max' from the argument list of GNUNET_FS_data_reader_file_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_api.h:662: warning: argument 'buf' from the argument list of GNUNET_FS_data_reader_file_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_api.h:662: warning: argument 'emsg' from the argument list of GNUNET_FS_data_reader_file_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_api.h:676: warning: argument 'filename' from the argument list of GNUNET_FS_make_file_reader_context_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_api.h:696: warning: argument 'cls' from the argument list of GNUNET_FS_data_reader_copy_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_api.h:696: warning: argument 'offset' from the argument list of GNUNET_FS_data_reader_copy_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_api.h:696: warning: argument 'max' from the argument list of GNUNET_FS_data_reader_copy_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_api.h:696: warning: argument 'buf' from the argument list of GNUNET_FS_data_reader_copy_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_api.h:696: warning: argument 'emsg' from the argument list of GNUNET_FS_data_reader_copy_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_api.h:729: warning: argument 'cls' from the argument list of GNUNET_FS_publish_main_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_api.h:750: warning: argument 'uc' from the argument list of GNUNET_FS_unindex_do_extract_keywords_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_api.h:845: warning: argument 'sc' from the argument list of GNUNET_FS_search_start_searching_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_api.h:900: warning: argument 'fi' from the argument list of GNUNET_FS_file_information_sync_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_api.h:980: warning: argument 'cls' from the argument list of GNUNET_FS_search_signal_suspend_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_api.h:990: warning: argument 'cls' from the argument list of GNUNET_FS_download_signal_suspend_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_download.c:1017: warning: argument 'cls' from the argument list of process_result_with_request has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_download.c:1017: warning: argument 'key' from the argument list of process_result_with_request has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_download.c:1017: warning: argument 'value' from the argument list of process_result_with_request has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_download.c:1294: warning: argument 'msg' of command @param is not found in the argument list of check_put(void *cls, const struct ClientPutMessage *cm) -/home/william/Git/gnunet/src/fs/fs_download.c:1300: warning: The following parameter of check_put(void *cls, const struct ClientPutMessage *cm) is not documented: - parameter 'cm' -/home/william/Git/gnunet/src/fs/fs_download.c:1309: warning: argument 'msg' of command @param is not found in the argument list of handle_put(void *cls, const struct ClientPutMessage *cm) -/home/william/Git/gnunet/src/fs/fs_download.c:1315: warning: The following parameter of handle_put(void *cls, const struct ClientPutMessage *cm) is not documented: - parameter 'cm' -/home/william/Git/gnunet/src/fs/fs_download.c:1430: warning: argument 'mq' of command @param is not found in the argument list of activate_fs_download(void *cls) -/home/william/Git/gnunet/src/fs/fs_publish_ksk.c:149: warning: argument 'cls' from the argument list of publish_ksk_cont has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_publish_ublock.h:47: warning: argument 'input' from the argument list of GNUNET_FS_ublock_decrypt_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_publish_ublock.h:47: warning: argument 'input_len' from the argument list of GNUNET_FS_ublock_decrypt_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_publish_ublock.h:47: warning: argument 'ns' from the argument list of GNUNET_FS_ublock_decrypt_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_publish_ublock.h:47: warning: argument 'label' from the argument list of GNUNET_FS_ublock_decrypt_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_publish_ublock.h:47: warning: argument 'output' from the argument list of GNUNET_FS_ublock_decrypt_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_publish_ublock.h:88: warning: argument 'h' from the argument list of GNUNET_FS_publish_ublock_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_publish_ublock.h:88: warning: argument 'dsh' from the argument list of GNUNET_FS_publish_ublock_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_publish_ublock.h:88: warning: argument 'label' from the argument list of GNUNET_FS_publish_ublock_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_publish_ublock.h:88: warning: argument 'ulabel' from the argument list of GNUNET_FS_publish_ublock_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_publish_ublock.h:88: warning: argument 'ns' from the argument list of GNUNET_FS_publish_ublock_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_publish_ublock.h:88: warning: argument 'meta' from the argument list of GNUNET_FS_publish_ublock_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_publish_ublock.h:88: warning: argument 'uri' from the argument list of GNUNET_FS_publish_ublock_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_publish_ublock.h:88: warning: argument 'bo' from the argument list of GNUNET_FS_publish_ublock_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_publish_ublock.h:88: warning: argument 'options' from the argument list of GNUNET_FS_publish_ublock_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_publish_ublock.h:88: warning: argument 'cont' from the argument list of GNUNET_FS_publish_ublock_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_publish_ublock.h:88: warning: argument 'cont_cls' from the argument list of GNUNET_FS_publish_ublock_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_search.c:1333: warning: argument 'h' from the argument list of search_start has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_search.c:1333: warning: argument 'uri' from the argument list of search_start has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_search.c:1333: warning: argument 'anonymity' from the argument list of search_start has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_search.c:1333: warning: argument 'options' from the argument list of search_start has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_search.c:1333: warning: argument 'cctx' from the argument list of search_start has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_search.c:1333: warning: argument 'psearch' from the argument list of search_start has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_search.c:928: warning: argument 'msg' of command @param is not found in the argument list of check_result(void *cls, const struct ClientPutMessage *cm) -/home/william/Git/gnunet/src/fs/fs_search.c:933: warning: The following parameter of check_result(void *cls, const struct ClientPutMessage *cm) is not documented: - parameter 'cm' -/home/william/Git/gnunet/src/fs/fs_search.c:943: warning: argument 'msg' of command @param is not found in the argument list of handle_result(void *cls, const struct ClientPutMessage *cm) -/home/william/Git/gnunet/src/fs/fs_search.c:948: warning: The following parameter of handle_result(void *cls, const struct ClientPutMessage *cm) is not documented: - parameter 'cm' -/home/william/Git/gnunet/src/fs/fs_test_lib.c:178: warning: argument 'tc' of command @param is not found in the argument list of report_uri(void *cls) -/home/william/Git/gnunet/src/fs/fs_test_lib.h:67: warning: argument 'peer' from the argument list of GNUNET_FS_TEST_publish has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_test_lib.h:67: warning: argument 'timeout' from the argument list of GNUNET_FS_TEST_publish has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_test_lib.h:67: warning: argument 'anonymity' from the argument list of GNUNET_FS_TEST_publish has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_test_lib.h:67: warning: argument 'do_index' from the argument list of GNUNET_FS_TEST_publish has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_test_lib.h:67: warning: argument 'size' from the argument list of GNUNET_FS_TEST_publish has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_test_lib.h:67: warning: argument 'seed' from the argument list of GNUNET_FS_TEST_publish has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_test_lib.h:67: warning: argument 'verbose' from the argument list of GNUNET_FS_TEST_publish has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_test_lib.h:67: warning: argument 'cont' from the argument list of GNUNET_FS_TEST_publish has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_test_lib.h:67: warning: argument 'cont_cls' from the argument list of GNUNET_FS_TEST_publish has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_test_lib.h:92: warning: argument 'peer' from the argument list of GNUNET_FS_TEST_download has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_test_lib.h:92: warning: argument 'timeout' from the argument list of GNUNET_FS_TEST_download has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_test_lib.h:92: warning: argument 'anonymity' from the argument list of GNUNET_FS_TEST_download has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_test_lib.h:92: warning: argument 'seed' from the argument list of GNUNET_FS_TEST_download has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_test_lib.h:92: warning: argument 'uri' from the argument list of GNUNET_FS_TEST_download has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_test_lib.h:92: warning: argument 'verbose' from the argument list of GNUNET_FS_TEST_download has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_test_lib.h:92: warning: argument 'cont' from the argument list of GNUNET_FS_TEST_download has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_test_lib.h:92: warning: argument 'cont_cls' from the argument list of GNUNET_FS_TEST_download has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_tree.h:72: warning: argument 'fsize' from the argument list of GNUNET_FS_tree_calculate_block_size has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_tree.h:72: warning: argument 'offset' from the argument list of GNUNET_FS_tree_calculate_block_size has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_tree.h:72: warning: argument 'depth' from the argument list of GNUNET_FS_tree_calculate_block_size has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_tree.h:141: warning: argument 'h' from the argument list of GNUNET_FS_tree_encoder_create has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_tree.h:141: warning: argument 'size' from the argument list of GNUNET_FS_tree_encoder_create has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_tree.h:141: warning: argument 'cls' from the argument list of GNUNET_FS_tree_encoder_create has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_tree.h:141: warning: argument 'reader' from the argument list of GNUNET_FS_tree_encoder_create has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_tree.h:141: warning: argument 'proc' from the argument list of GNUNET_FS_tree_encoder_create has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_tree.h:141: warning: argument 'progress' from the argument list of GNUNET_FS_tree_encoder_create has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_tree.h:141: warning: argument 'cont' from the argument list of GNUNET_FS_tree_encoder_create has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs.c:381: warning: explicit link request to 'GSF_pending_request_cancel()' could not be resolved -/home/william/Git/gnunet/src/fs/gnunet-service-fs.c:604: warning: argument 'message' of command @param is not found in the argument list of check_p2p_put(void *cls, const struct PutMessage *put) -/home/william/Git/gnunet/src/fs/gnunet-service-fs.c:611: warning: The following parameter of check_p2p_put(void *cls, const struct PutMessage *put) is not documented: - parameter 'put' -/home/william/Git/gnunet/src/fs/gnunet-service-fs.c:1058: warning: argument 'message' of command @param is not found in the argument list of handle_client_index_start(void *cls, const struct IndexStartMessage *ism) -/home/william/Git/gnunet/src/fs/gnunet-service-fs.c:1063: warning: The following parameter of handle_client_index_start(void *cls, const struct IndexStartMessage *ism) is not documented: - parameter 'ism' -/home/william/Git/gnunet/src/fs/gnunet-service-fs.c:1139: warning: argument 'message' of command @param is not found in the argument list of handle_client_unindex(void *cls, const struct UnindexMessage *um) -/home/william/Git/gnunet/src/fs/gnunet-service-fs.c:1144: warning: The following parameter of handle_client_unindex(void *cls, const struct UnindexMessage *um) is not documented: - parameter 'um' -/home/william/Git/gnunet/src/fs/gnunet-service-fs_cadet_server.c:413: warning: argument 'channel_ctx' of command @param is not found in the argument list of disconnect_cb(void *cls, const struct GNUNET_CADET_Channel *channel) -/home/william/Git/gnunet/src/fs/gnunet-service-fs_cp.c:1354: warning: argument 'timeout' of command @param is not found in the argument list of GSF_peer_transmit_(struct GSF_ConnectedPeer *cp, int is_query, uint32_t priority, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/fs/gnunet-service-fs_cp.c:1354: warning: argument 'size' of command @param is not found in the argument list of GSF_peer_transmit_(struct GSF_ConnectedPeer *cp, int is_query, uint32_t priority, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/fs/gnunet-service-fs_cp.h:206: warning: argument 'cls' from the argument list of GSF_peer_connect_handler has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_cp.h:206: warning: argument 'peer' from the argument list of GSF_peer_connect_handler has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_cp.h:206: warning: argument 'mq' from the argument list of GSF_peer_connect_handler has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_cp.h:218: warning: argument 'peer' from the argument list of GSF_peer_get_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_cp.c:1354: warning: argument 'timeout' of command @param is not found in the argument list of GSF_peer_transmit_(struct GSF_ConnectedPeer *cp, int is_query, uint32_t priority, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/fs/gnunet-service-fs_cp.c:1354: warning: argument 'size' of command @param is not found in the argument list of GSF_peer_transmit_(struct GSF_ConnectedPeer *cp, int is_query, uint32_t priority, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/fs/gnunet-service-fs_cp.h:243: warning: argument 'cp' from the argument list of GSF_peer_transmit_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_cp.h:243: warning: argument 'is_query' from the argument list of GSF_peer_transmit_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_cp.h:243: warning: argument 'priority' from the argument list of GSF_peer_transmit_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_cp.h:243: warning: argument 'env' from the argument list of GSF_peer_transmit_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_cp.h:305: warning: argument 'cls' from the argument list of handle_p2p_get has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_cp.h:305: warning: argument 'gm' from the argument list of handle_p2p_get has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_cp.h:340: warning: argument 'cls' from the argument list of GSF_peer_disconnect_handler has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_cp.h:340: warning: argument 'peer' from the argument list of GSF_peer_disconnect_handler has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_cp.h:340: warning: argument 'internal_cls' from the argument list of GSF_peer_disconnect_handler has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_cp.h:397: warning: argument 'it' from the argument list of GSF_iterate_connected_peers_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_cp.h:397: warning: argument 'it_cls' from the argument list of GSF_iterate_connected_peers_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_indexing.h:59: warning: argument 'key' from the argument list of GNUNET_FS_handle_on_demand_block has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_indexing.h:59: warning: argument 'size' from the argument list of GNUNET_FS_handle_on_demand_block has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_indexing.h:59: warning: argument 'data' from the argument list of GNUNET_FS_handle_on_demand_block has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_indexing.h:59: warning: argument 'type' from the argument list of GNUNET_FS_handle_on_demand_block has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_indexing.h:59: warning: argument 'priority' from the argument list of GNUNET_FS_handle_on_demand_block has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_indexing.h:59: warning: argument 'anonymity' from the argument list of GNUNET_FS_handle_on_demand_block has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_indexing.h:59: warning: argument 'replication' from the argument list of GNUNET_FS_handle_on_demand_block has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_indexing.h:59: warning: argument 'expiration' from the argument list of GNUNET_FS_handle_on_demand_block has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_indexing.h:59: warning: argument 'uid' from the argument list of GNUNET_FS_handle_on_demand_block has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_indexing.h:59: warning: argument 'cont' from the argument list of GNUNET_FS_handle_on_demand_block has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_indexing.h:59: warning: argument 'cont_cls' from the argument list of GNUNET_FS_handle_on_demand_block has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_indexing.h:110: warning: argument 'c' from the argument list of GNUNET_FS_indexing_init has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_indexing.h:110: warning: argument 'd' from the argument list of GNUNET_FS_indexing_init has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pe.h:72: warning: argument 'pr_head' from the argument list of GSF_request_plan_reference_get_last_transmission_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pe.h:72: warning: argument 'sender' from the argument list of GSF_request_plan_reference_get_last_transmission_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pe.h:72: warning: argument 'result' from the argument list of GSF_request_plan_reference_get_last_transmission_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:223: warning: argument 'options' from the argument list of GSF_pending_request_create_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:223: warning: argument 'type' from the argument list of GSF_pending_request_create_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:223: warning: argument 'query' from the argument list of GSF_pending_request_create_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:223: warning: argument 'target' from the argument list of GSF_pending_request_create_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:223: warning: argument 'bf_data' from the argument list of GSF_pending_request_create_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:223: warning: argument 'bf_size' from the argument list of GSF_pending_request_create_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:223: warning: argument 'mingle' from the argument list of GSF_pending_request_create_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:223: warning: argument 'anonymity_level' from the argument list of GSF_pending_request_create_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:223: warning: argument 'priority' from the argument list of GSF_pending_request_create_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:223: warning: argument 'ttl' from the argument list of GSF_pending_request_create_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:223: warning: argument 'sender_pid' from the argument list of GSF_pending_request_create_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:223: warning: argument 'origin_pid' from the argument list of GSF_pending_request_create_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:223: warning: argument 'replies_seen' from the argument list of GSF_pending_request_create_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:223: warning: argument 'replies_seen_count' from the argument list of GSF_pending_request_create_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:223: warning: argument 'rh' from the argument list of GSF_pending_request_create_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:223: warning: argument 'rh_cls' from the argument list of GSF_pending_request_create_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:250: warning: argument 'pr' from the argument list of GSF_pending_request_update_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:250: warning: argument 'replies_seen' from the argument list of GSF_pending_request_update_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:250: warning: argument 'replies_seen_count' from the argument list of GSF_pending_request_update_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:333: warning: argument 'it' from the argument list of GSF_iterate_pending_requests_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:333: warning: argument 'cls' from the argument list of GSF_iterate_pending_requests_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:347: warning: argument 'cls' from the argument list of handle_p2p_put has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:347: warning: argument 'put' from the argument list of handle_p2p_put has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_push.c:334: warning: argument 'cls' from the argument list of find_content has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_push.c:212: warning: argument 'peer' of command @param is not found in the argument list of transmit_content(struct MigrationReadyPeer *mrp, struct MigrationReadyBlock *block) -/home/william/Git/gnunet/src/fs/gnunet-service-fs_push.c:218: warning: The following parameter of transmit_content(struct MigrationReadyPeer *mrp, struct MigrationReadyBlock *block) is not documented: - parameter 'mrp' -/home/william/Git/gnunet/src/fs/gnunet-service-fs_push.h:53: warning: argument 'peer' from the argument list of GSF_push_start_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_push.h:63: warning: argument 'peer' from the argument list of GSF_push_stop_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_put.c:224: warning: argument 'tc' of command @param is not found in the argument list of gather_dht_put_blocks(void *cls) -/home/william/Git/gnunet/src/fs/gnunet-service-fs_put.c:228: warning: argument 'cls' from the argument list of gather_dht_put_blocks has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/plugin_block_fs.c:43: warning: argument 'ctx' of command @param is not found in the argument list of block_plugin_fs_create_group(void *cls, enum GNUNET_BLOCK_Type type, uint32_t nonce, const void *raw_data, size_t raw_data_size, va_list va) -/home/william/Git/gnunet/src/fs/plugin_block_fs.c:54: warning: The following parameter of block_plugin_fs_create_group(void *cls, enum GNUNET_BLOCK_Type type, uint32_t nonce, const void *raw_data, size_t raw_data_size, va_list va) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/fs/plugin_block_fs.c:164: warning: argument 'ctx' of command @param is not found in the argument list of block_plugin_fs_check_query(void *cls, enum GNUNET_BLOCK_Type type, const struct GNUNET_HashCode *query, const void *xquery, size_t xquery_size) -/home/william/Git/gnunet/src/gns/gns_api.c:151: warning: argument 'loookup_msg' of command @param is not found in the argument list of check_result(void *cls, const struct LookupResultMessage *lookup_msg) -/home/william/Git/gnunet/src/gns/gns_api.c:158: warning: The following parameter of check_result(void *cls, const struct LookupResultMessage *lookup_msg) is not documented: - parameter 'lookup_msg' -/home/william/Git/gnunet/src/gns/gns_api.c:179: warning: argument 'loookup_msg' of command @param is not found in the argument list of handle_result(void *cls, const struct LookupResultMessage *lookup_msg) -/home/william/Git/gnunet/src/gns/gns_api.c:186: warning: The following parameter of handle_result(void *cls, const struct LookupResultMessage *lookup_msg) is not documented: - parameter 'lookup_msg' -/home/william/Git/gnunet/src/gns/gns_tld_api.c:169: warning: The following parameter of lookup_with_public_key(struct GNUNET_GNS_LookupWithTldRequest *ltr, const struct GNUNET_IDENTITY_PublicKey *pkey) is not documented: - parameter 'ltr' -/home/william/Git/gnunet/src/gns/gns_tld_api.c:184: warning: argument 'ego' of command @param is not found in the argument list of identity_zone_cb(void *cls, const struct GNUNET_IDENTITY_PrivateKey *priv, const char *ego_name) -/home/william/Git/gnunet/src/gns/gns_tld_api.c:184: warning: argument 'ctx' of command @param is not found in the argument list of identity_zone_cb(void *cls, const struct GNUNET_IDENTITY_PrivateKey *priv, const char *ego_name) -/home/william/Git/gnunet/src/gns/gns_tld_api.c:184: warning: argument 'name' of command @param is not found in the argument list of identity_zone_cb(void *cls, const struct GNUNET_IDENTITY_PrivateKey *priv, const char *ego_name) -/home/william/Git/gnunet/src/gns/gns_tld_api.c:192: warning: The following parameters of identity_zone_cb(void *cls, const struct GNUNET_IDENTITY_PrivateKey *priv, const char *ego_name) are not documented: - parameter 'priv' - parameter 'ego_name' -/home/william/Git/gnunet/src/gns/gnunet-gns-proxy.c:1649: warning: argument 'cls' from the argument list of curl_task_download has multiple @param documentation sections -/home/william/Git/gnunet/src/gns/gnunet-gns-proxy.c:1777: warning: explicit link request to 'MHD_YES' could not be resolved -/home/william/Git/gnunet/src/gns/gnunet-gns-proxy.c:1825: warning: explicit link request to 'MHD_YES' could not be resolved -/home/william/Git/gnunet/src/gns/gnunet-gns-proxy.c:1826: warning: explicit link request to 'MHD_NO' could not be resolved -/home/william/Git/gnunet/src/gns/gnunet-gns-proxy.c:2330: warning: argument 'toe' of command @param is not found in the argument list of mhd_connection_cb(void *cls, struct MHD_Connection *connection, void **con_cls, enum MHD_ConnectionNotificationCode cnc) -/home/william/Git/gnunet/src/gns/gnunet-gns-proxy.c:2338: warning: The following parameter of mhd_connection_cb(void *cls, struct MHD_Connection *connection, void **con_cls, enum MHD_ConnectionNotificationCode cnc) is not documented: - parameter 'cnc' -/home/william/Git/gnunet/src/gns/gnunet-gns-proxy.c:2574: warning: argument 'cls' from the argument list of do_httpd has multiple @param documentation sections -/home/william/Git/gnunet/src/gns/gnunet-gns-proxy.c:3432: warning: argument 'tc' of command @param is not found in the argument list of do_accept(void *cls) -/home/william/Git/gnunet/src/gns/gnunet-service-gns.c:411: warning: argument 'client' of command @param is not found in the argument list of handle_lookup(void *cls, const struct LookupMessage *sh_msg) -/home/william/Git/gnunet/src/gns/gnunet-service-gns.c:411: warning: argument 'message' of command @param is not found in the argument list of handle_lookup(void *cls, const struct LookupMessage *sh_msg) -/home/william/Git/gnunet/src/gns/gnunet-service-gns.c:419: warning: The following parameter of handle_lookup(void *cls, const struct LookupMessage *sh_msg) is not documented: - parameter 'sh_msg' -/home/william/Git/gnunet/src/gns/gnunet-service-gns.c:515: warning: argument 'server' of command @param is not found in the argument list of run(void *cls, const struct GNUNET_CONFIGURATION_Handle *c, struct GNUNET_SERVICE_Handle *service) -/home/william/Git/gnunet/src/gns/gnunet-service-gns.c:521: warning: The following parameter of run(void *cls, const struct GNUNET_CONFIGURATION_Handle *c, struct GNUNET_SERVICE_Handle *service) is not documented: - parameter 'service' -/home/william/Git/gnunet/src/gns/gnunet-service-gns_interceptor.h:38: warning: argument 'c' from the argument list of GNS_interceptor_init has multiple @param documentation sections -/home/william/Git/gnunet/src/gns/gnunet-service-gns_resolver.c:735: warning: explicit link request to 'LSD0001' could not be resolved -/home/william/Git/gnunet/src/gns/gnunet-service-gns_resolver.c:2701: warning: argument 'tc' of command @param is not found in the argument list of recursive_resolution(void *cls) -/home/william/Git/gnunet/src/gns/gnunet-service-gns_resolver.c:2705: warning: argument 'cls' from the argument list of recursive_resolution has multiple @param documentation sections -/home/william/Git/gnunet/src/gns/gnunet-service-gns_resolver.c:2732: warning: argument 'cls' from the argument list of start_resolver_lookup has multiple @param documentation sections -/home/william/Git/gnunet/src/gns/gnunet-service-gns_resolver.c:1906: warning: argument 'cls' from the argument list of handle_gns_resolution_result has multiple @param documentation sections -/home/william/Git/gnunet/src/gns/gnunet-service-gns_resolver.c:1906: warning: argument 'rd_count' from the argument list of handle_gns_resolution_result has multiple @param documentation sections -/home/william/Git/gnunet/src/gns/gnunet-service-gns_resolver.c:1906: warning: argument 'rd' from the argument list of handle_gns_resolution_result has multiple @param documentation sections -/home/william/Git/gnunet/src/gns/gnunet-service-gns_resolver.h:42: warning: argument 'nc' from the argument list of GNS_resolver_init has multiple @param documentation sections -/home/william/Git/gnunet/src/gns/gnunet-service-gns_resolver.h:42: warning: argument 'dht' from the argument list of GNS_resolver_init has multiple @param documentation sections -/home/william/Git/gnunet/src/gns/gnunet-service-gns_resolver.h:42: warning: argument 'c' from the argument list of GNS_resolver_init has multiple @param documentation sections -/home/william/Git/gnunet/src/gns/gnunet-service-gns_resolver.h:42: warning: argument 'max_bg_queries' from the argument list of GNS_resolver_init has multiple @param documentation sections -/home/william/Git/gnunet/src/gns/gnunet-service-gns_resolver.h:89: warning: argument 'zone' from the argument list of GNS_resolver_lookup has multiple @param documentation sections -/home/william/Git/gnunet/src/gns/gnunet-service-gns_resolver.h:89: warning: argument 'record_type' from the argument list of GNS_resolver_lookup has multiple @param documentation sections -/home/william/Git/gnunet/src/gns/gnunet-service-gns_resolver.h:89: warning: argument 'name' from the argument list of GNS_resolver_lookup has multiple @param documentation sections -/home/william/Git/gnunet/src/gns/gnunet-service-gns_resolver.h:89: warning: argument 'options' from the argument list of GNS_resolver_lookup has multiple @param documentation sections -/home/william/Git/gnunet/src/gns/gnunet-service-gns_resolver.h:89: warning: argument 'recursion_depth_limit' from the argument list of GNS_resolver_lookup has multiple @param documentation sections -/home/william/Git/gnunet/src/gns/gnunet-service-gns_resolver.h:89: warning: argument 'proc' from the argument list of GNS_resolver_lookup has multiple @param documentation sections -/home/william/Git/gnunet/src/gns/gnunet-service-gns_resolver.h:89: warning: argument 'proc_cls' from the argument list of GNS_resolver_lookup has multiple @param documentation sections -/home/william/Git/gnunet/src/gns/nss/nss_gns.c:189: warning: argument 'out' of command @param is not found in the argument list of _nss_gns_gethostbyname_r(const char *name, struct hostent *result, char *buffer, size_t buflen, int *errnop, int *h_errnop) -/home/william/Git/gnunet/src/gns/nss/nss_gns.c:218: warning: argument 'out' of command @param is not found in the argument list of _nss_gns_gethostbyaddr_r(const void *addr, int len, int af, struct hostent *result, char *buffer, size_t buflen, int *errnop, int *h_errnop) -/home/william/Git/gnunet/src/gns/plugin_block_gns.c:48: warning: argument 'ctx' of command @param is not found in the argument list of block_plugin_gns_create_group(void *cls, enum GNUNET_BLOCK_Type type, uint32_t nonce, const void *raw_data, size_t raw_data_size, va_list va) -/home/william/Git/gnunet/src/gns/plugin_block_gns.c:59: warning: The following parameter of block_plugin_gns_create_group(void *cls, enum GNUNET_BLOCK_Type type, uint32_t nonce, const void *raw_data, size_t raw_data_size, va_list va) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/gns/plugin_block_gns.c:138: warning: argument 'ctx' of command @param is not found in the argument list of block_plugin_gns_check_query(void *cls, enum GNUNET_BLOCK_Type type, const struct GNUNET_HashCode *query, const void *xquery, size_t xquery_size) -/home/william/Git/gnunet/src/gns/plugin_rest_gns.c:160: warning: argument 'handle' of command @param is not found in the argument list of cleanup_handle(void *cls) -/home/william/Git/gnunet/src/gns/plugin_rest_gns.c:165: warning: The following parameter of cleanup_handle(void *cls) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/gns/plugin_rest_gns.c:373: warning: argument 'method' of command @param is not found in the argument list of rest_process_request(struct GNUNET_REST_RequestHandle *rest_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/gns/plugin_rest_gns.c:373: warning: argument 'url' of command @param is not found in the argument list of rest_process_request(struct GNUNET_REST_RequestHandle *rest_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/gns/plugin_rest_gns.c:373: warning: argument 'data' of command @param is not found in the argument list of rest_process_request(struct GNUNET_REST_RequestHandle *rest_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/gns/plugin_rest_gns.c:373: warning: argument 'data_size' of command @param is not found in the argument list of rest_process_request(struct GNUNET_REST_RequestHandle *rest_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/gns/plugin_rest_gns.c:357: warning: The following parameter of rest_process_request(struct GNUNET_REST_RequestHandle *rest_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) is not documented: - parameter 'rest_handle' -/home/william/Git/gnunet/src/gnsrecord/gnsrecord_crypto.h:59: warning: argument 'iv' of command @param is not found in the argument list of GNR_derive_block_aes_key(unsigned char *ctr, unsigned char *key, const char *label, uint64_t exp, const struct GNUNET_CRYPTO_EcdsaPublicKey *pub) -/home/william/Git/gnunet/src/gnsrecord/gnsrecord_crypto.h:59: warning: argument 'skey' of command @param is not found in the argument list of GNR_derive_block_aes_key(unsigned char *ctr, unsigned char *key, const char *label, uint64_t exp, const struct GNUNET_CRYPTO_EcdsaPublicKey *pub) -/home/william/Git/gnunet/src/gnsrecord/gnsrecord_crypto.c:127: warning: The following parameters of GNR_derive_block_aes_key(unsigned char *ctr, unsigned char *key, const char *label, uint64_t exp, const struct GNUNET_CRYPTO_EcdsaPublicKey *pub) are not documented: - parameter 'ctr' - parameter 'key' - parameter 'exp' -/home/william/Git/gnunet/src/gnsrecord/gnsrecord_crypto.h:75: warning: argument 'skey' of command @param is not found in the argument list of GNR_derive_block_xsalsa_key(unsigned char *nonce, unsigned char *key, const char *label, uint64_t exp, const struct GNUNET_CRYPTO_EddsaPublicKey *pub) -/home/william/Git/gnunet/src/gnsrecord/gnsrecord_crypto.c:156: warning: The following parameters of GNR_derive_block_xsalsa_key(unsigned char *nonce, unsigned char *key, const char *label, uint64_t exp, const struct GNUNET_CRYPTO_EddsaPublicKey *pub) are not documented: - parameter 'key' - parameter 'exp' -/home/william/Git/gnunet/src/gnsrecord/gnsrecord_crypto.h:59: warning: argument 'iv' of command @param is not found in the argument list of GNR_derive_block_aes_key(unsigned char *ctr, unsigned char *key, const char *label, uint64_t exp, const struct GNUNET_CRYPTO_EcdsaPublicKey *pub) -/home/william/Git/gnunet/src/gnsrecord/gnsrecord_crypto.h:59: warning: argument 'skey' of command @param is not found in the argument list of GNR_derive_block_aes_key(unsigned char *ctr, unsigned char *key, const char *label, uint64_t exp, const struct GNUNET_CRYPTO_EcdsaPublicKey *pub) -/home/william/Git/gnunet/src/gnsrecord/gnsrecord_crypto.h:66: warning: The following parameters of GNR_derive_block_aes_key(unsigned char *ctr, unsigned char *key, const char *label, uint64_t exp, const struct GNUNET_CRYPTO_EcdsaPublicKey *pub) are not documented: - parameter 'ctr' - parameter 'key' - parameter 'exp' -/home/william/Git/gnunet/src/gnsrecord/gnsrecord_crypto.h:75: warning: argument 'skey' of command @param is not found in the argument list of GNR_derive_block_xsalsa_key(unsigned char *nonce, unsigned char *key, const char *label, uint64_t exp, const struct GNUNET_CRYPTO_EddsaPublicKey *pub) -/home/william/Git/gnunet/src/gnsrecord/gnsrecord_crypto.h:82: warning: The following parameters of GNR_derive_block_xsalsa_key(unsigned char *nonce, unsigned char *key, const char *label, uint64_t exp, const struct GNUNET_CRYPTO_EddsaPublicKey *pub) are not documented: - parameter 'key' - parameter 'exp' -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:661: warning: explicit link request to 'GNUNET_GNSRECORD_PublicKey' could not be resolved -/home/william/Git/gnunet/src/gnsrecord/gnunet-gnsrecord-tvg.c:120: warning: argument 'cls' of command @param is not found in the argument list of run_pkey(struct GNUNET_GNSRECORD_Data *rd, int rd_count, const char *label) -/home/william/Git/gnunet/src/gnsrecord/gnunet-gnsrecord-tvg.c:120: warning: argument 'args' of command @param is not found in the argument list of run_pkey(struct GNUNET_GNSRECORD_Data *rd, int rd_count, const char *label) -/home/william/Git/gnunet/src/gnsrecord/gnunet-gnsrecord-tvg.c:120: warning: argument 'cfgfile' of command @param is not found in the argument list of run_pkey(struct GNUNET_GNSRECORD_Data *rd, int rd_count, const char *label) -/home/william/Git/gnunet/src/gnsrecord/gnunet-gnsrecord-tvg.c:120: warning: argument 'cfg' of command @param is not found in the argument list of run_pkey(struct GNUNET_GNSRECORD_Data *rd, int rd_count, const char *label) -/home/william/Git/gnunet/src/gnsrecord/gnunet-gnsrecord-tvg.c:127: warning: The following parameters of run_pkey(struct GNUNET_GNSRECORD_Data *rd, int rd_count, const char *label) are not documented: - parameter 'rd' - parameter 'rd_count' - parameter 'label' -/home/william/Git/gnunet/src/gnsrecord/gnunet-gnsrecord-tvg.c:240: warning: argument 'cls' of command @param is not found in the argument list of run_edkey(struct GNUNET_GNSRECORD_Data *rd, int rd_count, const char *label) -/home/william/Git/gnunet/src/gnsrecord/gnunet-gnsrecord-tvg.c:240: warning: argument 'args' of command @param is not found in the argument list of run_edkey(struct GNUNET_GNSRECORD_Data *rd, int rd_count, const char *label) -/home/william/Git/gnunet/src/gnsrecord/gnunet-gnsrecord-tvg.c:240: warning: argument 'cfgfile' of command @param is not found in the argument list of run_edkey(struct GNUNET_GNSRECORD_Data *rd, int rd_count, const char *label) -/home/william/Git/gnunet/src/gnsrecord/gnunet-gnsrecord-tvg.c:240: warning: argument 'cfg' of command @param is not found in the argument list of run_edkey(struct GNUNET_GNSRECORD_Data *rd, int rd_count, const char *label) -/home/william/Git/gnunet/src/gnsrecord/gnunet-gnsrecord-tvg.c:247: warning: The following parameters of run_edkey(struct GNUNET_GNSRECORD_Data *rd, int rd_count, const char *label) are not documented: - parameter 'rd' - parameter 'rd_count' - parameter 'label' -/home/william/Git/gnunet/src/gnsrecord/json_gnsrecord.c:74: warning: argument 'cls' of command @param is not found in the argument list of parse_record(json_t *data, struct GNUNET_GNSRECORD_Data *rd) -/home/william/Git/gnunet/src/gnsrecord/json_gnsrecord.c:74: warning: argument 'root' of command @param is not found in the argument list of parse_record(json_t *data, struct GNUNET_GNSRECORD_Data *rd) -/home/william/Git/gnunet/src/gnsrecord/json_gnsrecord.c:74: warning: argument 'spec' of command @param is not found in the argument list of parse_record(json_t *data, struct GNUNET_GNSRECORD_Data *rd) -/home/william/Git/gnunet/src/gnsrecord/json_gnsrecord.c:83: warning: The following parameters of parse_record(json_t *data, struct GNUNET_GNSRECORD_Data *rd) are not documented: - parameter 'data' - parameter 'rd' -/home/william/Git/gnunet/src/gnsrecord/json_gnsrecord.c:167: warning: argument 'cls' of command @param is not found in the argument list of parse_record_data(struct GnsRecordInfo *gnsrecord_info, json_t *data) -/home/william/Git/gnunet/src/gnsrecord/json_gnsrecord.c:167: warning: argument 'root' of command @param is not found in the argument list of parse_record_data(struct GnsRecordInfo *gnsrecord_info, json_t *data) -/home/william/Git/gnunet/src/gnsrecord/json_gnsrecord.c:167: warning: argument 'spec' of command @param is not found in the argument list of parse_record_data(struct GnsRecordInfo *gnsrecord_info, json_t *data) -/home/william/Git/gnunet/src/gnsrecord/json_gnsrecord.c:176: warning: The following parameters of parse_record_data(struct GnsRecordInfo *gnsrecord_info, json_t *data) are not documented: - parameter 'gnsrecord_info' - parameter 'data' -/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist.c:227: warning: The following parameter of disconnect_handler(void *cls, const struct GNUNET_PeerIdentity *peer, void *internal_cls) is not documented: - parameter 'internal_cls' -/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_client.c:878: warning: argument 'tc' of command @param is not found in the argument list of task_download(void *cls) -/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_client.c:883: warning: argument 'cls' from the argument list of task_download has multiple @param documentation sections -/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_client.c:1226: warning: The following parameter of handler_disconnect(void *cls, const struct GNUNET_PeerIdentity *peer, void *internal_cls) is not documented: - parameter 'internal_cls' -/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_client.c:1323: warning: argument 'success' of command @param is not found in the argument list of stat_timeout_task(void *cls) -/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_server.c:290: warning: explicit link request to 'MHD_NO' could not be resolved -/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_server.c:295: warning: explicit link request to 'MHD_YES' could not be resolved -/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_server.c:295: warning: explicit link request to 'MHD_NO' could not be resolved -/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_server.c:320: warning: explicit link request to 'MHD_HTTP_METHOD_GET' could not be resolved -/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_server.c:321: warning: explicit link request to 'MHD_HTTP_METHOD_PUT' could not be resolved -/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_server.c:323: warning: explicit link request to 'MHD_HTTP_VERSION_1_1' could not be resolved -/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_server.c:328: warning: explicit link request to 'MHD_get_connection_values' could not be resolved -/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_server.c:341: warning: explicit link request to 'MHD_RequestCompletedCallback' could not be resolved -/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_server.c:342: warning: explicit link request to 'MHD_OPTION_NOTIFY_COMPLETED' could not be resolved -/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_server.c:344: warning: explicit link request to 'MHD_YES' could not be resolved -/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_server.c:345: warning: explicit link request to 'MHD_NO' could not be resolved -/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_server.c:427: warning: argument 'cls' of command @param is not found in the argument list of adv_transmit(struct GNUNET_MQ_Handle *mq) -/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_server.c:427: warning: argument 'size' of command @param is not found in the argument list of adv_transmit(struct GNUNET_MQ_Handle *mq) -/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_server.c:427: warning: argument 'buf' of command @param is not found in the argument list of adv_transmit(struct GNUNET_MQ_Handle *mq) -/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_server.c:437: warning: The following parameter of adv_transmit(struct GNUNET_MQ_Handle *mq) is not documented: - parameter 'mq' -/home/william/Git/gnunet/src/identity/gnunet-service-identity.c:476: warning: argument 'client' of command @param is not found in the argument list of handle_get_default_message(void *cls, const struct GetDefaultMessage *gdm) -/home/william/Git/gnunet/src/identity/gnunet-service-identity.c:476: warning: argument 'message' of command @param is not found in the argument list of handle_get_default_message(void *cls, const struct GetDefaultMessage *gdm) -/home/william/Git/gnunet/src/identity/gnunet-service-identity.c:483: warning: The following parameter of handle_get_default_message(void *cls, const struct GetDefaultMessage *gdm) is not documented: - parameter 'gdm' -/home/william/Git/gnunet/src/identity/gnunet-service-identity.c:587: warning: argument 'client' of command @param is not found in the argument list of handle_set_default_message(void *cls, const struct SetDefaultMessage *sdm) -/home/william/Git/gnunet/src/identity/gnunet-service-identity.c:587: warning: argument 'message' of command @param is not found in the argument list of handle_set_default_message(void *cls, const struct SetDefaultMessage *sdm) -/home/william/Git/gnunet/src/identity/gnunet-service-identity.c:594: warning: The following parameter of handle_set_default_message(void *cls, const struct SetDefaultMessage *sdm) is not documented: - parameter 'sdm' -/home/william/Git/gnunet/src/identity/gnunet-service-identity.c:700: warning: argument 'client' of command @param is not found in the argument list of handle_create_message(void *cls, const struct CreateRequestMessage *crm) -/home/william/Git/gnunet/src/identity/gnunet-service-identity.c:700: warning: argument 'message' of command @param is not found in the argument list of handle_create_message(void *cls, const struct CreateRequestMessage *crm) -/home/william/Git/gnunet/src/identity/gnunet-service-identity.c:706: warning: The following parameter of handle_create_message(void *cls, const struct CreateRequestMessage *crm) is not documented: - parameter 'crm' -/home/william/Git/gnunet/src/identity/gnunet-service-identity.c:839: warning: argument 'client' of command @param is not found in the argument list of handle_rename_message(void *cls, const struct RenameMessage *rm) -/home/william/Git/gnunet/src/identity/gnunet-service-identity.c:839: warning: argument 'message' of command @param is not found in the argument list of handle_rename_message(void *cls, const struct RenameMessage *rm) -/home/william/Git/gnunet/src/identity/gnunet-service-identity.c:846: warning: The following parameter of handle_rename_message(void *cls, const struct RenameMessage *rm) is not documented: - parameter 'rm' -/home/william/Git/gnunet/src/identity/gnunet-service-identity.c:985: warning: argument 'client' of command @param is not found in the argument list of handle_delete_message(void *cls, const struct DeleteMessage *dm) -/home/william/Git/gnunet/src/identity/gnunet-service-identity.c:985: warning: argument 'message' of command @param is not found in the argument list of handle_delete_message(void *cls, const struct DeleteMessage *dm) -/home/william/Git/gnunet/src/identity/gnunet-service-identity.c:992: warning: The following parameter of handle_delete_message(void *cls, const struct DeleteMessage *dm) is not documented: - parameter 'dm' -/home/william/Git/gnunet/src/identity/gnunet-service-identity.c:1145: warning: argument 'server' of command @param is not found in the argument list of run(void *cls, const struct GNUNET_CONFIGURATION_Handle *c, struct GNUNET_SERVICE_Handle *service) -/home/william/Git/gnunet/src/identity/gnunet-service-identity.c:1151: warning: The following parameter of run(void *cls, const struct GNUNET_CONFIGURATION_Handle *c, struct GNUNET_SERVICE_Handle *service) is not documented: - parameter 'service' -/home/william/Git/gnunet/src/identity/plugin_rest_identity.c:274: warning: argument 'handle' of command @param is not found in the argument list of cleanup_handle(void *cls) -/home/william/Git/gnunet/src/identity/plugin_rest_identity.c:279: warning: The following parameter of cleanup_handle(void *cls) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/identity/plugin_rest_identity.c:690: warning: argument 'private' of command @param is not found in the argument list of do_finished_create(void *cls, const struct GNUNET_IDENTITY_PrivateKey *pk, const char *emsg) -/home/william/Git/gnunet/src/identity/plugin_rest_identity.c:696: warning: The following parameter of do_finished_create(void *cls, const struct GNUNET_IDENTITY_PrivateKey *pk, const char *emsg) is not documented: - parameter 'pk' -/home/william/Git/gnunet/src/identity/plugin_rest_identity.c:1297: warning: argument 'method' of command @param is not found in the argument list of rest_process_request(struct GNUNET_REST_RequestHandle *rest_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/identity/plugin_rest_identity.c:1297: warning: argument 'url' of command @param is not found in the argument list of rest_process_request(struct GNUNET_REST_RequestHandle *rest_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/identity/plugin_rest_identity.c:1297: warning: argument 'data' of command @param is not found in the argument list of rest_process_request(struct GNUNET_REST_RequestHandle *rest_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/identity/plugin_rest_identity.c:1297: warning: argument 'data_size' of command @param is not found in the argument list of rest_process_request(struct GNUNET_REST_RequestHandle *rest_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/identity/plugin_rest_identity.c:1216: warning: The following parameter of rest_process_request(struct GNUNET_REST_RequestHandle *rest_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) is not documented: - parameter 'rest_handle' -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:661: warning: explicit link request to 'GNUNET_GNSRECORD_PublicKey' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_json_lib.h:122: warning: argument 'which' of command @param is not found in the argument list of GNUNET_JSON_parse(const json_t *root, struct GNUNET_JSON_Specification *spec, const char **error_json_name, unsigned int *error_line) -/home/william/Git/gnunet/src/include/gnunet_json_lib.h:63: warning: The following parameter of GNUNET_JSON_parse(const json_t *root, struct GNUNET_JSON_Specification *spec, const char **error_json_name, unsigned int *error_line) is not documented: - parameter 'error_line' -/home/william/Git/gnunet/src/include/gnunet_json_lib.h:316: warning: argument 'at' of command @param is not found in the argument list of GNUNET_JSON_spec_timestamp(const char *name, struct GNUNET_TIME_Timestamp *t) -/home/william/Git/gnunet/src/include/gnunet_json_lib.h:149: warning: The following parameter of GNUNET_JSON_spec_timestamp(const char *name, struct GNUNET_TIME_Timestamp *t) is not documented: - parameter 't' -/home/william/Git/gnunet/src/include/gnunet_json_lib.h:482: warning: explicit link request to 'GNUNET_JSON_post_parser_callback()' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_json_lib.h:518: warning: argument 'val' of command @param is not found in the argument list of GNUNET_JSON_getopt(char shortName, const char *name, const char *argumentHelp, const char *description, json_t **json) -/home/william/Git/gnunet/src/include/gnunet_json_lib.h:510: warning: The following parameter of GNUNET_JSON_getopt(char shortName, const char *name, const char *argumentHelp, const char *description, json_t **json) is not documented: - parameter 'json' -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:794: warning: found tag without matching -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:794: warning: found tag without matching -/home/william/Git/gnunet/src/include/gnunet_mhd_compat.h:25: warning: explicit link request to 'MHD_VERSION' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:601: warning: end of comment block while expecting command -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:131: warning: explicit link request to 'GNUNET_MQ_extract_nexted_mh' could not be resolved -[generated]:5: warning: found tag without matching -[generated]:39: warning: end of comment block while expecting command -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:1031: warning: explicit link request to 'gnunet_mq_impl_send_continue' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:470: warning: explicit link request to 'GNUNET_MY_exect_prepared()' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:119: warning: Found unknown command '\oaran' -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:49: warning: The following parameter of GNUNET_PQ_query_param_fixed_size(const void *ptr, size_t ptr_size) is not documented: - parameter 'ptr_size' -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:230: warning: argument 'x' of command @param is not found in the argument list of GNUNET_PQ_query_param_timestamp_nbo(const struct GNUNET_TIME_TimestampNBO *t) -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:49: warning: The following parameter of GNUNET_PQ_query_param_timestamp_nbo(const struct GNUNET_TIME_TimestampNBO *t) is not documented: - parameter 't' -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:631: warning: argument 'db' from the argument list of GNUNET_PQ_eval_result has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:631: warning: argument 'statement_name' from the argument list of GNUNET_PQ_eval_result has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:631: warning: argument 'result' from the argument list of GNUNET_PQ_eval_result has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:631: warning: argument 'db' from the argument list of GNUNET_PQ_eval_prepared_non_select has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:631: warning: argument 'statement_name' from the argument list of GNUNET_PQ_eval_prepared_non_select has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:631: warning: argument 'params' from the argument list of GNUNET_PQ_eval_prepared_non_select has multiple @param documentation sections -/home/william/Git/gnunet/src/pq/pq_exec.c:68: warning: argument 'pq' of command @param is not found in the argument list of GNUNET_PQ_exec_statements(struct GNUNET_PQ_Context *db, const struct GNUNET_PQ_ExecuteStatement *es) -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:686: warning: argument 'es' from the argument list of GNUNET_PQ_exec_statements has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:896: warning: Found unknown command '\es' -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:925: warning: Found unknown command '\es' -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:1029: warning: explicit link request to 'GNUNET_PQ_event_do_poll()' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:1054: warning: explicit link request to 'GNUNET_PQ_event_do_poll()' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:1069: warning: explicit link request to 'GNUNET_PQ_event_do_poll()' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_sq_lib.h:92: warning: Found unknown command '\oaran' -/home/william/Git/gnunet/src/include/gnunet_sq_lib.h:1: warning: The following parameter of GNUNET_SQ_query_param_fixed_size(const void *ptr, size_t ptr_size) is not documented: - parameter 'ptr_size' -/home/william/Git/gnunet/src/include/gnunet_sq_lib.h:190: warning: argument 'db_conn' of command @param is not found in the argument list of GNUNET_SQ_bind(sqlite3_stmt *stmt, const struct GNUNET_SQ_QueryParam *params) -/home/william/Git/gnunet/src/include/gnunet_sq_lib.h:190: warning: argument 'db_conn' of command @param is not found in the argument list of GNUNET_SQ_bind(sqlite3_stmt *stmt, const struct GNUNET_SQ_QueryParam *params) -/home/william/Git/gnunet/src/include/gnunet_sq_lib.h:198: warning: argument 'params' from the argument list of GNUNET_SQ_bind has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_sq_lib.h:198: warning: The following parameter of GNUNET_SQ_bind(sqlite3_stmt *stmt, const struct GNUNET_SQ_QueryParam *params) is not documented: - parameter 'stmt' -/home/william/Git/gnunet/src/include/gnunet_sq_lib.h:502: warning: argument 'dbh' from the argument list of GNUNET_SQ_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_sq_lib.h:502: warning: argument 'ps' from the argument list of GNUNET_SQ_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_netjail_lib.h:303: warning: argument 'label' from the argument list of GNUNET_TESTING_cmd_system_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_netjail_lib.h:303: warning: The following parameter of GNUNET_TESTING_cmd_system_create(const char *label, const char *testdir) is not documented: - parameter 'testdir' -/home/william/Git/gnunet/src/include/gnunet_testing_netjail_lib.h:303: warning: argument 'label' from the argument list of GNUNET_TESTING_cmd_netjail_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_netjail_lib.h:303: warning: argument 'topology_config' from the argument list of GNUNET_TESTING_cmd_netjail_start has multiple @param documentation sections -/home/william/Git/gnunet/src/testing/testing_api_cmd_block_until_external_trigger.c:98: warning: argument 'all_peers_started' of command @param is not found in the argument list of GNUNET_TESTING_cmd_block_until_external_trigger(const char *label) -/home/william/Git/gnunet/src/testing/testing_api_cmd_block_until_external_trigger.c:98: warning: argument 'asynchronous_finish' of command @param is not found in the argument list of GNUNET_TESTING_cmd_block_until_external_trigger(const char *label) -/home/william/Git/gnunet/src/testing/testing_api_cmd_block_until_external_trigger.c:98: warning: argument 'all_peers_started' of command @param is not found in the argument list of GNUNET_TESTING_cmd_block_until_external_trigger(const char *label) -/home/william/Git/gnunet/src/testing/testing_api_cmd_block_until_external_trigger.c:98: warning: argument 'asynchronous_finish' of command @param is not found in the argument list of GNUNET_TESTING_cmd_block_until_external_trigger(const char *label) -/home/william/Git/gnunet/src/include/gnunet_testing_netjail_lib.h:428: warning: argument 'label' from the argument list of GNUNET_TESTING_cmd_block_until_external_trigger has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_netjail_lib.h:488: warning: argument 'all_local_tests_prepared' of command @param is not found in the argument list of GNUNET_TESTING_cmd_local_test_prepared(const char *label, TESTING_CMD_HELPER_write_cb write_message) -/home/william/Git/gnunet/src/include/gnunet_testing_ng_lib.h:236: warning: argument 'is' from the argument list of GNUNET_TESTING_interpreter_lookup_command has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_ng_lib.h:236: warning: argument 'label' from the argument list of GNUNET_TESTING_interpreter_lookup_command has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_ng_lib.h:417: warning: argument 'cmd' of command @param is not found in the argument list of GNUNET_TESTING_running(const struct GNUNET_TESTING_Command *command) -/home/william/Git/gnunet/src/include/gnunet_testing_ng_lib.h:411: warning: The following parameter of GNUNET_TESTING_running(const struct GNUNET_TESTING_Command *command) is not documented: - parameter 'command' -/home/william/Git/gnunet/src/include/gnunet_testing_ng_lib.h:427: warning: argument 'cmd' of command @param is not found in the argument list of GNUNET_TESTING_finished(struct GNUNET_TESTING_Command *command) -/home/william/Git/gnunet/src/include/gnunet_testing_ng_lib.h:411: warning: The following parameter of GNUNET_TESTING_finished(struct GNUNET_TESTING_Command *command) is not documented: - parameter 'command' -/home/william/Git/gnunet/src/include/gnunet_testing_ng_lib.h:520: warning: argument 'traits' from the argument list of GNUNET_TESTING_get_trait has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_ng_lib.h:520: warning: argument 'ret' from the argument list of GNUNET_TESTING_get_trait has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_ng_lib.h:520: warning: argument 'trait' from the argument list of GNUNET_TESTING_get_trait has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_ng_lib.h:520: warning: argument 'index' from the argument list of GNUNET_TESTING_get_trait has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_json_lib.h:122: warning: argument 'which' of command @param is not found in the argument list of GNUNET_JSON_parse(const json_t *root, struct GNUNET_JSON_Specification *spec, const char **error_json_name, unsigned int *error_line) -/home/william/Git/gnunet/src/json/json.c:1: warning: The following parameter of GNUNET_JSON_parse(const json_t *root, struct GNUNET_JSON_Specification *spec, const char **error_json_name, unsigned int *error_line) is not documented: - parameter 'error_line' -/home/william/Git/gnunet/src/include/gnunet_json_lib.h:518: warning: argument 'val' of command @param is not found in the argument list of GNUNET_JSON_getopt(char shortName, const char *name, const char *argumentHelp, const char *description, json_t **json) -/home/william/Git/gnunet/src/json/json.c:94: warning: The following parameter of GNUNET_JSON_getopt(char shortName, const char *name, const char *argumentHelp, const char *description, json_t **json) is not documented: - parameter 'json' -/home/william/Git/gnunet/src/include/gnunet_json_lib.h:316: warning: argument 'at' of command @param is not found in the argument list of GNUNET_JSON_spec_timestamp(const char *name, struct GNUNET_TIME_Timestamp *t) -/home/william/Git/gnunet/src/json/json_helper.c:546: warning: The following parameter of GNUNET_JSON_spec_timestamp(const char *name, struct GNUNET_TIME_Timestamp *t) is not documented: - parameter 't' -/home/william/Git/gnunet/src/json/json_mhd.c:253: warning: explicit link request to 'GNUNET_JSON_post_parser_callback()' could not be resolved -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:36: warning: argument 'in' of command @param is not found in the argument list of on_message(void *cls, struct GNUNET_MESSENGER_Room *room, const struct GNUNET_MESSENGER_Contact *sender, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash, enum GNUNET_MESSENGER_MessageFlags flags) -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:36: warning: argument 'out' of command @param is not found in the argument list of on_message(void *cls, struct GNUNET_MESSENGER_Room *room, const struct GNUNET_MESSENGER_Contact *sender, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash, enum GNUNET_MESSENGER_MessageFlags flags) -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:45: warning: The following parameter of on_message(void *cls, struct GNUNET_MESSENGER_Room *room, const struct GNUNET_MESSENGER_Contact *sender, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash, enum GNUNET_MESSENGER_MessageFlags flags) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:106: warning: argument 'in' of command @param is not found in the argument list of shutdown_hook(void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:106: warning: argument 'out' of command @param is not found in the argument list of shutdown_hook(void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:110: warning: The following parameter of shutdown_hook(void *cls) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:186: warning: argument 'in' of command @param is not found in the argument list of listen_stdio(void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:186: warning: argument 'out' of command @param is not found in the argument list of listen_stdio(void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:190: warning: The following parameter of listen_stdio(void *cls) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:146: warning: argument 'in' of command @param is not found in the argument list of read_stdio(void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:146: warning: argument 'out' of command @param is not found in the argument list of read_stdio(void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:150: warning: The following parameter of read_stdio(void *cls) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:207: warning: argument 'in' of command @param is not found in the argument list of idle(void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:207: warning: argument 'out' of command @param is not found in the argument list of idle(void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:211: warning: The following parameter of idle(void *cls) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:228: warning: argument 'in' of command @param is not found in the argument list of on_identity(void *cls, struct GNUNET_MESSENGER_Handle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:228: warning: argument 'out' of command @param is not found in the argument list of on_identity(void *cls, struct GNUNET_MESSENGER_Handle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:228: warning: argument 'in' of command @param is not found in the argument list of on_identity(void *cls, struct GNUNET_MESSENGER_Handle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:228: warning: argument 'out' of command @param is not found in the argument list of on_identity(void *cls, struct GNUNET_MESSENGER_Handle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:233: warning: The following parameters of on_identity(void *cls, struct GNUNET_MESSENGER_Handle *handle) are not documented: - parameter 'cls' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:293: warning: argument 'in' of command @param is not found in the argument list of run(void *cls, char *const *args, const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg) -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:293: warning: argument 'out' of command @param is not found in the argument list of run(void *cls, char *const *args, const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg) -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:300: warning: The following parameter of run(void *cls, char *const *args, const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:314: warning: explicit link request to 'EXIT_SUCCESS' could not be resolved -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:314: warning: explicit link request to 'EXIT_FAILURE' could not be resolved -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger.c:383: warning: argument 'in' of command @param is not found in the argument list of run(void *cls, const struct GNUNET_CONFIGURATION_Handle *config, struct GNUNET_SERVICE_Handle *service) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger.c:383: warning: argument 'out' of command @param is not found in the argument list of run(void *cls, const struct GNUNET_CONFIGURATION_Handle *config, struct GNUNET_SERVICE_Handle *service) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger.c:383: warning: argument 'in' of command @param is not found in the argument list of run(void *cls, const struct GNUNET_CONFIGURATION_Handle *config, struct GNUNET_SERVICE_Handle *service) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger.c:383: warning: argument 'out' of command @param is not found in the argument list of run(void *cls, const struct GNUNET_CONFIGURATION_Handle *config, struct GNUNET_SERVICE_Handle *service) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger.c:389: warning: The following parameters of run(void *cls, const struct GNUNET_CONFIGURATION_Handle *config, struct GNUNET_SERVICE_Handle *service) are not documented: - parameter 'cls' - parameter 'service' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:184: warning: end of comment block while expecting command -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:184: warning: end of comment block while expecting command -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:98: warning: argument 'in' of command @param is not found in the argument list of clear_ego_store(struct GNUNET_MESSENGER_EgoStore *store) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:98: warning: argument 'out' of command @param is not found in the argument list of clear_ego_store(struct GNUNET_MESSENGER_EgoStore *store) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.c:82: warning: The following parameter of clear_ego_store(struct GNUNET_MESSENGER_EgoStore *store) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:106: warning: argument 'in' of command @param is not found in the argument list of create_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:106: warning: argument 'out' of command @param is not found in the argument list of create_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.c:170: warning: The following parameter of create_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:115: warning: argument 'in' of command @param is not found in the argument list of bind_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, void *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:115: warning: argument 'out' of command @param is not found in the argument list of bind_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, void *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:115: warning: argument 'in' of command @param is not found in the argument list of bind_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, void *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:115: warning: argument 'out' of command @param is not found in the argument list of bind_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, void *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.c:197: warning: The following parameters of bind_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, void *handle) are not documented: - parameter 'store' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:128: warning: argument 'in' of command @param is not found in the argument list of unbind_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, void *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:128: warning: argument 'out' of command @param is not found in the argument list of unbind_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, void *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:128: warning: argument 'in' of command @param is not found in the argument list of unbind_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, void *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:128: warning: argument 'out' of command @param is not found in the argument list of unbind_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, void *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.c:217: warning: The following parameters of unbind_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, void *handle) are not documented: - parameter 'store' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:143: warning: argument 'in' of command @param is not found in the argument list of lookup_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, GNUNET_MESSENGER_EgoLookupCallback lookup, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:143: warning: argument 'out' of command @param is not found in the argument list of lookup_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, GNUNET_MESSENGER_EgoLookupCallback lookup, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.c:276: warning: The following parameter of lookup_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, GNUNET_MESSENGER_EgoLookupCallback lookup, void *cls) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:158: warning: argument 'in' of command @param is not found in the argument list of update_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, const struct GNUNET_IDENTITY_PrivateKey *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:158: warning: argument 'out' of command @param is not found in the argument list of update_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, const struct GNUNET_IDENTITY_PrivateKey *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.c:306: warning: The following parameter of update_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, const struct GNUNET_IDENTITY_PrivateKey *key) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:172: warning: argument 'in' of command @param is not found in the argument list of delete_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:172: warning: argument 'out' of command @param is not found in the argument list of delete_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.c:334: warning: The following parameter of delete_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:184: warning: end of comment block while expecting command -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:184: warning: end of comment block while expecting command -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:183: warning: argument 'in' of command @param is not found in the argument list of rename_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *old_identifier, const char *new_identifier) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:183: warning: argument 'out' of command @param is not found in the argument list of rename_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *old_identifier, const char *new_identifier) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.c:401: warning: The following parameter of rename_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *old_identifier, const char *new_identifier) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:197: warning: argument 'in' of command @param is not found in the argument list of renew_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:197: warning: argument 'out' of command @param is not found in the argument list of renew_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.c:447: warning: The following parameter of renew_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:184: warning: end of comment block while expecting command -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:184: warning: end of comment block while expecting command -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:98: warning: argument 'in' of command @param is not found in the argument list of clear_ego_store(struct GNUNET_MESSENGER_EgoStore *store) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:98: warning: argument 'out' of command @param is not found in the argument list of clear_ego_store(struct GNUNET_MESSENGER_EgoStore *store) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:102: warning: The following parameter of clear_ego_store(struct GNUNET_MESSENGER_EgoStore *store) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:106: warning: argument 'in' of command @param is not found in the argument list of create_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:106: warning: argument 'out' of command @param is not found in the argument list of create_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:112: warning: The following parameter of create_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:115: warning: argument 'in' of command @param is not found in the argument list of bind_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, void *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:115: warning: argument 'out' of command @param is not found in the argument list of bind_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, void *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:115: warning: argument 'in' of command @param is not found in the argument list of bind_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, void *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:115: warning: argument 'out' of command @param is not found in the argument list of bind_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, void *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:124: warning: The following parameters of bind_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, void *handle) are not documented: - parameter 'store' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:128: warning: argument 'in' of command @param is not found in the argument list of unbind_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, void *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:128: warning: argument 'out' of command @param is not found in the argument list of unbind_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, void *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:128: warning: argument 'in' of command @param is not found in the argument list of unbind_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, void *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:128: warning: argument 'out' of command @param is not found in the argument list of unbind_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, void *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:137: warning: The following parameters of unbind_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, void *handle) are not documented: - parameter 'store' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:143: warning: argument 'in' of command @param is not found in the argument list of lookup_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, GNUNET_MESSENGER_EgoLookupCallback lookup, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:143: warning: argument 'out' of command @param is not found in the argument list of lookup_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, GNUNET_MESSENGER_EgoLookupCallback lookup, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:151: warning: The following parameter of lookup_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, GNUNET_MESSENGER_EgoLookupCallback lookup, void *cls) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:158: warning: argument 'in' of command @param is not found in the argument list of update_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, const struct GNUNET_IDENTITY_PrivateKey *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:158: warning: argument 'out' of command @param is not found in the argument list of update_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, const struct GNUNET_IDENTITY_PrivateKey *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:166: warning: The following parameter of update_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, const struct GNUNET_IDENTITY_PrivateKey *key) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:172: warning: argument 'in' of command @param is not found in the argument list of delete_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:172: warning: argument 'out' of command @param is not found in the argument list of delete_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:178: warning: The following parameter of delete_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:184: warning: end of comment block while expecting command -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:184: warning: end of comment block while expecting command -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:183: warning: argument 'in' of command @param is not found in the argument list of rename_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *old_identifier, const char *new_identifier) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:183: warning: argument 'out' of command @param is not found in the argument list of rename_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *old_identifier, const char *new_identifier) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:191: warning: The following parameter of rename_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *old_identifier, const char *new_identifier) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:197: warning: argument 'in' of command @param is not found in the argument list of renew_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:197: warning: argument 'out' of command @param is not found in the argument list of renew_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:203: warning: The following parameter of renew_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:57: warning: argument 'in' of command @param is not found in the argument list of create_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MQ_Handle *mq) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:57: warning: argument 'out' of command @param is not found in the argument list of create_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MQ_Handle *mq) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:57: warning: argument 'in' of command @param is not found in the argument list of create_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MQ_Handle *mq) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:57: warning: argument 'out' of command @param is not found in the argument list of create_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MQ_Handle *mq) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.c:34: warning: The following parameters of create_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MQ_Handle *mq) are not documented: - parameter 'service' - parameter 'mq' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:68: warning: argument 'in' of command @param is not found in the argument list of destroy_handle(struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:68: warning: argument 'out' of command @param is not found in the argument list of destroy_handle(struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.c:63: warning: The following parameter of destroy_handle(struct GNUNET_MESSENGER_SrvHandle *handle) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:102: warning: argument 'in' of command @param is not found in the argument list of change_handle_member_id(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key, const struct GNUNET_ShortHashCode *unique_id) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:102: warning: argument 'out' of command @param is not found in the argument list of change_handle_member_id(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key, const struct GNUNET_ShortHashCode *unique_id) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.c:136: warning: The following parameter of change_handle_member_id(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key, const struct GNUNET_ShortHashCode *unique_id) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:118: warning: argument 'in' of command @param is not found in the argument list of set_handle_ego(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Ego *ego) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:118: warning: argument 'out' of command @param is not found in the argument list of set_handle_ego(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Ego *ego) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.c:253: warning: The following parameter of set_handle_ego(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Ego *ego) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:137: warning: argument 'in' of command @param is not found in the argument list of setup_handle_name(struct GNUNET_MESSENGER_SrvHandle *handle, const char *name) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:137: warning: argument 'out' of command @param is not found in the argument list of setup_handle_name(struct GNUNET_MESSENGER_SrvHandle *handle, const char *name) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.c:309: warning: The following parameter of setup_handle_name(struct GNUNET_MESSENGER_SrvHandle *handle, const char *name) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:147: warning: argument 'in' of command @param is not found in the argument list of update_handle(struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:147: warning: argument 'out' of command @param is not found in the argument list of update_handle(struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.c:339: warning: The following parameter of update_handle(struct GNUNET_MESSENGER_SrvHandle *handle) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:156: warning: argument 'in' of command @param is not found in the argument list of set_handle_name(struct GNUNET_MESSENGER_SrvHandle *handle, const char *name) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:156: warning: argument 'out' of command @param is not found in the argument list of set_handle_name(struct GNUNET_MESSENGER_SrvHandle *handle, const char *name) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.c:406: warning: The following parameter of set_handle_name(struct GNUNET_MESSENGER_SrvHandle *handle, const char *name) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:169: warning: argument 'in' of command @param is not found in the argument list of open_handle_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:169: warning: argument 'out' of command @param is not found in the argument list of open_handle_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.c:427: warning: The following parameter of open_handle_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:181: warning: argument 'in' of command @param is not found in the argument list of entry_handle_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:181: warning: argument 'out' of command @param is not found in the argument list of entry_handle_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.c:439: warning: The following parameter of entry_handle_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:195: warning: argument 'in' of command @param is not found in the argument list of close_handle_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:195: warning: argument 'out' of command @param is not found in the argument list of close_handle_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.c:452: warning: The following parameter of close_handle_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:207: warning: argument 'in' of command @param is not found in the argument list of send_handle_message(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key, const struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:207: warning: argument 'out' of command @param is not found in the argument list of send_handle_message(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key, const struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.c:464: warning: The following parameter of send_handle_message(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key, const struct GNUNET_MESSENGER_Message *message) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:220: warning: argument 'in' of command @param is not found in the argument list of notify_handle_message(struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:220: warning: argument 'out' of command @param is not found in the argument list of notify_handle_message(struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.c:526: warning: The following parameter of notify_handle_message(struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:57: warning: argument 'in' of command @param is not found in the argument list of create_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MQ_Handle *mq) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:57: warning: argument 'out' of command @param is not found in the argument list of create_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MQ_Handle *mq) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:57: warning: argument 'in' of command @param is not found in the argument list of create_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MQ_Handle *mq) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:57: warning: argument 'out' of command @param is not found in the argument list of create_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MQ_Handle *mq) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:63: warning: The following parameters of create_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MQ_Handle *mq) are not documented: - parameter 'service' - parameter 'mq' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:68: warning: argument 'in' of command @param is not found in the argument list of destroy_handle(struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:68: warning: argument 'out' of command @param is not found in the argument list of destroy_handle(struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:72: warning: The following parameter of destroy_handle(struct GNUNET_MESSENGER_SrvHandle *handle) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:102: warning: argument 'in' of command @param is not found in the argument list of change_handle_member_id(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key, const struct GNUNET_ShortHashCode *unique_id) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:102: warning: argument 'out' of command @param is not found in the argument list of change_handle_member_id(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key, const struct GNUNET_ShortHashCode *unique_id) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:112: warning: The following parameter of change_handle_member_id(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key, const struct GNUNET_ShortHashCode *unique_id) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:118: warning: argument 'in' of command @param is not found in the argument list of set_handle_ego(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Ego *ego) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:118: warning: argument 'out' of command @param is not found in the argument list of set_handle_ego(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Ego *ego) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:123: warning: The following parameter of set_handle_ego(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Ego *ego) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:137: warning: argument 'in' of command @param is not found in the argument list of setup_handle_name(struct GNUNET_MESSENGER_SrvHandle *handle, const char *name) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:137: warning: argument 'out' of command @param is not found in the argument list of setup_handle_name(struct GNUNET_MESSENGER_SrvHandle *handle, const char *name) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:142: warning: The following parameter of setup_handle_name(struct GNUNET_MESSENGER_SrvHandle *handle, const char *name) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:147: warning: argument 'in' of command @param is not found in the argument list of update_handle(struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:147: warning: argument 'out' of command @param is not found in the argument list of update_handle(struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:152: warning: The following parameter of update_handle(struct GNUNET_MESSENGER_SrvHandle *handle) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:156: warning: argument 'in' of command @param is not found in the argument list of set_handle_name(struct GNUNET_MESSENGER_SrvHandle *handle, const char *name) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:156: warning: argument 'out' of command @param is not found in the argument list of set_handle_name(struct GNUNET_MESSENGER_SrvHandle *handle, const char *name) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:164: warning: The following parameter of set_handle_name(struct GNUNET_MESSENGER_SrvHandle *handle, const char *name) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:169: warning: argument 'in' of command @param is not found in the argument list of open_handle_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:169: warning: argument 'out' of command @param is not found in the argument list of open_handle_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:176: warning: The following parameter of open_handle_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:181: warning: argument 'in' of command @param is not found in the argument list of entry_handle_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:181: warning: argument 'out' of command @param is not found in the argument list of entry_handle_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:189: warning: The following parameter of entry_handle_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:195: warning: argument 'in' of command @param is not found in the argument list of close_handle_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:195: warning: argument 'out' of command @param is not found in the argument list of close_handle_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:202: warning: The following parameter of close_handle_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:207: warning: argument 'in' of command @param is not found in the argument list of send_handle_message(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key, const struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:207: warning: argument 'out' of command @param is not found in the argument list of send_handle_message(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key, const struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:214: warning: The following parameter of send_handle_message(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key, const struct GNUNET_MESSENGER_Message *message) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:220: warning: argument 'in' of command @param is not found in the argument list of notify_handle_message(struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:220: warning: argument 'out' of command @param is not found in the argument list of notify_handle_message(struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:228: warning: The following parameter of notify_handle_message(struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:59: warning: argument 'in' of command @param is not found in the argument list of clear_list_handles(struct GNUNET_MESSENGER_ListHandles *handles) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:59: warning: argument 'out' of command @param is not found in the argument list of clear_list_handles(struct GNUNET_MESSENGER_ListHandles *handles) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.c:40: warning: The following parameter of clear_list_handles(struct GNUNET_MESSENGER_ListHandles *handles) is not documented: - parameter 'handles' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:67: warning: argument 'in' of command @param is not found in the argument list of add_list_handle(struct GNUNET_MESSENGER_ListHandles *handles, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:67: warning: argument 'out' of command @param is not found in the argument list of add_list_handle(struct GNUNET_MESSENGER_ListHandles *handles, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:67: warning: argument 'in' of command @param is not found in the argument list of add_list_handle(struct GNUNET_MESSENGER_ListHandles *handles, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:67: warning: argument 'out' of command @param is not found in the argument list of add_list_handle(struct GNUNET_MESSENGER_ListHandles *handles, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.c:58: warning: The following parameters of add_list_handle(struct GNUNET_MESSENGER_ListHandles *handles, struct GNUNET_MESSENGER_SrvHandle *handle) are not documented: - parameter 'handles' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:77: warning: argument 'in' of command @param is not found in the argument list of remove_list_handle(struct GNUNET_MESSENGER_ListHandles *handles, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:77: warning: argument 'out' of command @param is not found in the argument list of remove_list_handle(struct GNUNET_MESSENGER_ListHandles *handles, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:77: warning: argument 'in' of command @param is not found in the argument list of remove_list_handle(struct GNUNET_MESSENGER_ListHandles *handles, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:77: warning: argument 'out' of command @param is not found in the argument list of remove_list_handle(struct GNUNET_MESSENGER_ListHandles *handles, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.c:71: warning: The following parameters of remove_list_handle(struct GNUNET_MESSENGER_ListHandles *handles, struct GNUNET_MESSENGER_SrvHandle *handle) are not documented: - parameter 'handles' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:59: warning: argument 'in' of command @param is not found in the argument list of clear_list_handles(struct GNUNET_MESSENGER_ListHandles *handles) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:59: warning: argument 'out' of command @param is not found in the argument list of clear_list_handles(struct GNUNET_MESSENGER_ListHandles *handles) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:63: warning: The following parameter of clear_list_handles(struct GNUNET_MESSENGER_ListHandles *handles) is not documented: - parameter 'handles' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:67: warning: argument 'in' of command @param is not found in the argument list of add_list_handle(struct GNUNET_MESSENGER_ListHandles *handles, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:67: warning: argument 'out' of command @param is not found in the argument list of add_list_handle(struct GNUNET_MESSENGER_ListHandles *handles, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:67: warning: argument 'in' of command @param is not found in the argument list of add_list_handle(struct GNUNET_MESSENGER_ListHandles *handles, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:67: warning: argument 'out' of command @param is not found in the argument list of add_list_handle(struct GNUNET_MESSENGER_ListHandles *handles, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:72: warning: The following parameters of add_list_handle(struct GNUNET_MESSENGER_ListHandles *handles, struct GNUNET_MESSENGER_SrvHandle *handle) are not documented: - parameter 'handles' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:77: warning: argument 'in' of command @param is not found in the argument list of remove_list_handle(struct GNUNET_MESSENGER_ListHandles *handles, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:77: warning: argument 'out' of command @param is not found in the argument list of remove_list_handle(struct GNUNET_MESSENGER_ListHandles *handles, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:77: warning: argument 'in' of command @param is not found in the argument list of remove_list_handle(struct GNUNET_MESSENGER_ListHandles *handles, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:77: warning: argument 'out' of command @param is not found in the argument list of remove_list_handle(struct GNUNET_MESSENGER_ListHandles *handles, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:84: warning: The following parameters of remove_list_handle(struct GNUNET_MESSENGER_ListHandles *handles, struct GNUNET_MESSENGER_SrvHandle *handle) are not documented: - parameter 'handles' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.h:58: warning: argument 'in' of command @param is not found in the argument list of clear_list_messages(struct GNUNET_MESSENGER_ListMessages *messages) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.h:58: warning: argument 'out' of command @param is not found in the argument list of clear_list_messages(struct GNUNET_MESSENGER_ListMessages *messages) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.c:38: warning: The following parameter of clear_list_messages(struct GNUNET_MESSENGER_ListMessages *messages) is not documented: - parameter 'messages' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.h:66: warning: argument 'in' of command @param is not found in the argument list of add_to_list_messages(struct GNUNET_MESSENGER_ListMessages *messages, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.h:66: warning: argument 'out' of command @param is not found in the argument list of add_to_list_messages(struct GNUNET_MESSENGER_ListMessages *messages, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.c:55: warning: The following parameter of add_to_list_messages(struct GNUNET_MESSENGER_ListMessages *messages, const struct GNUNET_HashCode *hash) is not documented: - parameter 'messages' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.h:76: warning: argument 'in' of command @param is not found in the argument list of copy_list_messages(struct GNUNET_MESSENGER_ListMessages *messages, const struct GNUNET_MESSENGER_ListMessages *origin) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.h:76: warning: argument 'out' of command @param is not found in the argument list of copy_list_messages(struct GNUNET_MESSENGER_ListMessages *messages, const struct GNUNET_MESSENGER_ListMessages *origin) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.c:68: warning: The following parameter of copy_list_messages(struct GNUNET_MESSENGER_ListMessages *messages, const struct GNUNET_MESSENGER_ListMessages *origin) is not documented: - parameter 'messages' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.h:86: warning: argument 'in' of command @param is not found in the argument list of remove_from_list_messages(struct GNUNET_MESSENGER_ListMessages *messages, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.h:86: warning: argument 'out' of command @param is not found in the argument list of remove_from_list_messages(struct GNUNET_MESSENGER_ListMessages *messages, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.c:80: warning: The following parameter of remove_from_list_messages(struct GNUNET_MESSENGER_ListMessages *messages, const struct GNUNET_HashCode *hash) is not documented: - parameter 'messages' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.h:58: warning: argument 'in' of command @param is not found in the argument list of clear_list_messages(struct GNUNET_MESSENGER_ListMessages *messages) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.h:58: warning: argument 'out' of command @param is not found in the argument list of clear_list_messages(struct GNUNET_MESSENGER_ListMessages *messages) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.h:62: warning: The following parameter of clear_list_messages(struct GNUNET_MESSENGER_ListMessages *messages) is not documented: - parameter 'messages' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.h:66: warning: argument 'in' of command @param is not found in the argument list of add_to_list_messages(struct GNUNET_MESSENGER_ListMessages *messages, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.h:66: warning: argument 'out' of command @param is not found in the argument list of add_to_list_messages(struct GNUNET_MESSENGER_ListMessages *messages, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.h:71: warning: The following parameter of add_to_list_messages(struct GNUNET_MESSENGER_ListMessages *messages, const struct GNUNET_HashCode *hash) is not documented: - parameter 'messages' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.h:76: warning: argument 'in' of command @param is not found in the argument list of copy_list_messages(struct GNUNET_MESSENGER_ListMessages *messages, const struct GNUNET_MESSENGER_ListMessages *origin) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.h:76: warning: argument 'out' of command @param is not found in the argument list of copy_list_messages(struct GNUNET_MESSENGER_ListMessages *messages, const struct GNUNET_MESSENGER_ListMessages *origin) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.h:81: warning: The following parameter of copy_list_messages(struct GNUNET_MESSENGER_ListMessages *messages, const struct GNUNET_MESSENGER_ListMessages *origin) is not documented: - parameter 'messages' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.h:86: warning: argument 'in' of command @param is not found in the argument list of remove_from_list_messages(struct GNUNET_MESSENGER_ListMessages *messages, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.h:86: warning: argument 'out' of command @param is not found in the argument list of remove_from_list_messages(struct GNUNET_MESSENGER_ListMessages *messages, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.h:91: warning: The following parameter of remove_from_list_messages(struct GNUNET_MESSENGER_ListMessages *messages, const struct GNUNET_HashCode *hash) is not documented: - parameter 'messages' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:46: warning: argument 'in' of command @param is not found in the argument list of create_member(struct GNUNET_MESSENGER_MemberStore *store, const struct GNUNET_ShortHashCode *id) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:46: warning: argument 'out' of command @param is not found in the argument list of create_member(struct GNUNET_MESSENGER_MemberStore *store, const struct GNUNET_ShortHashCode *id) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.c:31: warning: The following parameter of create_member(struct GNUNET_MESSENGER_MemberStore *store, const struct GNUNET_ShortHashCode *id) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:60: warning: argument 'in' of command @param is not found in the argument list of destroy_member(struct GNUNET_MESSENGER_Member *member) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:60: warning: argument 'out' of command @param is not found in the argument list of destroy_member(struct GNUNET_MESSENGER_Member *member) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.c:64: warning: The following parameter of destroy_member(struct GNUNET_MESSENGER_Member *member) is not documented: - parameter 'member' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:89: warning: argument 'in' of command @param is not found in the argument list of load_member_next_sessions(const struct GNUNET_MESSENGER_Member *member, const char *directory) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:89: warning: argument 'out' of command @param is not found in the argument list of load_member_next_sessions(const struct GNUNET_MESSENGER_Member *member, const char *directory) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.c:168: warning: The following parameter of load_member_next_sessions(const struct GNUNET_MESSENGER_Member *member, const char *directory) is not documented: - parameter 'member' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:111: warning: argument 'in' of command @param is not found in the argument list of sync_member_contacts(struct GNUNET_MESSENGER_Member *member) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:111: warning: argument 'out' of command @param is not found in the argument list of sync_member_contacts(struct GNUNET_MESSENGER_Member *member) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.c:267: warning: The following parameter of sync_member_contacts(struct GNUNET_MESSENGER_Member *member) is not documented: - parameter 'member' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:147: warning: argument 'in' of command @param is not found in the argument list of add_member_session(struct GNUNET_MESSENGER_Member *member, struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:147: warning: argument 'out' of command @param is not found in the argument list of add_member_session(struct GNUNET_MESSENGER_Member *member, struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:147: warning: argument 'in' of command @param is not found in the argument list of add_member_session(struct GNUNET_MESSENGER_Member *member, struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:147: warning: argument 'out' of command @param is not found in the argument list of add_member_session(struct GNUNET_MESSENGER_Member *member, struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.c:350: warning: The following parameters of add_member_session(struct GNUNET_MESSENGER_Member *member, struct GNUNET_MESSENGER_MemberSession *session) are not documented: - parameter 'member' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:157: warning: argument 'in' of command @param is not found in the argument list of remove_member_session(struct GNUNET_MESSENGER_Member *member, struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:157: warning: argument 'out' of command @param is not found in the argument list of remove_member_session(struct GNUNET_MESSENGER_Member *member, struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:157: warning: argument 'in' of command @param is not found in the argument list of remove_member_session(struct GNUNET_MESSENGER_Member *member, struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:157: warning: argument 'out' of command @param is not found in the argument list of remove_member_session(struct GNUNET_MESSENGER_Member *member, struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.c:371: warning: The following parameters of remove_member_session(struct GNUNET_MESSENGER_Member *member, struct GNUNET_MESSENGER_MemberSession *session) are not documented: - parameter 'member' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:165: warning: argument 'in' of command @param is not found in the argument list of iterate_member_sessions(struct GNUNET_MESSENGER_Member *member, GNUNET_MESSENGER_MemberIteratorCallback it, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:165: warning: argument 'out' of command @param is not found in the argument list of iterate_member_sessions(struct GNUNET_MESSENGER_Member *member, GNUNET_MESSENGER_MemberIteratorCallback it, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:165: warning: argument 'in' of command @param is not found in the argument list of iterate_member_sessions(struct GNUNET_MESSENGER_Member *member, GNUNET_MESSENGER_MemberIteratorCallback it, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:165: warning: argument 'out' of command @param is not found in the argument list of iterate_member_sessions(struct GNUNET_MESSENGER_Member *member, GNUNET_MESSENGER_MemberIteratorCallback it, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.c:403: warning: The following parameters of iterate_member_sessions(struct GNUNET_MESSENGER_Member *member, GNUNET_MESSENGER_MemberIteratorCallback it, void *cls) are not documented: - parameter 'member' - parameter 'cls' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:46: warning: argument 'in' of command @param is not found in the argument list of create_member(struct GNUNET_MESSENGER_MemberStore *store, const struct GNUNET_ShortHashCode *id) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:46: warning: argument 'out' of command @param is not found in the argument list of create_member(struct GNUNET_MESSENGER_MemberStore *store, const struct GNUNET_ShortHashCode *id) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:55: warning: The following parameter of create_member(struct GNUNET_MESSENGER_MemberStore *store, const struct GNUNET_ShortHashCode *id) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:60: warning: argument 'in' of command @param is not found in the argument list of destroy_member(struct GNUNET_MESSENGER_Member *member) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:60: warning: argument 'out' of command @param is not found in the argument list of destroy_member(struct GNUNET_MESSENGER_Member *member) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:64: warning: The following parameter of destroy_member(struct GNUNET_MESSENGER_Member *member) is not documented: - parameter 'member' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:89: warning: argument 'in' of command @param is not found in the argument list of load_member_next_sessions(const struct GNUNET_MESSENGER_Member *member, const char *directory) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:89: warning: argument 'out' of command @param is not found in the argument list of load_member_next_sessions(const struct GNUNET_MESSENGER_Member *member, const char *directory) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:95: warning: The following parameter of load_member_next_sessions(const struct GNUNET_MESSENGER_Member *member, const char *directory) is not documented: - parameter 'member' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:111: warning: argument 'in' of command @param is not found in the argument list of sync_member_contacts(struct GNUNET_MESSENGER_Member *member) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:111: warning: argument 'out' of command @param is not found in the argument list of sync_member_contacts(struct GNUNET_MESSENGER_Member *member) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:116: warning: The following parameter of sync_member_contacts(struct GNUNET_MESSENGER_Member *member) is not documented: - parameter 'member' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:147: warning: argument 'in' of command @param is not found in the argument list of add_member_session(struct GNUNET_MESSENGER_Member *member, struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:147: warning: argument 'out' of command @param is not found in the argument list of add_member_session(struct GNUNET_MESSENGER_Member *member, struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:147: warning: argument 'in' of command @param is not found in the argument list of add_member_session(struct GNUNET_MESSENGER_Member *member, struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:147: warning: argument 'out' of command @param is not found in the argument list of add_member_session(struct GNUNET_MESSENGER_Member *member, struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:152: warning: The following parameters of add_member_session(struct GNUNET_MESSENGER_Member *member, struct GNUNET_MESSENGER_MemberSession *session) are not documented: - parameter 'member' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:157: warning: argument 'in' of command @param is not found in the argument list of remove_member_session(struct GNUNET_MESSENGER_Member *member, struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:157: warning: argument 'out' of command @param is not found in the argument list of remove_member_session(struct GNUNET_MESSENGER_Member *member, struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:157: warning: argument 'in' of command @param is not found in the argument list of remove_member_session(struct GNUNET_MESSENGER_Member *member, struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:157: warning: argument 'out' of command @param is not found in the argument list of remove_member_session(struct GNUNET_MESSENGER_Member *member, struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:162: warning: The following parameters of remove_member_session(struct GNUNET_MESSENGER_Member *member, struct GNUNET_MESSENGER_MemberSession *session) are not documented: - parameter 'member' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:165: warning: argument 'in' of command @param is not found in the argument list of iterate_member_sessions(struct GNUNET_MESSENGER_Member *member, GNUNET_MESSENGER_MemberIteratorCallback it, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:165: warning: argument 'out' of command @param is not found in the argument list of iterate_member_sessions(struct GNUNET_MESSENGER_Member *member, GNUNET_MESSENGER_MemberIteratorCallback it, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:165: warning: argument 'in' of command @param is not found in the argument list of iterate_member_sessions(struct GNUNET_MESSENGER_Member *member, GNUNET_MESSENGER_MemberIteratorCallback it, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:165: warning: argument 'out' of command @param is not found in the argument list of iterate_member_sessions(struct GNUNET_MESSENGER_Member *member, GNUNET_MESSENGER_MemberIteratorCallback it, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:176: warning: The following parameters of iterate_member_sessions(struct GNUNET_MESSENGER_Member *member, GNUNET_MESSENGER_MemberIteratorCallback it, void *cls) are not documented: - parameter 'member' - parameter 'cls' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:61: warning: argument 'in' of command @param is not found in the argument list of create_member_session(struct GNUNET_MESSENGER_Member *member, const struct GNUNET_IDENTITY_PublicKey *pubkey) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:61: warning: argument 'out' of command @param is not found in the argument list of create_member_session(struct GNUNET_MESSENGER_Member *member, const struct GNUNET_IDENTITY_PublicKey *pubkey) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.c:34: warning: The following parameter of create_member_session(struct GNUNET_MESSENGER_Member *member, const struct GNUNET_IDENTITY_PublicKey *pubkey) is not documented: - parameter 'member' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:73: warning: argument 'in' of command @param is not found in the argument list of switch_member_session(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:73: warning: argument 'out' of command @param is not found in the argument list of switch_member_session(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.c:180: warning: The following parameter of switch_member_session(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) is not documented: - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:92: warning: argument 'in' of command @param is not found in the argument list of destroy_member_session(struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:92: warning: argument 'out' of command @param is not found in the argument list of destroy_member_session(struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.c:251: warning: The following parameter of destroy_member_session(struct GNUNET_MESSENGER_MemberSession *session) is not documented: - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:98: warning: argument 'in' of command @param is not found in the argument list of reset_member_session(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:98: warning: argument 'out' of command @param is not found in the argument list of reset_member_session(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.c:272: warning: The following parameter of reset_member_session(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash) is not documented: - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:114: warning: argument 'in' of command @param is not found in the argument list of close_member_session(struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:114: warning: argument 'out' of command @param is not found in the argument list of close_member_session(struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.c:305: warning: The following parameter of close_member_session(struct GNUNET_MESSENGER_MemberSession *session) is not documented: - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:231: warning: argument 'in' of command @param is not found in the argument list of update_member_session_history(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:231: warning: argument 'out' of command @param is not found in the argument list of update_member_session_history(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.c:419: warning: The following parameter of update_member_session_history(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) is not documented: - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:248: warning: argument 'in' of command @param is not found in the argument list of clear_member_session_history(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:248: warning: argument 'out' of command @param is not found in the argument list of clear_member_session_history(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.c:456: warning: The following parameter of clear_member_session_history(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash) is not documented: - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:269: warning: argument 'in' of command @param is not found in the argument list of load_member_session_next(struct GNUNET_MESSENGER_MemberSession *session, const char *directory) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:269: warning: argument 'out' of command @param is not found in the argument list of load_member_session_next(struct GNUNET_MESSENGER_MemberSession *session, const char *directory) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.c:605: warning: The following parameter of load_member_session_next(struct GNUNET_MESSENGER_MemberSession *session, const char *directory) is not documented: - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:61: warning: argument 'in' of command @param is not found in the argument list of create_member_session(struct GNUNET_MESSENGER_Member *member, const struct GNUNET_IDENTITY_PublicKey *pubkey) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:61: warning: argument 'out' of command @param is not found in the argument list of create_member_session(struct GNUNET_MESSENGER_Member *member, const struct GNUNET_IDENTITY_PublicKey *pubkey) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:70: warning: The following parameter of create_member_session(struct GNUNET_MESSENGER_Member *member, const struct GNUNET_IDENTITY_PublicKey *pubkey) is not documented: - parameter 'member' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:73: warning: argument 'in' of command @param is not found in the argument list of switch_member_session(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:73: warning: argument 'out' of command @param is not found in the argument list of switch_member_session(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:86: warning: The following parameter of switch_member_session(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) is not documented: - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:92: warning: argument 'in' of command @param is not found in the argument list of destroy_member_session(struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:92: warning: argument 'out' of command @param is not found in the argument list of destroy_member_session(struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:96: warning: The following parameter of destroy_member_session(struct GNUNET_MESSENGER_MemberSession *session) is not documented: - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:98: warning: argument 'in' of command @param is not found in the argument list of reset_member_session(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:98: warning: argument 'out' of command @param is not found in the argument list of reset_member_session(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:109: warning: The following parameter of reset_member_session(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash) is not documented: - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:114: warning: argument 'in' of command @param is not found in the argument list of close_member_session(struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:114: warning: argument 'out' of command @param is not found in the argument list of close_member_session(struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:122: warning: The following parameter of close_member_session(struct GNUNET_MESSENGER_MemberSession *session) is not documented: - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:231: warning: argument 'in' of command @param is not found in the argument list of update_member_session_history(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:231: warning: argument 'out' of command @param is not found in the argument list of update_member_session_history(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:242: warning: The following parameter of update_member_session_history(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) is not documented: - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:248: warning: argument 'in' of command @param is not found in the argument list of clear_member_session_history(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:248: warning: argument 'out' of command @param is not found in the argument list of clear_member_session_history(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:254: warning: The following parameter of clear_member_session_history(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash) is not documented: - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:269: warning: argument 'in' of command @param is not found in the argument list of load_member_session_next(struct GNUNET_MESSENGER_MemberSession *session, const char *directory) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:269: warning: argument 'out' of command @param is not found in the argument list of load_member_session_next(struct GNUNET_MESSENGER_MemberSession *session, const char *directory) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:278: warning: The following parameter of load_member_session_next(struct GNUNET_MESSENGER_MemberSession *session, const char *directory) is not documented: - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:64: warning: argument 'in' of command @param is not found in the argument list of clear_member_store(struct GNUNET_MESSENGER_MemberStore *store) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:64: warning: argument 'out' of command @param is not found in the argument list of clear_member_store(struct GNUNET_MESSENGER_MemberStore *store) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.c:53: warning: The following parameter of clear_member_store(struct GNUNET_MESSENGER_MemberStore *store) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:72: warning: argument 'in' of command @param is not found in the argument list of get_member_contact_store(struct GNUNET_MESSENGER_MemberStore *store) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:72: warning: argument 'out' of command @param is not found in the argument list of get_member_contact_store(struct GNUNET_MESSENGER_MemberStore *store) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.c:63: warning: The following parameter of get_member_contact_store(struct GNUNET_MESSENGER_MemberStore *store) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:121: warning: argument 'in' of command @param is not found in the argument list of get_store_member_of(struct GNUNET_MESSENGER_MemberStore *store, const struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:121: warning: argument 'out' of command @param is not found in the argument list of get_store_member_of(struct GNUNET_MESSENGER_MemberStore *store, const struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.c:203: warning: The following parameter of get_store_member_of(struct GNUNET_MESSENGER_MemberStore *store, const struct GNUNET_MESSENGER_Message *message) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:134: warning: argument 'in' of command @param is not found in the argument list of add_store_member(struct GNUNET_MESSENGER_MemberStore *store, const struct GNUNET_ShortHashCode *id) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:134: warning: argument 'out' of command @param is not found in the argument list of add_store_member(struct GNUNET_MESSENGER_MemberStore *store, const struct GNUNET_ShortHashCode *id) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.c:214: warning: The following parameter of add_store_member(struct GNUNET_MESSENGER_MemberStore *store, const struct GNUNET_ShortHashCode *id) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:144: warning: argument 'in' of command @param is not found in the argument list of iterate_store_members(struct GNUNET_MESSENGER_MemberStore *store, GNUNET_MESSENGER_MemberIteratorCallback it, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:144: warning: argument 'out' of command @param is not found in the argument list of iterate_store_members(struct GNUNET_MESSENGER_MemberStore *store, GNUNET_MESSENGER_MemberIteratorCallback it, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:144: warning: argument 'in' of command @param is not found in the argument list of iterate_store_members(struct GNUNET_MESSENGER_MemberStore *store, GNUNET_MESSENGER_MemberIteratorCallback it, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:144: warning: argument 'out' of command @param is not found in the argument list of iterate_store_members(struct GNUNET_MESSENGER_MemberStore *store, GNUNET_MESSENGER_MemberIteratorCallback it, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.c:256: warning: The following parameters of iterate_store_members(struct GNUNET_MESSENGER_MemberStore *store, GNUNET_MESSENGER_MemberIteratorCallback it, void *cls) are not documented: - parameter 'store' - parameter 'cls' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:64: warning: argument 'in' of command @param is not found in the argument list of clear_member_store(struct GNUNET_MESSENGER_MemberStore *store) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:64: warning: argument 'out' of command @param is not found in the argument list of clear_member_store(struct GNUNET_MESSENGER_MemberStore *store) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:68: warning: The following parameter of clear_member_store(struct GNUNET_MESSENGER_MemberStore *store) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:72: warning: argument 'in' of command @param is not found in the argument list of get_member_contact_store(struct GNUNET_MESSENGER_MemberStore *store) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:72: warning: argument 'out' of command @param is not found in the argument list of get_member_contact_store(struct GNUNET_MESSENGER_MemberStore *store) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:77: warning: The following parameter of get_member_contact_store(struct GNUNET_MESSENGER_MemberStore *store) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:121: warning: argument 'in' of command @param is not found in the argument list of get_store_member_of(struct GNUNET_MESSENGER_MemberStore *store, const struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:121: warning: argument 'out' of command @param is not found in the argument list of get_store_member_of(struct GNUNET_MESSENGER_MemberStore *store, const struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:129: warning: The following parameter of get_store_member_of(struct GNUNET_MESSENGER_MemberStore *store, const struct GNUNET_MESSENGER_Message *message) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:134: warning: argument 'in' of command @param is not found in the argument list of add_store_member(struct GNUNET_MESSENGER_MemberStore *store, const struct GNUNET_ShortHashCode *id) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:134: warning: argument 'out' of command @param is not found in the argument list of add_store_member(struct GNUNET_MESSENGER_MemberStore *store, const struct GNUNET_ShortHashCode *id) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:140: warning: The following parameter of add_store_member(struct GNUNET_MESSENGER_MemberStore *store, const struct GNUNET_ShortHashCode *id) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:144: warning: argument 'in' of command @param is not found in the argument list of iterate_store_members(struct GNUNET_MESSENGER_MemberStore *store, GNUNET_MESSENGER_MemberIteratorCallback it, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:144: warning: argument 'out' of command @param is not found in the argument list of iterate_store_members(struct GNUNET_MESSENGER_MemberStore *store, GNUNET_MESSENGER_MemberIteratorCallback it, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:144: warning: argument 'in' of command @param is not found in the argument list of iterate_store_members(struct GNUNET_MESSENGER_MemberStore *store, GNUNET_MESSENGER_MemberIteratorCallback it, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:144: warning: argument 'out' of command @param is not found in the argument list of iterate_store_members(struct GNUNET_MESSENGER_MemberStore *store, GNUNET_MESSENGER_MemberIteratorCallback it, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:154: warning: The following parameters of iterate_store_members(struct GNUNET_MESSENGER_MemberStore *store, GNUNET_MESSENGER_MemberIteratorCallback it, void *cls) are not documented: - parameter 'store' - parameter 'cls' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:39: warning: argument 'in' of command @param is not found in the argument list of handle_message_join(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:39: warning: argument 'out' of command @param is not found in the argument list of handle_message_join(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:39: warning: argument 'in' of command @param is not found in the argument list of handle_message_join(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:39: warning: argument 'out' of command @param is not found in the argument list of handle_message_join(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.c:40: warning: The following parameters of handle_message_join(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:54: warning: argument 'in' of command @param is not found in the argument list of handle_message_leave(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:54: warning: argument 'out' of command @param is not found in the argument list of handle_message_leave(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:54: warning: argument 'in' of command @param is not found in the argument list of handle_message_leave(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:54: warning: argument 'out' of command @param is not found in the argument list of handle_message_leave(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.c:60: warning: The following parameters of handle_message_leave(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:69: warning: argument 'in' of command @param is not found in the argument list of handle_message_name(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:69: warning: argument 'out' of command @param is not found in the argument list of handle_message_name(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:69: warning: argument 'in' of command @param is not found in the argument list of handle_message_name(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:69: warning: argument 'out' of command @param is not found in the argument list of handle_message_name(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.c:72: warning: The following parameters of handle_message_name(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:84: warning: argument 'in' of command @param is not found in the argument list of handle_message_key(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:84: warning: argument 'out' of command @param is not found in the argument list of handle_message_key(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:84: warning: argument 'in' of command @param is not found in the argument list of handle_message_key(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:84: warning: argument 'out' of command @param is not found in the argument list of handle_message_key(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.c:86: warning: The following parameters of handle_message_key(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:99: warning: argument 'in' of command @param is not found in the argument list of handle_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:99: warning: argument 'out' of command @param is not found in the argument list of handle_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:99: warning: argument 'in' of command @param is not found in the argument list of handle_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:99: warning: argument 'out' of command @param is not found in the argument list of handle_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.c:95: warning: The following parameters of handle_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:114: warning: argument 'in' of command @param is not found in the argument list of handle_message_id(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:114: warning: argument 'out' of command @param is not found in the argument list of handle_message_id(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:114: warning: argument 'in' of command @param is not found in the argument list of handle_message_id(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:114: warning: argument 'out' of command @param is not found in the argument list of handle_message_id(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.c:108: warning: The following parameters of handle_message_id(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:129: warning: argument 'in' of command @param is not found in the argument list of handle_message_miss(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:129: warning: argument 'out' of command @param is not found in the argument list of handle_message_miss(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:129: warning: argument 'in' of command @param is not found in the argument list of handle_message_miss(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:129: warning: argument 'out' of command @param is not found in the argument list of handle_message_miss(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.c:124: warning: The following parameters of handle_message_miss(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:144: warning: argument 'in' of command @param is not found in the argument list of handle_message_delete(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:144: warning: argument 'out' of command @param is not found in the argument list of handle_message_delete(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:144: warning: argument 'in' of command @param is not found in the argument list of handle_message_delete(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:144: warning: argument 'out' of command @param is not found in the argument list of handle_message_delete(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.c:141: warning: The following parameters of handle_message_delete(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:39: warning: argument 'in' of command @param is not found in the argument list of handle_message_join(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:39: warning: argument 'out' of command @param is not found in the argument list of handle_message_join(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:39: warning: argument 'in' of command @param is not found in the argument list of handle_message_join(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:39: warning: argument 'out' of command @param is not found in the argument list of handle_message_join(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:48: warning: The following parameters of handle_message_join(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:54: warning: argument 'in' of command @param is not found in the argument list of handle_message_leave(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:54: warning: argument 'out' of command @param is not found in the argument list of handle_message_leave(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:54: warning: argument 'in' of command @param is not found in the argument list of handle_message_leave(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:54: warning: argument 'out' of command @param is not found in the argument list of handle_message_leave(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:63: warning: The following parameters of handle_message_leave(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:69: warning: argument 'in' of command @param is not found in the argument list of handle_message_name(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:69: warning: argument 'out' of command @param is not found in the argument list of handle_message_name(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:69: warning: argument 'in' of command @param is not found in the argument list of handle_message_name(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:69: warning: argument 'out' of command @param is not found in the argument list of handle_message_name(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:78: warning: The following parameters of handle_message_name(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:84: warning: argument 'in' of command @param is not found in the argument list of handle_message_key(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:84: warning: argument 'out' of command @param is not found in the argument list of handle_message_key(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:84: warning: argument 'in' of command @param is not found in the argument list of handle_message_key(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:84: warning: argument 'out' of command @param is not found in the argument list of handle_message_key(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:93: warning: The following parameters of handle_message_key(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:99: warning: argument 'in' of command @param is not found in the argument list of handle_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:99: warning: argument 'out' of command @param is not found in the argument list of handle_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:99: warning: argument 'in' of command @param is not found in the argument list of handle_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:99: warning: argument 'out' of command @param is not found in the argument list of handle_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:108: warning: The following parameters of handle_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:114: warning: argument 'in' of command @param is not found in the argument list of handle_message_id(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:114: warning: argument 'out' of command @param is not found in the argument list of handle_message_id(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:114: warning: argument 'in' of command @param is not found in the argument list of handle_message_id(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:114: warning: argument 'out' of command @param is not found in the argument list of handle_message_id(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:123: warning: The following parameters of handle_message_id(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:129: warning: argument 'in' of command @param is not found in the argument list of handle_message_miss(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:129: warning: argument 'out' of command @param is not found in the argument list of handle_message_miss(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:129: warning: argument 'in' of command @param is not found in the argument list of handle_message_miss(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:129: warning: argument 'out' of command @param is not found in the argument list of handle_message_miss(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:138: warning: The following parameters of handle_message_miss(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:144: warning: argument 'in' of command @param is not found in the argument list of handle_message_delete(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:144: warning: argument 'out' of command @param is not found in the argument list of handle_message_delete(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:144: warning: argument 'in' of command @param is not found in the argument list of handle_message_delete(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:144: warning: argument 'out' of command @param is not found in the argument list of handle_message_delete(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:153: warning: The following parameters of handle_message_delete(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_kind.h:153: warning: end of comment block while expecting command -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_kind.h:40: warning: argument 'members' of command @param is not found in the argument list of create_message_info(const struct GNUNET_MESSENGER_Ego *ego) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_kind.h:153: warning: end of comment block while expecting command -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_kind.h:153: warning: end of comment block while expecting command -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_kind.h:40: warning: argument 'members' of command @param is not found in the argument list of create_message_info(const struct GNUNET_MESSENGER_Ego *ego) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_kind.h:153: warning: end of comment block while expecting command -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:38: warning: argument 'in' of command @param is not found in the argument list of recv_message_info(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:38: warning: argument 'out' of command @param is not found in the argument list of recv_message_info(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:38: warning: argument 'in' of command @param is not found in the argument list of recv_message_info(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:38: warning: argument 'out' of command @param is not found in the argument list of recv_message_info(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.c:77: warning: The following parameters of recv_message_info(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'tunnel' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:55: warning: argument 'in' of command @param is not found in the argument list of recv_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:55: warning: argument 'out' of command @param is not found in the argument list of recv_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:55: warning: argument 'in' of command @param is not found in the argument list of recv_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:55: warning: argument 'out' of command @param is not found in the argument list of recv_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.c:116: warning: The following parameters of recv_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'tunnel' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:71: warning: argument 'in' of command @param is not found in the argument list of recv_message_request(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:71: warning: argument 'out' of command @param is not found in the argument list of recv_message_request(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:71: warning: argument 'in' of command @param is not found in the argument list of recv_message_request(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:71: warning: argument 'out' of command @param is not found in the argument list of recv_message_request(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.c:163: warning: The following parameters of recv_message_request(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'tunnel' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:38: warning: argument 'in' of command @param is not found in the argument list of recv_message_info(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:38: warning: argument 'out' of command @param is not found in the argument list of recv_message_info(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:38: warning: argument 'in' of command @param is not found in the argument list of recv_message_info(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:38: warning: argument 'out' of command @param is not found in the argument list of recv_message_info(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:49: warning: The following parameters of recv_message_info(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'tunnel' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:55: warning: argument 'in' of command @param is not found in the argument list of recv_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:55: warning: argument 'out' of command @param is not found in the argument list of recv_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:55: warning: argument 'in' of command @param is not found in the argument list of recv_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:55: warning: argument 'out' of command @param is not found in the argument list of recv_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:65: warning: The following parameters of recv_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'tunnel' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:71: warning: argument 'in' of command @param is not found in the argument list of recv_message_request(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:71: warning: argument 'out' of command @param is not found in the argument list of recv_message_request(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:71: warning: argument 'in' of command @param is not found in the argument list of recv_message_request(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:71: warning: argument 'out' of command @param is not found in the argument list of recv_message_request(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:82: warning: The following parameters of recv_message_request(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'tunnel' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:38: warning: argument 'in' of command @param is not found in the argument list of send_message_join(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:38: warning: argument 'out' of command @param is not found in the argument list of send_message_join(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:38: warning: argument 'in' of command @param is not found in the argument list of send_message_join(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:38: warning: argument 'out' of command @param is not found in the argument list of send_message_join(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.c:33: warning: The following parameters of send_message_join(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:53: warning: argument 'in' of command @param is not found in the argument list of send_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:53: warning: argument 'out' of command @param is not found in the argument list of send_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:53: warning: argument 'in' of command @param is not found in the argument list of send_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:53: warning: argument 'out' of command @param is not found in the argument list of send_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.c:42: warning: The following parameters of send_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:68: warning: argument 'in' of command @param is not found in the argument list of send_message_id(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:68: warning: argument 'out' of command @param is not found in the argument list of send_message_id(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:68: warning: argument 'in' of command @param is not found in the argument list of send_message_id(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:68: warning: argument 'out' of command @param is not found in the argument list of send_message_id(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.c:54: warning: The following parameters of send_message_id(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:83: warning: argument 'in' of command @param is not found in the argument list of send_message_request(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:83: warning: argument 'out' of command @param is not found in the argument list of send_message_request(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:83: warning: argument 'in' of command @param is not found in the argument list of send_message_request(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:83: warning: argument 'out' of command @param is not found in the argument list of send_message_request(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.c:63: warning: The following parameters of send_message_request(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:38: warning: argument 'in' of command @param is not found in the argument list of send_message_join(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:38: warning: argument 'out' of command @param is not found in the argument list of send_message_join(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:38: warning: argument 'in' of command @param is not found in the argument list of send_message_join(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:38: warning: argument 'out' of command @param is not found in the argument list of send_message_join(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:47: warning: The following parameters of send_message_join(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:53: warning: argument 'in' of command @param is not found in the argument list of send_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:53: warning: argument 'out' of command @param is not found in the argument list of send_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:53: warning: argument 'in' of command @param is not found in the argument list of send_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:53: warning: argument 'out' of command @param is not found in the argument list of send_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:62: warning: The following parameters of send_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:68: warning: argument 'in' of command @param is not found in the argument list of send_message_id(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:68: warning: argument 'out' of command @param is not found in the argument list of send_message_id(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:68: warning: argument 'in' of command @param is not found in the argument list of send_message_id(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:68: warning: argument 'out' of command @param is not found in the argument list of send_message_id(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:77: warning: The following parameters of send_message_id(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:83: warning: argument 'in' of command @param is not found in the argument list of send_message_request(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:83: warning: argument 'out' of command @param is not found in the argument list of send_message_request(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:83: warning: argument 'in' of command @param is not found in the argument list of send_message_request(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:83: warning: argument 'out' of command @param is not found in the argument list of send_message_request(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:92: warning: The following parameters of send_message_request(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:71: warning: argument 'in' of command @param is not found in the argument list of clear_message_store(struct GNUNET_MESSENGER_MessageStore *store) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:71: warning: argument 'out' of command @param is not found in the argument list of clear_message_store(struct GNUNET_MESSENGER_MessageStore *store) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.c:81: warning: The following parameter of clear_message_store(struct GNUNET_MESSENGER_MessageStore *store) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:111: warning: argument 'in' of command @param is not found in the argument list of get_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:111: warning: argument 'out' of command @param is not found in the argument list of get_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.c:414: warning: The following parameter of get_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:126: warning: argument 'in' of command @param is not found in the argument list of get_store_message_link(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash, int deleted_only) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:126: warning: argument 'out' of command @param is not found in the argument list of get_store_message_link(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash, int deleted_only) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.c:476: warning: The following parameter of get_store_message_link(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash, int deleted_only) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:144: warning: argument 'in' of command @param is not found in the argument list of put_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:144: warning: argument 'out' of command @param is not found in the argument list of put_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:144: warning: argument 'in' of command @param is not found in the argument list of put_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:144: warning: argument 'out' of command @param is not found in the argument list of put_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.c:506: warning: The following parameters of put_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash, struct GNUNET_MESSENGER_Message *message) are not documented: - parameter 'store' - parameter 'message' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:157: warning: argument 'in' of command @param is not found in the argument list of delete_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:157: warning: argument 'out' of command @param is not found in the argument list of delete_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.c:538: warning: The following parameter of delete_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:71: warning: argument 'in' of command @param is not found in the argument list of clear_message_store(struct GNUNET_MESSENGER_MessageStore *store) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:71: warning: argument 'out' of command @param is not found in the argument list of clear_message_store(struct GNUNET_MESSENGER_MessageStore *store) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:75: warning: The following parameter of clear_message_store(struct GNUNET_MESSENGER_MessageStore *store) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:111: warning: argument 'in' of command @param is not found in the argument list of get_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:111: warning: argument 'out' of command @param is not found in the argument list of get_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:123: warning: The following parameter of get_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:126: warning: argument 'in' of command @param is not found in the argument list of get_store_message_link(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash, int deleted_only) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:126: warning: argument 'out' of command @param is not found in the argument list of get_store_message_link(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash, int deleted_only) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:140: warning: The following parameter of get_store_message_link(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash, int deleted_only) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:144: warning: argument 'in' of command @param is not found in the argument list of put_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:144: warning: argument 'out' of command @param is not found in the argument list of put_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:144: warning: argument 'in' of command @param is not found in the argument list of put_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:144: warning: argument 'out' of command @param is not found in the argument list of put_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:153: warning: The following parameters of put_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash, struct GNUNET_MESSENGER_Message *message) are not documented: - parameter 'store' - parameter 'message' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:157: warning: argument 'in' of command @param is not found in the argument list of delete_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:157: warning: argument 'out' of command @param is not found in the argument list of delete_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:166: warning: The following parameter of delete_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation.h:68: warning: argument 'in' of command @param is not found in the argument list of destroy_operation(struct GNUNET_MESSENGER_Operation *op) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation.h:68: warning: argument 'out' of command @param is not found in the argument list of destroy_operation(struct GNUNET_MESSENGER_Operation *op) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation.c:47: warning: The following parameter of destroy_operation(struct GNUNET_MESSENGER_Operation *op) is not documented: - parameter 'op' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation.h:76: warning: argument 'in' of command @param is not found in the argument list of load_operation(struct GNUNET_MESSENGER_OperationStore *store, const char *path) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation.h:76: warning: argument 'out' of command @param is not found in the argument list of load_operation(struct GNUNET_MESSENGER_OperationStore *store, const char *path) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation.c:61: warning: The following parameter of load_operation(struct GNUNET_MESSENGER_OperationStore *store, const char *path) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation.h:104: warning: argument 'in' of command @param is not found in the argument list of start_operation(struct GNUNET_MESSENGER_Operation *op, enum GNUNET_MESSENGER_OperationType type, struct GNUNET_MESSENGER_OperationStore *store, struct GNUNET_TIME_Relative delay) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation.h:104: warning: argument 'out' of command @param is not found in the argument list of start_operation(struct GNUNET_MESSENGER_Operation *op, enum GNUNET_MESSENGER_OperationType type, struct GNUNET_MESSENGER_OperationStore *store, struct GNUNET_TIME_Relative delay) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation.h:104: warning: argument 'in' of command @param is not found in the argument list of start_operation(struct GNUNET_MESSENGER_Operation *op, enum GNUNET_MESSENGER_OperationType type, struct GNUNET_MESSENGER_OperationStore *store, struct GNUNET_TIME_Relative delay) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation.h:104: warning: argument 'out' of command @param is not found in the argument list of start_operation(struct GNUNET_MESSENGER_Operation *op, enum GNUNET_MESSENGER_OperationType type, struct GNUNET_MESSENGER_OperationStore *store, struct GNUNET_TIME_Relative delay) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation.c:175: warning: The following parameters of start_operation(struct GNUNET_MESSENGER_Operation *op, enum GNUNET_MESSENGER_OperationType type, struct GNUNET_MESSENGER_OperationStore *store, struct GNUNET_TIME_Relative delay) are not documented: - parameter 'op' - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation.h:68: warning: argument 'in' of command @param is not found in the argument list of destroy_operation(struct GNUNET_MESSENGER_Operation *op) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation.h:68: warning: argument 'out' of command @param is not found in the argument list of destroy_operation(struct GNUNET_MESSENGER_Operation *op) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation.h:72: warning: The following parameter of destroy_operation(struct GNUNET_MESSENGER_Operation *op) is not documented: - parameter 'op' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation.h:76: warning: argument 'in' of command @param is not found in the argument list of load_operation(struct GNUNET_MESSENGER_OperationStore *store, const char *path) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation.h:76: warning: argument 'out' of command @param is not found in the argument list of load_operation(struct GNUNET_MESSENGER_OperationStore *store, const char *path) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation.h:89: warning: The following parameter of load_operation(struct GNUNET_MESSENGER_OperationStore *store, const char *path) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation.h:104: warning: argument 'in' of command @param is not found in the argument list of start_operation(struct GNUNET_MESSENGER_Operation *op, enum GNUNET_MESSENGER_OperationType type, struct GNUNET_MESSENGER_OperationStore *store, struct GNUNET_TIME_Relative delay) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation.h:104: warning: argument 'out' of command @param is not found in the argument list of start_operation(struct GNUNET_MESSENGER_Operation *op, enum GNUNET_MESSENGER_OperationType type, struct GNUNET_MESSENGER_OperationStore *store, struct GNUNET_TIME_Relative delay) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation.h:104: warning: argument 'in' of command @param is not found in the argument list of start_operation(struct GNUNET_MESSENGER_Operation *op, enum GNUNET_MESSENGER_OperationType type, struct GNUNET_MESSENGER_OperationStore *store, struct GNUNET_TIME_Relative delay) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation.h:104: warning: argument 'out' of command @param is not found in the argument list of start_operation(struct GNUNET_MESSENGER_Operation *op, enum GNUNET_MESSENGER_OperationType type, struct GNUNET_MESSENGER_OperationStore *store, struct GNUNET_TIME_Relative delay) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation.h:117: warning: The following parameters of start_operation(struct GNUNET_MESSENGER_Operation *op, enum GNUNET_MESSENGER_OperationType type, struct GNUNET_MESSENGER_OperationStore *store, struct GNUNET_TIME_Relative delay) are not documented: - parameter 'op' - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.h:46: warning: argument 'in' of command @param is not found in the argument list of init_operation_store(struct GNUNET_MESSENGER_OperationStore *store, struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.h:46: warning: argument 'out' of command @param is not found in the argument list of init_operation_store(struct GNUNET_MESSENGER_OperationStore *store, struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.c:32: warning: The following parameter of init_operation_store(struct GNUNET_MESSENGER_OperationStore *store, struct GNUNET_MESSENGER_SrvRoom *room) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.h:56: warning: argument 'in' of command @param is not found in the argument list of clear_operation_store(struct GNUNET_MESSENGER_OperationStore *store) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.h:56: warning: argument 'out' of command @param is not found in the argument list of clear_operation_store(struct GNUNET_MESSENGER_OperationStore *store) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.c:54: warning: The following parameter of clear_operation_store(struct GNUNET_MESSENGER_OperationStore *store) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.h:95: warning: argument 'in' of command @param is not found in the argument list of use_store_operation(struct GNUNET_MESSENGER_OperationStore *store, const struct GNUNET_HashCode *hash, enum GNUNET_MESSENGER_OperationType type, struct GNUNET_TIME_Relative delay) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.h:95: warning: argument 'out' of command @param is not found in the argument list of use_store_operation(struct GNUNET_MESSENGER_OperationStore *store, const struct GNUNET_HashCode *hash, enum GNUNET_MESSENGER_OperationType type, struct GNUNET_TIME_Relative delay) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.c:153: warning: The following parameter of use_store_operation(struct GNUNET_MESSENGER_OperationStore *store, const struct GNUNET_HashCode *hash, enum GNUNET_MESSENGER_OperationType type, struct GNUNET_TIME_Relative delay) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.h:120: warning: argument 'in' of command @param is not found in the argument list of cancel_store_operation(struct GNUNET_MESSENGER_OperationStore *store, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.h:120: warning: argument 'out' of command @param is not found in the argument list of cancel_store_operation(struct GNUNET_MESSENGER_OperationStore *store, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.c:183: warning: The following parameter of cancel_store_operation(struct GNUNET_MESSENGER_OperationStore *store, const struct GNUNET_HashCode *hash) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.h:46: warning: argument 'in' of command @param is not found in the argument list of init_operation_store(struct GNUNET_MESSENGER_OperationStore *store, struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.h:46: warning: argument 'out' of command @param is not found in the argument list of init_operation_store(struct GNUNET_MESSENGER_OperationStore *store, struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.h:51: warning: The following parameter of init_operation_store(struct GNUNET_MESSENGER_OperationStore *store, struct GNUNET_MESSENGER_SrvRoom *room) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.h:56: warning: argument 'in' of command @param is not found in the argument list of clear_operation_store(struct GNUNET_MESSENGER_OperationStore *store) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.h:56: warning: argument 'out' of command @param is not found in the argument list of clear_operation_store(struct GNUNET_MESSENGER_OperationStore *store) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.h:60: warning: The following parameter of clear_operation_store(struct GNUNET_MESSENGER_OperationStore *store) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.h:95: warning: argument 'in' of command @param is not found in the argument list of use_store_operation(struct GNUNET_MESSENGER_OperationStore *store, const struct GNUNET_HashCode *hash, enum GNUNET_MESSENGER_OperationType type, struct GNUNET_TIME_Relative delay) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.h:95: warning: argument 'out' of command @param is not found in the argument list of use_store_operation(struct GNUNET_MESSENGER_OperationStore *store, const struct GNUNET_HashCode *hash, enum GNUNET_MESSENGER_OperationType type, struct GNUNET_TIME_Relative delay) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.h:113: warning: The following parameter of use_store_operation(struct GNUNET_MESSENGER_OperationStore *store, const struct GNUNET_HashCode *hash, enum GNUNET_MESSENGER_OperationType type, struct GNUNET_TIME_Relative delay) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.h:120: warning: argument 'in' of command @param is not found in the argument list of cancel_store_operation(struct GNUNET_MESSENGER_OperationStore *store, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.h:120: warning: argument 'out' of command @param is not found in the argument list of cancel_store_operation(struct GNUNET_MESSENGER_OperationStore *store, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.h:129: warning: The following parameter of cancel_store_operation(struct GNUNET_MESSENGER_OperationStore *store, const struct GNUNET_HashCode *hash) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:86: warning: argument 'in' of command @param is not found in the argument list of create_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:86: warning: argument 'out' of command @param is not found in the argument list of create_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.c:46: warning: The following parameter of create_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:97: warning: argument 'in' of command @param is not found in the argument list of destroy_room(struct GNUNET_MESSENGER_SrvRoom *room, int deletion) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:97: warning: argument 'out' of command @param is not found in the argument list of destroy_room(struct GNUNET_MESSENGER_SrvRoom *room, int deletion) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.c:95: warning: The following parameter of destroy_room(struct GNUNET_MESSENGER_SrvRoom *room, int deletion) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:110: warning: argument 'in' of command @param is not found in the argument list of get_room_member_store(struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:110: warning: argument 'out' of command @param is not found in the argument list of get_room_member_store(struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.c:136: warning: The following parameter of get_room_member_store(struct GNUNET_MESSENGER_SrvRoom *room) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:119: warning: argument 'in' of command @param is not found in the argument list of get_room_message_store(struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:119: warning: argument 'out' of command @param is not found in the argument list of get_room_message_store(struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.c:144: warning: The following parameter of get_room_message_store(struct GNUNET_MESSENGER_SrvRoom *room) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:128: warning: argument 'in' of command @param is not found in the argument list of get_room_operation_store(struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:128: warning: argument 'out' of command @param is not found in the argument list of get_room_operation_store(struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.c:152: warning: The following parameter of get_room_operation_store(struct GNUNET_MESSENGER_SrvRoom *room) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:135: warning: argument 'in' of command @param is not found in the argument list of open_room(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:135: warning: argument 'out' of command @param is not found in the argument list of open_room(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:135: warning: argument 'in' of command @param is not found in the argument list of open_room(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:135: warning: argument 'out' of command @param is not found in the argument list of open_room(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.c:339: warning: The following parameters of open_room(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle) are not documented: - parameter 'room' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:151: warning: argument 'in' of command @param is not found in the argument list of enter_room_at(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:151: warning: argument 'out' of command @param is not found in the argument list of enter_room_at(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:151: warning: argument 'in' of command @param is not found in the argument list of enter_room_at(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:151: warning: argument 'out' of command @param is not found in the argument list of enter_room_at(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.c:387: warning: The following parameters of enter_room_at(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door) are not documented: - parameter 'room' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:166: warning: argument 'in' of command @param is not found in the argument list of pack_room_message(const struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_Message *message, struct GNUNET_HashCode *hash, int mode) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:166: warning: argument 'out' of command @param is not found in the argument list of pack_room_message(const struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_Message *message, struct GNUNET_HashCode *hash, int mode) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.c:426: warning: The following parameter of pack_room_message(const struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_Message *message, struct GNUNET_HashCode *hash, int mode) is not documented: - parameter 'message' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:190: warning: argument 'in' of command @param is not found in the argument list of send_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:190: warning: argument 'out' of command @param is not found in the argument list of send_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:190: warning: argument 'in' of command @param is not found in the argument list of send_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:190: warning: argument 'out' of command @param is not found in the argument list of send_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:190: warning: argument 'in' of command @param is not found in the argument list of send_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:190: warning: argument 'out' of command @param is not found in the argument list of send_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.c:503: warning: The following parameters of send_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_Message *message) are not documented: - parameter 'room' - parameter 'handle' - parameter 'message' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:212: warning: argument 'in' of command @param is not found in the argument list of forward_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:212: warning: argument 'out' of command @param is not found in the argument list of forward_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:212: warning: argument 'in' of command @param is not found in the argument list of forward_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:212: warning: argument 'out' of command @param is not found in the argument list of forward_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:212: warning: argument 'in' of command @param is not found in the argument list of forward_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:212: warning: argument 'out' of command @param is not found in the argument list of forward_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.c:561: warning: The following parameters of forward_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'tunnel' - parameter 'message' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:226: warning: argument 'in' of command @param is not found in the argument list of check_room_peer_status(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:226: warning: argument 'out' of command @param is not found in the argument list of check_room_peer_status(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:226: warning: argument 'in' of command @param is not found in the argument list of check_room_peer_status(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:226: warning: argument 'out' of command @param is not found in the argument list of check_room_peer_status(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.c:587: warning: The following parameters of check_room_peer_status(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel) are not documented: - parameter 'room' - parameter 'tunnel' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:236: warning: argument 'in' of command @param is not found in the argument list of merge_room_last_messages(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:236: warning: argument 'out' of command @param is not found in the argument list of merge_room_last_messages(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:236: warning: argument 'in' of command @param is not found in the argument list of merge_room_last_messages(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:236: warning: argument 'out' of command @param is not found in the argument list of merge_room_last_messages(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.c:626: warning: The following parameters of merge_room_last_messages(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle) are not documented: - parameter 'room' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:249: warning: argument 'in' of command @param is not found in the argument list of delete_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash, const struct GNUNET_TIME_Relative delay) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:249: warning: argument 'out' of command @param is not found in the argument list of delete_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash, const struct GNUNET_TIME_Relative delay) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:249: warning: argument 'in' of command @param is not found in the argument list of delete_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash, const struct GNUNET_TIME_Relative delay) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:249: warning: argument 'out' of command @param is not found in the argument list of delete_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash, const struct GNUNET_TIME_Relative delay) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.c:668: warning: The following parameters of delete_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash, const struct GNUNET_TIME_Relative delay) are not documented: - parameter 'room' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:265: warning: argument 'in' of command @param is not found in the argument list of get_room_cadet(struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:265: warning: argument 'out' of command @param is not found in the argument list of get_room_cadet(struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.c:710: warning: The following parameter of get_room_cadet(struct GNUNET_MESSENGER_SrvRoom *room) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:310: warning: explicit link request to 'NULL' could not be resolved -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:308: warning: argument 'in' of command @param is not found in the argument list of request_room_message(struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_HashCode *hash, const struct GNUNET_MESSENGER_MemberSession *session, GNUNET_MESSENGER_MessageRequestCallback callback, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:308: warning: argument 'out' of command @param is not found in the argument list of request_room_message(struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_HashCode *hash, const struct GNUNET_MESSENGER_MemberSession *session, GNUNET_MESSENGER_MessageRequestCallback callback, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.c:774: warning: The following parameters of request_room_message(struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_HashCode *hash, const struct GNUNET_MESSENGER_MemberSession *session, GNUNET_MESSENGER_MessageRequestCallback callback, void *cls) are not documented: - parameter 'room' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:332: warning: argument 'in' of command @param is not found in the argument list of solve_room_member_collisions(struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_IDENTITY_PublicKey *public_key, const struct GNUNET_ShortHashCode *member_id, struct GNUNET_TIME_Absolute timestamp) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:332: warning: argument 'out' of command @param is not found in the argument list of solve_room_member_collisions(struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_IDENTITY_PublicKey *public_key, const struct GNUNET_ShortHashCode *member_id, struct GNUNET_TIME_Absolute timestamp) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.c:873: warning: The following parameter of solve_room_member_collisions(struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_IDENTITY_PublicKey *public_key, const struct GNUNET_ShortHashCode *member_id, struct GNUNET_TIME_Absolute timestamp) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:347: warning: argument 'in' of command @param is not found in the argument list of rebuild_room_basement_structure(struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:347: warning: argument 'out' of command @param is not found in the argument list of rebuild_room_basement_structure(struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.c:915: warning: The following parameter of rebuild_room_basement_structure(struct GNUNET_MESSENGER_SrvRoom *room) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:86: warning: argument 'in' of command @param is not found in the argument list of create_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:86: warning: argument 'out' of command @param is not found in the argument list of create_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:92: warning: The following parameter of create_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:97: warning: argument 'in' of command @param is not found in the argument list of destroy_room(struct GNUNET_MESSENGER_SrvRoom *room, int deletion) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:97: warning: argument 'out' of command @param is not found in the argument list of destroy_room(struct GNUNET_MESSENGER_SrvRoom *room, int deletion) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:105: warning: The following parameter of destroy_room(struct GNUNET_MESSENGER_SrvRoom *room, int deletion) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:110: warning: argument 'in' of command @param is not found in the argument list of get_room_member_store(struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:110: warning: argument 'out' of command @param is not found in the argument list of get_room_member_store(struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:115: warning: The following parameter of get_room_member_store(struct GNUNET_MESSENGER_SrvRoom *room) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:119: warning: argument 'in' of command @param is not found in the argument list of get_room_message_store(struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:119: warning: argument 'out' of command @param is not found in the argument list of get_room_message_store(struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:124: warning: The following parameter of get_room_message_store(struct GNUNET_MESSENGER_SrvRoom *room) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:128: warning: argument 'in' of command @param is not found in the argument list of get_room_operation_store(struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:128: warning: argument 'out' of command @param is not found in the argument list of get_room_operation_store(struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:133: warning: The following parameter of get_room_operation_store(struct GNUNET_MESSENGER_SrvRoom *room) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:135: warning: argument 'in' of command @param is not found in the argument list of open_room(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:135: warning: argument 'out' of command @param is not found in the argument list of open_room(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:135: warning: argument 'in' of command @param is not found in the argument list of open_room(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:135: warning: argument 'out' of command @param is not found in the argument list of open_room(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:148: warning: The following parameters of open_room(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle) are not documented: - parameter 'room' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:151: warning: argument 'in' of command @param is not found in the argument list of enter_room_at(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:151: warning: argument 'out' of command @param is not found in the argument list of enter_room_at(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:151: warning: argument 'in' of command @param is not found in the argument list of enter_room_at(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:151: warning: argument 'out' of command @param is not found in the argument list of enter_room_at(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:162: warning: The following parameters of enter_room_at(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door) are not documented: - parameter 'room' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:166: warning: argument 'in' of command @param is not found in the argument list of pack_room_message(const struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_Message *message, struct GNUNET_HashCode *hash, int mode) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:166: warning: argument 'out' of command @param is not found in the argument list of pack_room_message(const struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_Message *message, struct GNUNET_HashCode *hash, int mode) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:184: warning: The following parameter of pack_room_message(const struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_Message *message, struct GNUNET_HashCode *hash, int mode) is not documented: - parameter 'message' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:190: warning: argument 'in' of command @param is not found in the argument list of send_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:190: warning: argument 'out' of command @param is not found in the argument list of send_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:190: warning: argument 'in' of command @param is not found in the argument list of send_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:190: warning: argument 'out' of command @param is not found in the argument list of send_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:190: warning: argument 'in' of command @param is not found in the argument list of send_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:190: warning: argument 'out' of command @param is not found in the argument list of send_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:206: warning: The following parameters of send_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_Message *message) are not documented: - parameter 'room' - parameter 'handle' - parameter 'message' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:212: warning: argument 'in' of command @param is not found in the argument list of forward_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:212: warning: argument 'out' of command @param is not found in the argument list of forward_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:212: warning: argument 'in' of command @param is not found in the argument list of forward_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:212: warning: argument 'out' of command @param is not found in the argument list of forward_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:212: warning: argument 'in' of command @param is not found in the argument list of forward_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:212: warning: argument 'out' of command @param is not found in the argument list of forward_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:219: warning: The following parameters of forward_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'tunnel' - parameter 'message' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:226: warning: argument 'in' of command @param is not found in the argument list of check_room_peer_status(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:226: warning: argument 'out' of command @param is not found in the argument list of check_room_peer_status(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:226: warning: argument 'in' of command @param is not found in the argument list of check_room_peer_status(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:226: warning: argument 'out' of command @param is not found in the argument list of check_room_peer_status(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:233: warning: The following parameters of check_room_peer_status(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel) are not documented: - parameter 'room' - parameter 'tunnel' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:236: warning: argument 'in' of command @param is not found in the argument list of merge_room_last_messages(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:236: warning: argument 'out' of command @param is not found in the argument list of merge_room_last_messages(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:236: warning: argument 'in' of command @param is not found in the argument list of merge_room_last_messages(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:236: warning: argument 'out' of command @param is not found in the argument list of merge_room_last_messages(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:244: warning: The following parameters of merge_room_last_messages(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle) are not documented: - parameter 'room' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:249: warning: argument 'in' of command @param is not found in the argument list of delete_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash, const struct GNUNET_TIME_Relative delay) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:249: warning: argument 'out' of command @param is not found in the argument list of delete_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash, const struct GNUNET_TIME_Relative delay) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:249: warning: argument 'in' of command @param is not found in the argument list of delete_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash, const struct GNUNET_TIME_Relative delay) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:249: warning: argument 'out' of command @param is not found in the argument list of delete_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash, const struct GNUNET_TIME_Relative delay) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:258: warning: The following parameters of delete_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash, const struct GNUNET_TIME_Relative delay) are not documented: - parameter 'room' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:265: warning: argument 'in' of command @param is not found in the argument list of get_room_cadet(struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:265: warning: argument 'out' of command @param is not found in the argument list of get_room_cadet(struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:270: warning: The following parameter of get_room_cadet(struct GNUNET_MESSENGER_SrvRoom *room) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:310: warning: explicit link request to 'NULL' could not be resolved -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:308: warning: argument 'in' of command @param is not found in the argument list of request_room_message(struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_HashCode *hash, const struct GNUNET_MESSENGER_MemberSession *session, GNUNET_MESSENGER_MessageRequestCallback callback, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:308: warning: argument 'out' of command @param is not found in the argument list of request_room_message(struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_HashCode *hash, const struct GNUNET_MESSENGER_MemberSession *session, GNUNET_MESSENGER_MessageRequestCallback callback, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:324: warning: The following parameters of request_room_message(struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_HashCode *hash, const struct GNUNET_MESSENGER_MemberSession *session, GNUNET_MESSENGER_MessageRequestCallback callback, void *cls) are not documented: - parameter 'room' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:332: warning: argument 'in' of command @param is not found in the argument list of solve_room_member_collisions(struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_IDENTITY_PublicKey *public_key, const struct GNUNET_ShortHashCode *member_id, struct GNUNET_TIME_Absolute timestamp) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:332: warning: argument 'out' of command @param is not found in the argument list of solve_room_member_collisions(struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_IDENTITY_PublicKey *public_key, const struct GNUNET_ShortHashCode *member_id, struct GNUNET_TIME_Absolute timestamp) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:340: warning: The following parameter of solve_room_member_collisions(struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_IDENTITY_PublicKey *public_key, const struct GNUNET_ShortHashCode *member_id, struct GNUNET_TIME_Absolute timestamp) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:347: warning: argument 'in' of command @param is not found in the argument list of rebuild_room_basement_structure(struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:347: warning: argument 'out' of command @param is not found in the argument list of rebuild_room_basement_structure(struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:352: warning: The following parameter of rebuild_room_basement_structure(struct GNUNET_MESSENGER_SrvRoom *room) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:65: warning: argument 'in' of command @param is not found in the argument list of create_service(const struct GNUNET_CONFIGURATION_Handle *config, struct GNUNET_SERVICE_Handle *service_handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:65: warning: argument 'out' of command @param is not found in the argument list of create_service(const struct GNUNET_CONFIGURATION_Handle *config, struct GNUNET_SERVICE_Handle *service_handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.c:44: warning: The following parameter of create_service(const struct GNUNET_CONFIGURATION_Handle *config, struct GNUNET_SERVICE_Handle *service_handle) is not documented: - parameter 'service_handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:76: warning: argument 'in' of command @param is not found in the argument list of destroy_service(struct GNUNET_MESSENGER_Service *service) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:76: warning: argument 'out' of command @param is not found in the argument list of destroy_service(struct GNUNET_MESSENGER_Service *service) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.c:102: warning: The following parameter of destroy_service(struct GNUNET_MESSENGER_Service *service) is not documented: - parameter 'service' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:84: warning: argument 'in' of command @param is not found in the argument list of get_service_ego_store(struct GNUNET_MESSENGER_Service *service) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:84: warning: argument 'out' of command @param is not found in the argument list of get_service_ego_store(struct GNUNET_MESSENGER_Service *service) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.c:141: warning: The following parameter of get_service_ego_store(struct GNUNET_MESSENGER_Service *service) is not documented: - parameter 'service' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:93: warning: argument 'in' of command @param is not found in the argument list of get_service_contact_store(struct GNUNET_MESSENGER_Service *service) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:93: warning: argument 'out' of command @param is not found in the argument list of get_service_contact_store(struct GNUNET_MESSENGER_Service *service) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.c:149: warning: The following parameter of get_service_contact_store(struct GNUNET_MESSENGER_Service *service) is not documented: - parameter 'service' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:102: warning: argument 'in' of command @param is not found in the argument list of add_service_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MQ_Handle *mq) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:102: warning: argument 'out' of command @param is not found in the argument list of add_service_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MQ_Handle *mq) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:102: warning: argument 'in' of command @param is not found in the argument list of add_service_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MQ_Handle *mq) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:102: warning: argument 'out' of command @param is not found in the argument list of add_service_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MQ_Handle *mq) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.c:157: warning: The following parameters of add_service_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MQ_Handle *mq) are not documented: - parameter 'service' - parameter 'mq' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:113: warning: argument 'in' of command @param is not found in the argument list of remove_service_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:113: warning: argument 'out' of command @param is not found in the argument list of remove_service_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:113: warning: argument 'in' of command @param is not found in the argument list of remove_service_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:113: warning: argument 'out' of command @param is not found in the argument list of remove_service_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.c:173: warning: The following parameters of remove_service_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle) are not documented: - parameter 'service' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:145: warning: argument 'in' of command @param is not found in the argument list of open_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:145: warning: argument 'out' of command @param is not found in the argument list of open_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:145: warning: argument 'in' of command @param is not found in the argument list of open_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:145: warning: argument 'out' of command @param is not found in the argument list of open_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.c:204: warning: The following parameters of open_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) are not documented: - parameter 'service' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:159: warning: argument 'in' of command @param is not found in the argument list of entry_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:159: warning: argument 'out' of command @param is not found in the argument list of entry_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:159: warning: argument 'in' of command @param is not found in the argument list of entry_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:159: warning: argument 'out' of command @param is not found in the argument list of entry_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.c:228: warning: The following parameters of entry_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) are not documented: - parameter 'service' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:178: warning: argument 'in' of command @param is not found in the argument list of close_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:178: warning: argument 'out' of command @param is not found in the argument list of close_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:178: warning: argument 'in' of command @param is not found in the argument list of close_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:178: warning: argument 'out' of command @param is not found in the argument list of close_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.c:263: warning: The following parameters of close_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) are not documented: - parameter 'service' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:197: warning: argument 'in' of command @param is not found in the argument list of handle_service_message(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:197: warning: argument 'out' of command @param is not found in the argument list of handle_service_message(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:197: warning: argument 'in' of command @param is not found in the argument list of handle_service_message(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:197: warning: argument 'out' of command @param is not found in the argument list of handle_service_message(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.c:304: warning: The following parameters of handle_service_message(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'service' - parameter 'room' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:65: warning: argument 'in' of command @param is not found in the argument list of create_service(const struct GNUNET_CONFIGURATION_Handle *config, struct GNUNET_SERVICE_Handle *service_handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:65: warning: argument 'out' of command @param is not found in the argument list of create_service(const struct GNUNET_CONFIGURATION_Handle *config, struct GNUNET_SERVICE_Handle *service_handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:71: warning: The following parameter of create_service(const struct GNUNET_CONFIGURATION_Handle *config, struct GNUNET_SERVICE_Handle *service_handle) is not documented: - parameter 'service_handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:76: warning: argument 'in' of command @param is not found in the argument list of destroy_service(struct GNUNET_MESSENGER_Service *service) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:76: warning: argument 'out' of command @param is not found in the argument list of destroy_service(struct GNUNET_MESSENGER_Service *service) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:80: warning: The following parameter of destroy_service(struct GNUNET_MESSENGER_Service *service) is not documented: - parameter 'service' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:84: warning: argument 'in' of command @param is not found in the argument list of get_service_ego_store(struct GNUNET_MESSENGER_Service *service) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:84: warning: argument 'out' of command @param is not found in the argument list of get_service_ego_store(struct GNUNET_MESSENGER_Service *service) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:89: warning: The following parameter of get_service_ego_store(struct GNUNET_MESSENGER_Service *service) is not documented: - parameter 'service' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:93: warning: argument 'in' of command @param is not found in the argument list of get_service_contact_store(struct GNUNET_MESSENGER_Service *service) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:93: warning: argument 'out' of command @param is not found in the argument list of get_service_contact_store(struct GNUNET_MESSENGER_Service *service) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:98: warning: The following parameter of get_service_contact_store(struct GNUNET_MESSENGER_Service *service) is not documented: - parameter 'service' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:102: warning: argument 'in' of command @param is not found in the argument list of add_service_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MQ_Handle *mq) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:102: warning: argument 'out' of command @param is not found in the argument list of add_service_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MQ_Handle *mq) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:102: warning: argument 'in' of command @param is not found in the argument list of add_service_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MQ_Handle *mq) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:102: warning: argument 'out' of command @param is not found in the argument list of add_service_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MQ_Handle *mq) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:108: warning: The following parameters of add_service_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MQ_Handle *mq) are not documented: - parameter 'service' - parameter 'mq' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:113: warning: argument 'in' of command @param is not found in the argument list of remove_service_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:113: warning: argument 'out' of command @param is not found in the argument list of remove_service_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:113: warning: argument 'in' of command @param is not found in the argument list of remove_service_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:113: warning: argument 'out' of command @param is not found in the argument list of remove_service_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:118: warning: The following parameters of remove_service_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle) are not documented: - parameter 'service' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:145: warning: argument 'in' of command @param is not found in the argument list of open_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:145: warning: argument 'out' of command @param is not found in the argument list of open_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:145: warning: argument 'in' of command @param is not found in the argument list of open_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:145: warning: argument 'out' of command @param is not found in the argument list of open_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:155: warning: The following parameters of open_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) are not documented: - parameter 'service' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:159: warning: argument 'in' of command @param is not found in the argument list of entry_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:159: warning: argument 'out' of command @param is not found in the argument list of entry_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:159: warning: argument 'in' of command @param is not found in the argument list of entry_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:159: warning: argument 'out' of command @param is not found in the argument list of entry_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:173: warning: The following parameters of entry_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) are not documented: - parameter 'service' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:178: warning: argument 'in' of command @param is not found in the argument list of close_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:178: warning: argument 'out' of command @param is not found in the argument list of close_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:178: warning: argument 'in' of command @param is not found in the argument list of close_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:178: warning: argument 'out' of command @param is not found in the argument list of close_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:191: warning: The following parameters of close_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) are not documented: - parameter 'service' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:197: warning: argument 'in' of command @param is not found in the argument list of handle_service_message(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:197: warning: argument 'out' of command @param is not found in the argument list of handle_service_message(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:197: warning: argument 'in' of command @param is not found in the argument list of handle_service_message(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:197: warning: argument 'out' of command @param is not found in the argument list of handle_service_message(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:206: warning: The following parameters of handle_service_message(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'service' - parameter 'room' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:52: warning: argument 'in' of command @param is not found in the argument list of create_tunnel(struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_PeerIdentity *door) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:52: warning: argument 'out' of command @param is not found in the argument list of create_tunnel(struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_PeerIdentity *door) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.c:36: warning: The following parameter of create_tunnel(struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_PeerIdentity *door) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:63: warning: argument 'in' of command @param is not found in the argument list of destroy_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:63: warning: argument 'out' of command @param is not found in the argument list of destroy_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.c:58: warning: The following parameter of destroy_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel) is not documented: - parameter 'tunnel' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:71: warning: argument 'in' of command @param is not found in the argument list of bind_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_CADET_Channel *channel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:71: warning: argument 'out' of command @param is not found in the argument list of bind_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_CADET_Channel *channel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:71: warning: argument 'in' of command @param is not found in the argument list of bind_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_CADET_Channel *channel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:71: warning: argument 'out' of command @param is not found in the argument list of bind_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_CADET_Channel *channel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.c:76: warning: The following parameters of bind_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_CADET_Channel *channel) are not documented: - parameter 'tunnel' - parameter 'channel' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:81: warning: argument 'in' of command @param is not found in the argument list of connect_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:81: warning: argument 'out' of command @param is not found in the argument list of connect_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.c:235: warning: The following parameter of connect_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel) is not documented: - parameter 'tunnel' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:90: warning: argument 'in' of command @param is not found in the argument list of disconnect_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:90: warning: argument 'out' of command @param is not found in the argument list of disconnect_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.c:259: warning: The following parameter of disconnect_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel) is not documented: - parameter 'tunnel' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:110: warning: argument 'in' of command @param is not found in the argument list of send_tunnel_envelope(struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MQ_Envelope *env, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:110: warning: argument 'out' of command @param is not found in the argument list of send_tunnel_envelope(struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MQ_Envelope *env, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:110: warning: argument 'in' of command @param is not found in the argument list of send_tunnel_envelope(struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MQ_Envelope *env, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:110: warning: argument 'out' of command @param is not found in the argument list of send_tunnel_envelope(struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MQ_Envelope *env, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.c:297: warning: The following parameters of send_tunnel_envelope(struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MQ_Envelope *env, const struct GNUNET_HashCode *hash) are not documented: - parameter 'tunnel' - parameter 'env' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:121: warning: argument 'in' of command @param is not found in the argument list of send_tunnel_message(struct GNUNET_MESSENGER_SrvTunnel *tunnel, void *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:121: warning: argument 'out' of command @param is not found in the argument list of send_tunnel_message(struct GNUNET_MESSENGER_SrvTunnel *tunnel, void *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:121: warning: argument 'in' of command @param is not found in the argument list of send_tunnel_message(struct GNUNET_MESSENGER_SrvTunnel *tunnel, void *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:121: warning: argument 'out' of command @param is not found in the argument list of send_tunnel_message(struct GNUNET_MESSENGER_SrvTunnel *tunnel, void *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:121: warning: argument 'in' of command @param is not found in the argument list of send_tunnel_message(struct GNUNET_MESSENGER_SrvTunnel *tunnel, void *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:121: warning: argument 'out' of command @param is not found in the argument list of send_tunnel_message(struct GNUNET_MESSENGER_SrvTunnel *tunnel, void *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.c:316: warning: The following parameters of send_tunnel_message(struct GNUNET_MESSENGER_SrvTunnel *tunnel, void *handle, struct GNUNET_MESSENGER_Message *message) are not documented: - parameter 'tunnel' - parameter 'handle' - parameter 'message' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:138: warning: argument 'in' of command @param is not found in the argument list of forward_tunnel_message(struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:138: warning: argument 'out' of command @param is not found in the argument list of forward_tunnel_message(struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.c:344: warning: The following parameter of forward_tunnel_message(struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) is not documented: - parameter 'tunnel' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:182: warning: argument 'in' of command @param is not found in the argument list of update_tunnel_messenger_version(struct GNUNET_MESSENGER_SrvTunnel *tunnel, uint32_t version) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:182: warning: argument 'out' of command @param is not found in the argument list of update_tunnel_messenger_version(struct GNUNET_MESSENGER_SrvTunnel *tunnel, uint32_t version) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.c:390: warning: The following parameter of update_tunnel_messenger_version(struct GNUNET_MESSENGER_SrvTunnel *tunnel, uint32_t version) is not documented: - parameter 'tunnel' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:52: warning: argument 'in' of command @param is not found in the argument list of create_tunnel(struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_PeerIdentity *door) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:52: warning: argument 'out' of command @param is not found in the argument list of create_tunnel(struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_PeerIdentity *door) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:58: warning: The following parameter of create_tunnel(struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_PeerIdentity *door) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:63: warning: argument 'in' of command @param is not found in the argument list of destroy_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:63: warning: argument 'out' of command @param is not found in the argument list of destroy_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:67: warning: The following parameter of destroy_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel) is not documented: - parameter 'tunnel' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:71: warning: argument 'in' of command @param is not found in the argument list of bind_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_CADET_Channel *channel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:71: warning: argument 'out' of command @param is not found in the argument list of bind_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_CADET_Channel *channel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:71: warning: argument 'in' of command @param is not found in the argument list of bind_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_CADET_Channel *channel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:71: warning: argument 'out' of command @param is not found in the argument list of bind_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_CADET_Channel *channel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:77: warning: The following parameters of bind_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_CADET_Channel *channel) are not documented: - parameter 'tunnel' - parameter 'channel' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:81: warning: argument 'in' of command @param is not found in the argument list of connect_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:81: warning: argument 'out' of command @param is not found in the argument list of connect_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:88: warning: The following parameter of connect_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel) is not documented: - parameter 'tunnel' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:90: warning: argument 'in' of command @param is not found in the argument list of disconnect_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:90: warning: argument 'out' of command @param is not found in the argument list of disconnect_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:97: warning: The following parameter of disconnect_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel) is not documented: - parameter 'tunnel' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:110: warning: argument 'in' of command @param is not found in the argument list of send_tunnel_envelope(struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MQ_Envelope *env, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:110: warning: argument 'out' of command @param is not found in the argument list of send_tunnel_envelope(struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MQ_Envelope *env, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:110: warning: argument 'in' of command @param is not found in the argument list of send_tunnel_envelope(struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MQ_Envelope *env, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:110: warning: argument 'out' of command @param is not found in the argument list of send_tunnel_envelope(struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MQ_Envelope *env, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:117: warning: The following parameters of send_tunnel_envelope(struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MQ_Envelope *env, const struct GNUNET_HashCode *hash) are not documented: - parameter 'tunnel' - parameter 'env' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:121: warning: argument 'in' of command @param is not found in the argument list of send_tunnel_message(struct GNUNET_MESSENGER_SrvTunnel *tunnel, void *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:121: warning: argument 'out' of command @param is not found in the argument list of send_tunnel_message(struct GNUNET_MESSENGER_SrvTunnel *tunnel, void *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:121: warning: argument 'in' of command @param is not found in the argument list of send_tunnel_message(struct GNUNET_MESSENGER_SrvTunnel *tunnel, void *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:121: warning: argument 'out' of command @param is not found in the argument list of send_tunnel_message(struct GNUNET_MESSENGER_SrvTunnel *tunnel, void *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:121: warning: argument 'in' of command @param is not found in the argument list of send_tunnel_message(struct GNUNET_MESSENGER_SrvTunnel *tunnel, void *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:121: warning: argument 'out' of command @param is not found in the argument list of send_tunnel_message(struct GNUNET_MESSENGER_SrvTunnel *tunnel, void *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:132: warning: The following parameters of send_tunnel_message(struct GNUNET_MESSENGER_SrvTunnel *tunnel, void *handle, struct GNUNET_MESSENGER_Message *message) are not documented: - parameter 'tunnel' - parameter 'handle' - parameter 'message' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:138: warning: argument 'in' of command @param is not found in the argument list of forward_tunnel_message(struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:138: warning: argument 'out' of command @param is not found in the argument list of forward_tunnel_message(struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:144: warning: The following parameter of forward_tunnel_message(struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) is not documented: - parameter 'tunnel' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:182: warning: argument 'in' of command @param is not found in the argument list of update_tunnel_messenger_version(struct GNUNET_MESSENGER_SrvTunnel *tunnel, uint32_t version) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:182: warning: argument 'out' of command @param is not found in the argument list of update_tunnel_messenger_version(struct GNUNET_MESSENGER_SrvTunnel *tunnel, uint32_t version) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:191: warning: The following parameter of update_tunnel_messenger_version(struct GNUNET_MESSENGER_SrvTunnel *tunnel, uint32_t version) is not documented: - parameter 'tunnel' -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:794: warning: found tag without matching -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:794: warning: found tag without matching -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:52: warning: argument 'in' of command @param is not found in the argument list of destroy_contact(struct GNUNET_MESSENGER_Contact *contact) -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:52: warning: argument 'out' of command @param is not found in the argument list of destroy_contact(struct GNUNET_MESSENGER_Contact *contact) -/home/william/Git/gnunet/src/messenger/messenger_api_contact.c:44: warning: The following parameter of destroy_contact(struct GNUNET_MESSENGER_Contact *contact) is not documented: - parameter 'contact' -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:69: warning: argument 'in' of command @param is not found in the argument list of set_contact_name(struct GNUNET_MESSENGER_Contact *contact, const char *name) -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:69: warning: argument 'out' of command @param is not found in the argument list of set_contact_name(struct GNUNET_MESSENGER_Contact *contact, const char *name) -/home/william/Git/gnunet/src/messenger/messenger_api_contact.c:63: warning: The following parameter of set_contact_name(struct GNUNET_MESSENGER_Contact *contact, const char *name) is not documented: - parameter 'contact' -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:88: warning: argument 'in' of command @param is not found in the argument list of increase_contact_rc(struct GNUNET_MESSENGER_Contact *contact) -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:88: warning: argument 'out' of command @param is not found in the argument list of increase_contact_rc(struct GNUNET_MESSENGER_Contact *contact) -/home/william/Git/gnunet/src/messenger/messenger_api_contact.c:83: warning: The following parameter of increase_contact_rc(struct GNUNET_MESSENGER_Contact *contact) is not documented: - parameter 'contact' -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:96: warning: argument 'in' of command @param is not found in the argument list of decrease_contact_rc(struct GNUNET_MESSENGER_Contact *contact) -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:96: warning: argument 'out' of command @param is not found in the argument list of decrease_contact_rc(struct GNUNET_MESSENGER_Contact *contact) -/home/william/Git/gnunet/src/messenger/messenger_api_contact.c:91: warning: The following parameter of decrease_contact_rc(struct GNUNET_MESSENGER_Contact *contact) is not documented: - parameter 'contact' -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:106: warning: argument 'hash' of command @param is not found in the argument list of get_context_from_member(const struct GNUNET_HashCode *key, const struct GNUNET_ShortHashCode *id, struct GNUNET_HashCode *context) -/home/william/Git/gnunet/src/messenger/messenger_api_contact.c:102: warning: The following parameter of get_context_from_member(const struct GNUNET_HashCode *key, const struct GNUNET_ShortHashCode *id, struct GNUNET_HashCode *context) is not documented: - parameter 'context' -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:52: warning: argument 'in' of command @param is not found in the argument list of destroy_contact(struct GNUNET_MESSENGER_Contact *contact) -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:52: warning: argument 'out' of command @param is not found in the argument list of destroy_contact(struct GNUNET_MESSENGER_Contact *contact) -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:56: warning: The following parameter of destroy_contact(struct GNUNET_MESSENGER_Contact *contact) is not documented: - parameter 'contact' -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:69: warning: argument 'in' of command @param is not found in the argument list of set_contact_name(struct GNUNET_MESSENGER_Contact *contact, const char *name) -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:69: warning: argument 'out' of command @param is not found in the argument list of set_contact_name(struct GNUNET_MESSENGER_Contact *contact, const char *name) -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:74: warning: The following parameter of set_contact_name(struct GNUNET_MESSENGER_Contact *contact, const char *name) is not documented: - parameter 'contact' -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:88: warning: argument 'in' of command @param is not found in the argument list of increase_contact_rc(struct GNUNET_MESSENGER_Contact *contact) -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:88: warning: argument 'out' of command @param is not found in the argument list of increase_contact_rc(struct GNUNET_MESSENGER_Contact *contact) -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:92: warning: The following parameter of increase_contact_rc(struct GNUNET_MESSENGER_Contact *contact) is not documented: - parameter 'contact' -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:96: warning: argument 'in' of command @param is not found in the argument list of decrease_contact_rc(struct GNUNET_MESSENGER_Contact *contact) -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:96: warning: argument 'out' of command @param is not found in the argument list of decrease_contact_rc(struct GNUNET_MESSENGER_Contact *contact) -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:102: warning: The following parameter of decrease_contact_rc(struct GNUNET_MESSENGER_Contact *contact) is not documented: - parameter 'contact' -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:106: warning: argument 'hash' of command @param is not found in the argument list of get_context_from_member(const struct GNUNET_HashCode *key, const struct GNUNET_ShortHashCode *id, struct GNUNET_HashCode *context) -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:112: warning: The following parameter of get_context_from_member(const struct GNUNET_HashCode *key, const struct GNUNET_ShortHashCode *id, struct GNUNET_HashCode *context) is not documented: - parameter 'context' -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:52: warning: argument 'in' of command @param is not found in the argument list of clear_contact_store(struct GNUNET_MESSENGER_ContactStore *store) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:52: warning: argument 'out' of command @param is not found in the argument list of clear_contact_store(struct GNUNET_MESSENGER_ContactStore *store) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.c:51: warning: The following parameter of clear_contact_store(struct GNUNET_MESSENGER_ContactStore *store) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:58: warning: argument 'in' of command @param is not found in the argument list of get_store_contact_raw(struct GNUNET_MESSENGER_ContactStore *store, const struct GNUNET_HashCode *context, const struct GNUNET_HashCode *key_hash) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:58: warning: argument 'out' of command @param is not found in the argument list of get_store_contact_raw(struct GNUNET_MESSENGER_ContactStore *store, const struct GNUNET_HashCode *context, const struct GNUNET_HashCode *key_hash) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.c:82: warning: The following parameter of get_store_contact_raw(struct GNUNET_MESSENGER_ContactStore *store, const struct GNUNET_HashCode *context, const struct GNUNET_HashCode *key_hash) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:75: warning: argument 'in' of command @param is not found in the argument list of get_store_contact(struct GNUNET_MESSENGER_ContactStore *store, const struct GNUNET_HashCode *context, const struct GNUNET_IDENTITY_PublicKey *pubkey) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:75: warning: argument 'out' of command @param is not found in the argument list of get_store_contact(struct GNUNET_MESSENGER_ContactStore *store, const struct GNUNET_HashCode *context, const struct GNUNET_IDENTITY_PublicKey *pubkey) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.c:99: warning: The following parameter of get_store_contact(struct GNUNET_MESSENGER_ContactStore *store, const struct GNUNET_HashCode *context, const struct GNUNET_IDENTITY_PublicKey *pubkey) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:97: warning: argument 'in' of command @param is not found in the argument list of update_store_contact(struct GNUNET_MESSENGER_ContactStore *store, struct GNUNET_MESSENGER_Contact *contact, const struct GNUNET_HashCode *context, const struct GNUNET_HashCode *next_context, const struct GNUNET_IDENTITY_PublicKey *pubkey) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:97: warning: argument 'out' of command @param is not found in the argument list of update_store_contact(struct GNUNET_MESSENGER_ContactStore *store, struct GNUNET_MESSENGER_Contact *contact, const struct GNUNET_HashCode *context, const struct GNUNET_HashCode *next_context, const struct GNUNET_IDENTITY_PublicKey *pubkey) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:97: warning: argument 'in' of command @param is not found in the argument list of update_store_contact(struct GNUNET_MESSENGER_ContactStore *store, struct GNUNET_MESSENGER_Contact *contact, const struct GNUNET_HashCode *context, const struct GNUNET_HashCode *next_context, const struct GNUNET_IDENTITY_PublicKey *pubkey) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:97: warning: argument 'out' of command @param is not found in the argument list of update_store_contact(struct GNUNET_MESSENGER_ContactStore *store, struct GNUNET_MESSENGER_Contact *contact, const struct GNUNET_HashCode *context, const struct GNUNET_HashCode *next_context, const struct GNUNET_IDENTITY_PublicKey *pubkey) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.c:138: warning: The following parameters of update_store_contact(struct GNUNET_MESSENGER_ContactStore *store, struct GNUNET_MESSENGER_Contact *contact, const struct GNUNET_HashCode *context, const struct GNUNET_HashCode *next_context, const struct GNUNET_IDENTITY_PublicKey *pubkey) are not documented: - parameter 'store' - parameter 'contact' -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:116: warning: argument 'in' of command @param is not found in the argument list of remove_store_contact(struct GNUNET_MESSENGER_ContactStore *store, struct GNUNET_MESSENGER_Contact *contact, const struct GNUNET_HashCode *context) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:116: warning: argument 'out' of command @param is not found in the argument list of remove_store_contact(struct GNUNET_MESSENGER_ContactStore *store, struct GNUNET_MESSENGER_Contact *contact, const struct GNUNET_HashCode *context) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:116: warning: argument 'in' of command @param is not found in the argument list of remove_store_contact(struct GNUNET_MESSENGER_ContactStore *store, struct GNUNET_MESSENGER_Contact *contact, const struct GNUNET_HashCode *context) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:116: warning: argument 'out' of command @param is not found in the argument list of remove_store_contact(struct GNUNET_MESSENGER_ContactStore *store, struct GNUNET_MESSENGER_Contact *contact, const struct GNUNET_HashCode *context) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.c:173: warning: The following parameters of remove_store_contact(struct GNUNET_MESSENGER_ContactStore *store, struct GNUNET_MESSENGER_Contact *contact, const struct GNUNET_HashCode *context) are not documented: - parameter 'store' - parameter 'contact' -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:52: warning: argument 'in' of command @param is not found in the argument list of clear_contact_store(struct GNUNET_MESSENGER_ContactStore *store) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:52: warning: argument 'out' of command @param is not found in the argument list of clear_contact_store(struct GNUNET_MESSENGER_ContactStore *store) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:56: warning: The following parameter of clear_contact_store(struct GNUNET_MESSENGER_ContactStore *store) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:58: warning: argument 'in' of command @param is not found in the argument list of get_store_contact_raw(struct GNUNET_MESSENGER_ContactStore *store, const struct GNUNET_HashCode *context, const struct GNUNET_HashCode *key_hash) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:58: warning: argument 'out' of command @param is not found in the argument list of get_store_contact_raw(struct GNUNET_MESSENGER_ContactStore *store, const struct GNUNET_HashCode *context, const struct GNUNET_HashCode *key_hash) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:71: warning: The following parameter of get_store_contact_raw(struct GNUNET_MESSENGER_ContactStore *store, const struct GNUNET_HashCode *context, const struct GNUNET_HashCode *key_hash) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:75: warning: argument 'in' of command @param is not found in the argument list of get_store_contact(struct GNUNET_MESSENGER_ContactStore *store, const struct GNUNET_HashCode *context, const struct GNUNET_IDENTITY_PublicKey *pubkey) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:75: warning: argument 'out' of command @param is not found in the argument list of get_store_contact(struct GNUNET_MESSENGER_ContactStore *store, const struct GNUNET_HashCode *context, const struct GNUNET_IDENTITY_PublicKey *pubkey) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:91: warning: The following parameter of get_store_contact(struct GNUNET_MESSENGER_ContactStore *store, const struct GNUNET_HashCode *context, const struct GNUNET_IDENTITY_PublicKey *pubkey) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:97: warning: argument 'in' of command @param is not found in the argument list of update_store_contact(struct GNUNET_MESSENGER_ContactStore *store, struct GNUNET_MESSENGER_Contact *contact, const struct GNUNET_HashCode *context, const struct GNUNET_HashCode *next_context, const struct GNUNET_IDENTITY_PublicKey *pubkey) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:97: warning: argument 'out' of command @param is not found in the argument list of update_store_contact(struct GNUNET_MESSENGER_ContactStore *store, struct GNUNET_MESSENGER_Contact *contact, const struct GNUNET_HashCode *context, const struct GNUNET_HashCode *next_context, const struct GNUNET_IDENTITY_PublicKey *pubkey) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:97: warning: argument 'in' of command @param is not found in the argument list of update_store_contact(struct GNUNET_MESSENGER_ContactStore *store, struct GNUNET_MESSENGER_Contact *contact, const struct GNUNET_HashCode *context, const struct GNUNET_HashCode *next_context, const struct GNUNET_IDENTITY_PublicKey *pubkey) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:97: warning: argument 'out' of command @param is not found in the argument list of update_store_contact(struct GNUNET_MESSENGER_ContactStore *store, struct GNUNET_MESSENGER_Contact *contact, const struct GNUNET_HashCode *context, const struct GNUNET_HashCode *next_context, const struct GNUNET_IDENTITY_PublicKey *pubkey) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:108: warning: The following parameters of update_store_contact(struct GNUNET_MESSENGER_ContactStore *store, struct GNUNET_MESSENGER_Contact *contact, const struct GNUNET_HashCode *context, const struct GNUNET_HashCode *next_context, const struct GNUNET_IDENTITY_PublicKey *pubkey) are not documented: - parameter 'store' - parameter 'contact' -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:116: warning: argument 'in' of command @param is not found in the argument list of remove_store_contact(struct GNUNET_MESSENGER_ContactStore *store, struct GNUNET_MESSENGER_Contact *contact, const struct GNUNET_HashCode *context) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:116: warning: argument 'out' of command @param is not found in the argument list of remove_store_contact(struct GNUNET_MESSENGER_ContactStore *store, struct GNUNET_MESSENGER_Contact *contact, const struct GNUNET_HashCode *context) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:116: warning: argument 'in' of command @param is not found in the argument list of remove_store_contact(struct GNUNET_MESSENGER_ContactStore *store, struct GNUNET_MESSENGER_Contact *contact, const struct GNUNET_HashCode *context) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:116: warning: argument 'out' of command @param is not found in the argument list of remove_store_contact(struct GNUNET_MESSENGER_ContactStore *store, struct GNUNET_MESSENGER_Contact *contact, const struct GNUNET_HashCode *context) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:123: warning: The following parameters of remove_store_contact(struct GNUNET_MESSENGER_ContactStore *store, struct GNUNET_MESSENGER_Contact *contact, const struct GNUNET_HashCode *context) are not documented: - parameter 'store' - parameter 'contact' -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:66: warning: argument 'in' of command @param is not found in the argument list of create_handle(const struct GNUNET_CONFIGURATION_Handle *cfg, GNUNET_MESSENGER_IdentityCallback identity_callback, void *identity_cls, GNUNET_MESSENGER_MessageCallback msg_callback, void *msg_cls) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:66: warning: argument 'out' of command @param is not found in the argument list of create_handle(const struct GNUNET_CONFIGURATION_Handle *cfg, GNUNET_MESSENGER_IdentityCallback identity_callback, void *identity_cls, GNUNET_MESSENGER_MessageCallback msg_callback, void *msg_cls) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.c:31: warning: The following parameters of create_handle(const struct GNUNET_CONFIGURATION_Handle *cfg, GNUNET_MESSENGER_IdentityCallback identity_callback, void *identity_cls, GNUNET_MESSENGER_MessageCallback msg_callback, void *msg_cls) are not documented: - parameter 'identity_callback' - parameter 'identity_cls' - parameter 'msg_cls' -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:82: warning: argument 'in' of command @param is not found in the argument list of destroy_handle(struct GNUNET_MESSENGER_Handle *handle) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:82: warning: argument 'out' of command @param is not found in the argument list of destroy_handle(struct GNUNET_MESSENGER_Handle *handle) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.c:76: warning: The following parameter of destroy_handle(struct GNUNET_MESSENGER_Handle *handle) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:90: warning: argument 'in' of command @param is not found in the argument list of set_handle_name(struct GNUNET_MESSENGER_Handle *handle, const char *name) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:90: warning: argument 'out' of command @param is not found in the argument list of set_handle_name(struct GNUNET_MESSENGER_Handle *handle, const char *name) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.c:105: warning: The following parameter of set_handle_name(struct GNUNET_MESSENGER_Handle *handle, const char *name) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:109: warning: argument 'in' of command @param is not found in the argument list of set_handle_key(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_IDENTITY_PublicKey *pubkey) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:109: warning: argument 'out' of command @param is not found in the argument list of set_handle_key(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_IDENTITY_PublicKey *pubkey) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.c:125: warning: The following parameter of set_handle_key(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_IDENTITY_PublicKey *pubkey) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:128: warning: argument 'in' of command @param is not found in the argument list of get_handle_contact_store(struct GNUNET_MESSENGER_Handle *handle) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:128: warning: argument 'out' of command @param is not found in the argument list of get_handle_contact_store(struct GNUNET_MESSENGER_Handle *handle) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.c:148: warning: The following parameter of get_handle_contact_store(struct GNUNET_MESSENGER_Handle *handle) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:137: warning: argument 'in' of command @param is not found in the argument list of get_handle_contact(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:137: warning: argument 'out' of command @param is not found in the argument list of get_handle_contact(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.c:156: warning: The following parameter of get_handle_contact(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:149: warning: argument 'in' of command @param is not found in the argument list of open_handle_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:149: warning: argument 'out' of command @param is not found in the argument list of open_handle_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.c:173: warning: The following parameter of open_handle_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:159: warning: argument 'in' of command @param is not found in the argument list of entry_handle_room_at(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:159: warning: argument 'out' of command @param is not found in the argument list of entry_handle_room_at(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.c:185: warning: The following parameter of entry_handle_room_at(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:172: warning: argument 'in' of command @param is not found in the argument list of close_handle_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:172: warning: argument 'out' of command @param is not found in the argument list of close_handle_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.c:198: warning: The following parameter of close_handle_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:66: warning: argument 'in' of command @param is not found in the argument list of create_handle(const struct GNUNET_CONFIGURATION_Handle *cfg, GNUNET_MESSENGER_IdentityCallback identity_callback, void *identity_cls, GNUNET_MESSENGER_MessageCallback msg_callback, void *msg_cls) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:66: warning: argument 'out' of command @param is not found in the argument list of create_handle(const struct GNUNET_CONFIGURATION_Handle *cfg, GNUNET_MESSENGER_IdentityCallback identity_callback, void *identity_cls, GNUNET_MESSENGER_MessageCallback msg_callback, void *msg_cls) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:74: warning: The following parameters of create_handle(const struct GNUNET_CONFIGURATION_Handle *cfg, GNUNET_MESSENGER_IdentityCallback identity_callback, void *identity_cls, GNUNET_MESSENGER_MessageCallback msg_callback, void *msg_cls) are not documented: - parameter 'identity_callback' - parameter 'identity_cls' - parameter 'msg_cls' -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:82: warning: argument 'in' of command @param is not found in the argument list of destroy_handle(struct GNUNET_MESSENGER_Handle *handle) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:82: warning: argument 'out' of command @param is not found in the argument list of destroy_handle(struct GNUNET_MESSENGER_Handle *handle) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:86: warning: The following parameter of destroy_handle(struct GNUNET_MESSENGER_Handle *handle) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:90: warning: argument 'in' of command @param is not found in the argument list of set_handle_name(struct GNUNET_MESSENGER_Handle *handle, const char *name) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:90: warning: argument 'out' of command @param is not found in the argument list of set_handle_name(struct GNUNET_MESSENGER_Handle *handle, const char *name) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:95: warning: The following parameter of set_handle_name(struct GNUNET_MESSENGER_Handle *handle, const char *name) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:109: warning: argument 'in' of command @param is not found in the argument list of set_handle_key(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_IDENTITY_PublicKey *pubkey) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:109: warning: argument 'out' of command @param is not found in the argument list of set_handle_key(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_IDENTITY_PublicKey *pubkey) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:114: warning: The following parameter of set_handle_key(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_IDENTITY_PublicKey *pubkey) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:128: warning: argument 'in' of command @param is not found in the argument list of get_handle_contact_store(struct GNUNET_MESSENGER_Handle *handle) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:128: warning: argument 'out' of command @param is not found in the argument list of get_handle_contact_store(struct GNUNET_MESSENGER_Handle *handle) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:133: warning: The following parameter of get_handle_contact_store(struct GNUNET_MESSENGER_Handle *handle) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:137: warning: argument 'in' of command @param is not found in the argument list of get_handle_contact(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:137: warning: argument 'out' of command @param is not found in the argument list of get_handle_contact(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:144: warning: The following parameter of get_handle_contact(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:149: warning: argument 'in' of command @param is not found in the argument list of open_handle_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:149: warning: argument 'out' of command @param is not found in the argument list of open_handle_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:154: warning: The following parameter of open_handle_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:159: warning: argument 'in' of command @param is not found in the argument list of entry_handle_room_at(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:159: warning: argument 'out' of command @param is not found in the argument list of entry_handle_room_at(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:166: warning: The following parameter of entry_handle_room_at(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:172: warning: argument 'in' of command @param is not found in the argument list of close_handle_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:172: warning: argument 'out' of command @param is not found in the argument list of close_handle_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:177: warning: The following parameter of close_handle_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:57: warning: argument 'in' of command @param is not found in the argument list of clear_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:57: warning: argument 'out' of command @param is not found in the argument list of clear_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.c:38: warning: The following parameter of clear_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels) is not documented: - parameter 'tunnels' -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:65: warning: argument 'in' of command @param is not found in the argument list of add_to_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const struct GNUNET_PeerIdentity *peer) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:65: warning: argument 'out' of command @param is not found in the argument list of add_to_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const struct GNUNET_PeerIdentity *peer) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.c:64: warning: The following parameter of add_to_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const struct GNUNET_PeerIdentity *peer) is not documented: - parameter 'tunnels' -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:75: warning: argument 'in' of command @param is not found in the argument list of find_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const struct GNUNET_PeerIdentity *peer, size_t *index) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:75: warning: argument 'out' of command @param is not found in the argument list of find_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const struct GNUNET_PeerIdentity *peer, size_t *index) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.c:78: warning: The following parameter of find_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const struct GNUNET_PeerIdentity *peer, size_t *index) is not documented: - parameter 'tunnels' -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:95: warning: argument 'in' of command @param is not found in the argument list of contains_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const struct GNUNET_PeerIdentity *peer) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:95: warning: argument 'out' of command @param is not found in the argument list of contains_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const struct GNUNET_PeerIdentity *peer) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.c:105: warning: The following parameter of contains_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const struct GNUNET_PeerIdentity *peer) is not documented: - parameter 'tunnels' -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:107: warning: argument 'in' of command @param is not found in the argument list of remove_from_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, struct GNUNET_MESSENGER_ListTunnel *element) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:107: warning: argument 'out' of command @param is not found in the argument list of remove_from_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, struct GNUNET_MESSENGER_ListTunnel *element) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:107: warning: argument 'in' of command @param is not found in the argument list of remove_from_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, struct GNUNET_MESSENGER_ListTunnel *element) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:107: warning: argument 'out' of command @param is not found in the argument list of remove_from_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, struct GNUNET_MESSENGER_ListTunnel *element) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.c:114: warning: The following parameters of remove_from_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, struct GNUNET_MESSENGER_ListTunnel *element) are not documented: - parameter 'tunnels' - parameter 'element' -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:119: warning: argument 'messages' of command @param is not found in the argument list of load_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const char *path) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.c:129: warning: The following parameter of load_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const char *path) is not documented: - parameter 'tunnels' -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:129: warning: argument 'messages' of command @param is not found in the argument list of save_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const char *path) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.c:164: warning: The following parameter of save_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const char *path) is not documented: - parameter 'tunnels' -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:57: warning: argument 'in' of command @param is not found in the argument list of clear_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:57: warning: argument 'out' of command @param is not found in the argument list of clear_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:61: warning: The following parameter of clear_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels) is not documented: - parameter 'tunnels' -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:65: warning: argument 'in' of command @param is not found in the argument list of add_to_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const struct GNUNET_PeerIdentity *peer) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:65: warning: argument 'out' of command @param is not found in the argument list of add_to_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const struct GNUNET_PeerIdentity *peer) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:70: warning: The following parameter of add_to_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const struct GNUNET_PeerIdentity *peer) is not documented: - parameter 'tunnels' -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:75: warning: argument 'in' of command @param is not found in the argument list of find_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const struct GNUNET_PeerIdentity *peer, size_t *index) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:75: warning: argument 'out' of command @param is not found in the argument list of find_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const struct GNUNET_PeerIdentity *peer, size_t *index) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:89: warning: The following parameter of find_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const struct GNUNET_PeerIdentity *peer, size_t *index) is not documented: - parameter 'tunnels' -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:95: warning: argument 'in' of command @param is not found in the argument list of contains_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const struct GNUNET_PeerIdentity *peer) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:95: warning: argument 'out' of command @param is not found in the argument list of contains_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const struct GNUNET_PeerIdentity *peer) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:102: warning: The following parameter of contains_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const struct GNUNET_PeerIdentity *peer) is not documented: - parameter 'tunnels' -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:107: warning: argument 'in' of command @param is not found in the argument list of remove_from_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, struct GNUNET_MESSENGER_ListTunnel *element) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:107: warning: argument 'out' of command @param is not found in the argument list of remove_from_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, struct GNUNET_MESSENGER_ListTunnel *element) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:107: warning: argument 'in' of command @param is not found in the argument list of remove_from_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, struct GNUNET_MESSENGER_ListTunnel *element) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:107: warning: argument 'out' of command @param is not found in the argument list of remove_from_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, struct GNUNET_MESSENGER_ListTunnel *element) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:114: warning: The following parameters of remove_from_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, struct GNUNET_MESSENGER_ListTunnel *element) are not documented: - parameter 'tunnels' - parameter 'element' -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:119: warning: argument 'messages' of command @param is not found in the argument list of load_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const char *path) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:124: warning: The following parameter of load_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const char *path) is not documented: - parameter 'tunnels' -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:129: warning: argument 'messages' of command @param is not found in the argument list of save_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const char *path) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:134: warning: The following parameter of save_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const char *path) is not documented: - parameter 'tunnels' -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:66: warning: argument 'in' of command @param is not found in the argument list of cleanup_message(struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:66: warning: argument 'out' of command @param is not found in the argument list of cleanup_message(struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/messenger_api_message.c:129: warning: The following parameter of cleanup_message(struct GNUNET_MESSENGER_Message *message) is not documented: - parameter 'message' -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:74: warning: argument 'in' of command @param is not found in the argument list of destroy_message(struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:74: warning: argument 'out' of command @param is not found in the argument list of destroy_message(struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/messenger_api_message.c:137: warning: The following parameter of destroy_message(struct GNUNET_MESSENGER_Message *message) is not documented: - parameter 'message' -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:164: warning: argument 'in' of command @param is not found in the argument list of sign_message(struct GNUNET_MESSENGER_Message *message, uint16_t length, char *buffer, const struct GNUNET_HashCode *hash, const struct GNUNET_MESSENGER_Ego *ego) -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:164: warning: argument 'out' of command @param is not found in the argument list of sign_message(struct GNUNET_MESSENGER_Message *message, uint16_t length, char *buffer, const struct GNUNET_HashCode *hash, const struct GNUNET_MESSENGER_Ego *ego) -/home/william/Git/gnunet/src/messenger/messenger_api_message.c:750: warning: The following parameter of sign_message(struct GNUNET_MESSENGER_Message *message, uint16_t length, char *buffer, const struct GNUNET_HashCode *hash, const struct GNUNET_MESSENGER_Ego *ego) is not documented: - parameter 'message' -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:194: warning: argument 'in' of command @param is not found in the argument list of encrypt_message(struct GNUNET_MESSENGER_Message *message, const struct GNUNET_IDENTITY_PublicKey *key) -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:194: warning: argument 'out' of command @param is not found in the argument list of encrypt_message(struct GNUNET_MESSENGER_Message *message, const struct GNUNET_IDENTITY_PublicKey *key) -/home/william/Git/gnunet/src/messenger/messenger_api_message.c:792: warning: The following parameter of encrypt_message(struct GNUNET_MESSENGER_Message *message, const struct GNUNET_IDENTITY_PublicKey *key) is not documented: - parameter 'message' -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:207: warning: argument 'in' of command @param is not found in the argument list of decrypt_message(struct GNUNET_MESSENGER_Message *message, const struct GNUNET_IDENTITY_PrivateKey *key) -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:207: warning: argument 'out' of command @param is not found in the argument list of decrypt_message(struct GNUNET_MESSENGER_Message *message, const struct GNUNET_IDENTITY_PrivateKey *key) -/home/william/Git/gnunet/src/messenger/messenger_api_message.c:827: warning: The following parameter of decrypt_message(struct GNUNET_MESSENGER_Message *message, const struct GNUNET_IDENTITY_PrivateKey *key) is not documented: - parameter 'message' -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:66: warning: argument 'in' of command @param is not found in the argument list of cleanup_message(struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:66: warning: argument 'out' of command @param is not found in the argument list of cleanup_message(struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:70: warning: The following parameter of cleanup_message(struct GNUNET_MESSENGER_Message *message) is not documented: - parameter 'message' -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:74: warning: argument 'in' of command @param is not found in the argument list of destroy_message(struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:74: warning: argument 'out' of command @param is not found in the argument list of destroy_message(struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:78: warning: The following parameter of destroy_message(struct GNUNET_MESSENGER_Message *message) is not documented: - parameter 'message' -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:164: warning: argument 'in' of command @param is not found in the argument list of sign_message(struct GNUNET_MESSENGER_Message *message, uint16_t length, char *buffer, const struct GNUNET_HashCode *hash, const struct GNUNET_MESSENGER_Ego *ego) -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:164: warning: argument 'out' of command @param is not found in the argument list of sign_message(struct GNUNET_MESSENGER_Message *message, uint16_t length, char *buffer, const struct GNUNET_HashCode *hash, const struct GNUNET_MESSENGER_Ego *ego) -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:173: warning: The following parameter of sign_message(struct GNUNET_MESSENGER_Message *message, uint16_t length, char *buffer, const struct GNUNET_HashCode *hash, const struct GNUNET_MESSENGER_Ego *ego) is not documented: - parameter 'message' -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:194: warning: argument 'in' of command @param is not found in the argument list of encrypt_message(struct GNUNET_MESSENGER_Message *message, const struct GNUNET_IDENTITY_PublicKey *key) -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:194: warning: argument 'out' of command @param is not found in the argument list of encrypt_message(struct GNUNET_MESSENGER_Message *message, const struct GNUNET_IDENTITY_PublicKey *key) -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:204: warning: The following parameter of encrypt_message(struct GNUNET_MESSENGER_Message *message, const struct GNUNET_IDENTITY_PublicKey *key) is not documented: - parameter 'message' -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:207: warning: argument 'in' of command @param is not found in the argument list of decrypt_message(struct GNUNET_MESSENGER_Message *message, const struct GNUNET_IDENTITY_PrivateKey *key) -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:207: warning: argument 'out' of command @param is not found in the argument list of decrypt_message(struct GNUNET_MESSENGER_Message *message, const struct GNUNET_IDENTITY_PrivateKey *key) -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:217: warning: The following parameter of decrypt_message(struct GNUNET_MESSENGER_Message *message, const struct GNUNET_IDENTITY_PrivateKey *key) is not documented: - parameter 'message' -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:61: warning: argument 'in' of command @param is not found in the argument list of create_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:61: warning: argument 'out' of command @param is not found in the argument list of create_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/messenger_api_room.c:31: warning: The following parameter of create_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:72: warning: argument 'in' of command @param is not found in the argument list of destroy_room(struct GNUNET_MESSENGER_Room *room) -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:72: warning: argument 'out' of command @param is not found in the argument list of destroy_room(struct GNUNET_MESSENGER_Room *room) -/home/william/Git/gnunet/src/messenger/messenger_api_room.c:66: warning: The following parameter of destroy_room(struct GNUNET_MESSENGER_Room *room) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:102: warning: argument 'in' of command @param is not found in the argument list of handle_room_message(struct GNUNET_MESSENGER_Room *room, struct GNUNET_MESSENGER_Contact *sender, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:102: warning: argument 'out' of command @param is not found in the argument list of handle_room_message(struct GNUNET_MESSENGER_Room *room, struct GNUNET_MESSENGER_Contact *sender, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:102: warning: argument 'in' of command @param is not found in the argument list of handle_room_message(struct GNUNET_MESSENGER_Room *room, struct GNUNET_MESSENGER_Contact *sender, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:102: warning: argument 'out' of command @param is not found in the argument list of handle_room_message(struct GNUNET_MESSENGER_Room *room, struct GNUNET_MESSENGER_Contact *sender, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/messenger_api_room.c:239: warning: The following parameters of handle_room_message(struct GNUNET_MESSENGER_Room *room, struct GNUNET_MESSENGER_Contact *sender, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'sender' -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:123: warning: argument 'in' of command @param is not found in the argument list of iterate_room_members(struct GNUNET_MESSENGER_Room *room, GNUNET_MESSENGER_MemberCallback callback, void *cls) -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:123: warning: argument 'out' of command @param is not found in the argument list of iterate_room_members(struct GNUNET_MESSENGER_Room *room, GNUNET_MESSENGER_MemberCallback callback, void *cls) -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:123: warning: argument 'in' of command @param is not found in the argument list of iterate_room_members(struct GNUNET_MESSENGER_Room *room, GNUNET_MESSENGER_MemberCallback callback, void *cls) -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:123: warning: argument 'out' of command @param is not found in the argument list of iterate_room_members(struct GNUNET_MESSENGER_Room *room, GNUNET_MESSENGER_MemberCallback callback, void *cls) -/home/william/Git/gnunet/src/messenger/messenger_api_room.c:311: warning: The following parameters of iterate_room_members(struct GNUNET_MESSENGER_Room *room, GNUNET_MESSENGER_MemberCallback callback, void *cls) are not documented: - parameter 'room' - parameter 'cls' -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:61: warning: argument 'in' of command @param is not found in the argument list of create_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:61: warning: argument 'out' of command @param is not found in the argument list of create_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:67: warning: The following parameter of create_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:72: warning: argument 'in' of command @param is not found in the argument list of destroy_room(struct GNUNET_MESSENGER_Room *room) -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:72: warning: argument 'out' of command @param is not found in the argument list of destroy_room(struct GNUNET_MESSENGER_Room *room) -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:76: warning: The following parameter of destroy_room(struct GNUNET_MESSENGER_Room *room) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:102: warning: argument 'in' of command @param is not found in the argument list of handle_room_message(struct GNUNET_MESSENGER_Room *room, struct GNUNET_MESSENGER_Contact *sender, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:102: warning: argument 'out' of command @param is not found in the argument list of handle_room_message(struct GNUNET_MESSENGER_Room *room, struct GNUNET_MESSENGER_Contact *sender, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:102: warning: argument 'in' of command @param is not found in the argument list of handle_room_message(struct GNUNET_MESSENGER_Room *room, struct GNUNET_MESSENGER_Contact *sender, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:102: warning: argument 'out' of command @param is not found in the argument list of handle_room_message(struct GNUNET_MESSENGER_Room *room, struct GNUNET_MESSENGER_Contact *sender, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:116: warning: The following parameters of handle_room_message(struct GNUNET_MESSENGER_Room *room, struct GNUNET_MESSENGER_Contact *sender, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'sender' -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:123: warning: argument 'in' of command @param is not found in the argument list of iterate_room_members(struct GNUNET_MESSENGER_Room *room, GNUNET_MESSENGER_MemberCallback callback, void *cls) -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:123: warning: argument 'out' of command @param is not found in the argument list of iterate_room_members(struct GNUNET_MESSENGER_Room *room, GNUNET_MESSENGER_MemberCallback callback, void *cls) -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:123: warning: argument 'in' of command @param is not found in the argument list of iterate_room_members(struct GNUNET_MESSENGER_Room *room, GNUNET_MESSENGER_MemberCallback callback, void *cls) -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:123: warning: argument 'out' of command @param is not found in the argument list of iterate_room_members(struct GNUNET_MESSENGER_Room *room, GNUNET_MESSENGER_MemberCallback callback, void *cls) -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:131: warning: The following parameters of iterate_room_members(struct GNUNET_MESSENGER_Room *room, GNUNET_MESSENGER_MemberCallback callback, void *cls) are not documented: - parameter 'room' - parameter 'cls' -/home/william/Git/gnunet/src/messenger/messenger_api_util.h:39: warning: argument 'in' of command @param is not found in the argument list of delayed_disconnect_channel(struct GNUNET_CADET_Channel *channel) -/home/william/Git/gnunet/src/messenger/messenger_api_util.h:39: warning: argument 'out' of command @param is not found in the argument list of delayed_disconnect_channel(struct GNUNET_CADET_Channel *channel) -/home/william/Git/gnunet/src/messenger/messenger_api_util.c:38: warning: The following parameter of delayed_disconnect_channel(struct GNUNET_CADET_Channel *channel) is not documented: - parameter 'channel' -/home/william/Git/gnunet/src/messenger/messenger_api_util.h:39: warning: argument 'in' of command @param is not found in the argument list of delayed_disconnect_channel(struct GNUNET_CADET_Channel *channel) -/home/william/Git/gnunet/src/messenger/messenger_api_util.h:39: warning: argument 'out' of command @param is not found in the argument list of delayed_disconnect_channel(struct GNUNET_CADET_Channel *channel) -/home/william/Git/gnunet/src/messenger/messenger_api_util.h:43: warning: The following parameter of delayed_disconnect_channel(struct GNUNET_CADET_Channel *channel) is not documented: - parameter 'channel' -/home/william/Git/gnunet/src/messenger/testing_messenger_barrier.h:58: warning: argument 'cls' of command @param is not found in the argument list of GNUNET_init_barrier(unsigned int requirement, GNUNET_BarrierStatusCallback cb, void *cb_cls) -/home/william/Git/gnunet/src/messenger/testing_messenger_barrier.c:41: warning: The following parameter of GNUNET_init_barrier(unsigned int requirement, GNUNET_BarrierStatusCallback cb, void *cb_cls) is not documented: - parameter 'cb_cls' -/home/william/Git/gnunet/src/messenger/testing_messenger_barrier.h:105: warning: argument 'cls' of command @param is not found in the argument list of GNUNET_wait_barrier(struct GNUNET_BarrierHandle *barrier, GNUNET_BarrierWaitStatusCallback cb, void *cb_cls) -/home/william/Git/gnunet/src/messenger/testing_messenger_barrier.c:124: warning: The following parameter of GNUNET_wait_barrier(struct GNUNET_BarrierHandle *barrier, GNUNET_BarrierWaitStatusCallback cb, void *cb_cls) is not documented: - parameter 'cb_cls' -/home/william/Git/gnunet/src/messenger/testing_messenger_barrier.h:58: warning: argument 'cls' of command @param is not found in the argument list of GNUNET_init_barrier(unsigned int requirement, GNUNET_BarrierStatusCallback cb, void *cb_cls) -/home/william/Git/gnunet/src/messenger/testing_messenger_barrier.h:69: warning: The following parameter of GNUNET_init_barrier(unsigned int requirement, GNUNET_BarrierStatusCallback cb, void *cb_cls) is not documented: - parameter 'cb_cls' -/home/william/Git/gnunet/src/messenger/testing_messenger_barrier.h:105: warning: argument 'cls' of command @param is not found in the argument list of GNUNET_wait_barrier(struct GNUNET_BarrierHandle *barrier, GNUNET_BarrierWaitStatusCallback cb, void *cb_cls) -/home/william/Git/gnunet/src/messenger/testing_messenger_barrier.h:116: warning: The following parameter of GNUNET_wait_barrier(struct GNUNET_BarrierHandle *barrier, GNUNET_BarrierWaitStatusCallback cb, void *cb_cls) is not documented: - parameter 'cb_cls' -/home/william/Git/gnunet/src/my/my_query_helper.c:49: warning: argument 'pq' of command @param is not found in the argument list of my_conv_fixed_size(void *cls, const struct GNUNET_MY_QueryParam *qp, MYSQL_BIND *qbind) -/home/william/Git/gnunet/src/my/my_query_helper.c:56: warning: The following parameter of my_conv_fixed_size(void *cls, const struct GNUNET_MY_QueryParam *qp, MYSQL_BIND *qbind) is not documented: - parameter 'qp' -/home/william/Git/gnunet/src/my/my_query_helper.c:96: warning: argument 'pq' of command @param is not found in the argument list of my_conv_string(void *cls, const struct GNUNET_MY_QueryParam *qp, MYSQL_BIND *qbind) -/home/william/Git/gnunet/src/my/my_query_helper.c:103: warning: The following parameter of my_conv_string(void *cls, const struct GNUNET_MY_QueryParam *qp, MYSQL_BIND *qbind) is not documented: - parameter 'qp' -/home/william/Git/gnunet/src/my/my_query_helper.c:137: warning: argument 'pq' of command @param is not found in the argument list of my_conv_uint16(void *cls, const struct GNUNET_MY_QueryParam *qp, MYSQL_BIND *qbind) -/home/william/Git/gnunet/src/my/my_query_helper.c:146: warning: The following parameter of my_conv_uint16(void *cls, const struct GNUNET_MY_QueryParam *qp, MYSQL_BIND *qbind) is not documented: - parameter 'qp' -/home/william/Git/gnunet/src/my/my_query_helper.c:181: warning: argument 'pq' of command @param is not found in the argument list of my_conv_uint32(void *cls, const struct GNUNET_MY_QueryParam *qp, MYSQL_BIND *qbind) -/home/william/Git/gnunet/src/my/my_query_helper.c:190: warning: The following parameter of my_conv_uint32(void *cls, const struct GNUNET_MY_QueryParam *qp, MYSQL_BIND *qbind) is not documented: - parameter 'qp' -/home/william/Git/gnunet/src/my/my_query_helper.c:225: warning: argument 'pq' of command @param is not found in the argument list of my_conv_uint64(void *cls, const struct GNUNET_MY_QueryParam *qp, MYSQL_BIND *qbind) -/home/william/Git/gnunet/src/my/my_query_helper.c:234: warning: The following parameter of my_conv_uint64(void *cls, const struct GNUNET_MY_QueryParam *qp, MYSQL_BIND *qbind) is not documented: - parameter 'qp' -/home/william/Git/gnunet/src/my/my_query_helper.c:269: warning: argument 'pq' of command @param is not found in the argument list of my_conv_rsa_public_key(void *cls, const struct GNUNET_MY_QueryParam *qp, MYSQL_BIND *qbind) -/home/william/Git/gnunet/src/my/my_query_helper.c:278: warning: The following parameter of my_conv_rsa_public_key(void *cls, const struct GNUNET_MY_QueryParam *qp, MYSQL_BIND *qbind) is not documented: - parameter 'qp' -/home/william/Git/gnunet/src/my/my_query_helper.c:321: warning: argument 'pq' of command @param is not found in the argument list of my_conv_rsa_signature(void *cls, const struct GNUNET_MY_QueryParam *qp, MYSQL_BIND *qbind) -/home/william/Git/gnunet/src/my/my_query_helper.c:330: warning: The following parameter of my_conv_rsa_signature(void *cls, const struct GNUNET_MY_QueryParam *qp, MYSQL_BIND *qbind) is not documented: - parameter 'qp' -/home/william/Git/gnunet/src/my/my_result_helper.c:533: warning: expected whitespace after \a command -/home/william/Git/gnunet/src/my/my_result_helper.c:31: warning: argument 'result' of command @param is not found in the argument list of pre_extract_varsize_blob(void *cls, struct GNUNET_MY_ResultSpec *rs, MYSQL_STMT *stmt, unsigned int column, MYSQL_BIND *results) -/home/william/Git/gnunet/src/my/my_result_helper.c:44: warning: The following parameter of pre_extract_varsize_blob(void *cls, struct GNUNET_MY_ResultSpec *rs, MYSQL_STMT *stmt, unsigned int column, MYSQL_BIND *results) is not documented: - parameter 'results' -/home/william/Git/gnunet/src/my/my_result_helper.c:462: warning: argument 'rd' of command @param is not found in the argument list of clean_rsa_signature(void *cls, struct GNUNET_MY_ResultSpec *rs) -/home/william/Git/gnunet/src/my/my_result_helper.c:468: warning: The following parameter of clean_rsa_signature(void *cls, struct GNUNET_MY_ResultSpec *rs) is not documented: - parameter 'rs' -/home/william/Git/gnunet/src/my/my_result_helper.c:533: warning: expected whitespace after \a command -/home/william/Git/gnunet/src/my/my_result_helper.c:728: warning: argument 'cls' from the argument list of pre_extract_uint32 has multiple @param documentation sections -/home/william/Git/gnunet/src/my/my_result_helper.c:759: warning: argument 'cls' from the argument list of post_extract_uint32 has multiple @param documentation sections -/home/william/Git/gnunet/src/mysql/mysql.c:432: warning: argument 'mc' of command @param is not found in the argument list of prepare_statement(struct GNUNET_MYSQL_StatementHandle *sh) -/home/william/Git/gnunet/src/namecache/gnunet-service-namecache.c:210: warning: argument 'the' of command @param is not found in the argument list of handle_lookup_block(void *cls, const struct LookupBlockMessage *ln_msg) -/home/william/Git/gnunet/src/namecache/gnunet-service-namecache.c:217: warning: The following parameter of handle_lookup_block(void *cls, const struct LookupBlockMessage *ln_msg) is not documented: - parameter 'ln_msg' -/home/william/Git/gnunet/src/namecache/namecache_api.c:256: warning: argument 'size' of command @param is not found in the argument list of handle_block_cache_response(void *cls, const struct BlockCacheResponseMessage *msg) -/home/william/Git/gnunet/src/namecache/plugin_namecache_flat.c:192: warning: argument 'plugin' of command @param is not found in the argument list of store_and_free_entries(void *cls, const struct GNUNET_HashCode *key, void *value) -/home/william/Git/gnunet/src/namecache/plugin_namecache_flat.c:198: warning: The following parameters of store_and_free_entries(void *cls, const struct GNUNET_HashCode *key, void *value) are not documented: - parameter 'cls' - parameter 'key' - parameter 'value' -/home/william/Git/gnunet/src/namestore/gnunet-namestore-fcfsd.c:1139: warning: Found unknown command '\parsm' -/home/william/Git/gnunet/src/namestore/gnunet-namestore-fcfsd.c:1144: warning: The following parameter of main(int argc, char *const *argv) is not documented: - parameter 'argv' -/home/william/Git/gnunet/src/namestore/gnunet-namestore.c:850: warning: argument 'out' of command @param is not found in the argument list of parse_expiration(const char *expirationstring, int *etime_is_rel, uint64_t *etime) -/home/william/Git/gnunet/src/namestore/gnunet-namestore.c:850: warning: argument 'out' of command @param is not found in the argument list of parse_expiration(const char *expirationstring, int *etime_is_rel, uint64_t *etime) -/home/william/Git/gnunet/src/namestore/gnunet-namestore.c:1513: warning: argument 'topKeywords' of command @param is not found in the argument list of multirecord_option(char shortName, const char *name, const char *argumentHelp, const char *description, struct RecordSetEntry **rs) -/home/william/Git/gnunet/src/namestore/gnunet-namestore.c:1403: warning: The following parameter of multirecord_option(char shortName, const char *name, const char *argumentHelp, const char *description, struct RecordSetEntry **rs) is not documented: - parameter 'rs' -/home/william/Git/gnunet/src/namestore/gnunet-service-namestore.c:469: warning: explicit link request to 'GNUNET_GNSRECORD_TYPE_NICK' could not be resolved -/home/william/Git/gnunet/src/namestore/gnunet-service-namestore.c:626: warning: argument 'out' of command @param is not found in the argument list of merge_with_nick_records(const struct GNUNET_GNSRECORD_Data *nick_rd, unsigned int rd2_length, const struct GNUNET_GNSRECORD_Data *rd2, unsigned int *rdc_res, struct GNUNET_GNSRECORD_Data **rd_res) -/home/william/Git/gnunet/src/namestore/gnunet-service-namestore.c:626: warning: argument 'out' of command @param is not found in the argument list of merge_with_nick_records(const struct GNUNET_GNSRECORD_Data *nick_rd, unsigned int rd2_length, const struct GNUNET_GNSRECORD_Data *rd2, unsigned int *rdc_res, struct GNUNET_GNSRECORD_Data **rd_res) -/home/william/Git/gnunet/src/namestore/gnunet-service-namestore.c:805: warning: argument 'client' of command @param is not found in the argument list of send_store_response(struct NamestoreClient *nc, int res, const char *emsg, uint32_t rid) -/home/william/Git/gnunet/src/namestore/gnunet-service-namestore.c:811: warning: The following parameters of send_store_response(struct NamestoreClient *nc, int res, const char *emsg, uint32_t rid) are not documented: - parameter 'nc' - parameter 'emsg' -/home/william/Git/gnunet/src/namestore/gnunet-service-namestore.c:1236: warning: argument 'zone_key' of command @param is not found in the argument list of lookup_it(void *cls, uint64_t seq, const struct GNUNET_IDENTITY_PrivateKey *private_key, const char *label, unsigned int rd_count, const struct GNUNET_GNSRECORD_Data *rd) -/home/william/Git/gnunet/src/namestore/gnunet-service-namestore.c:1249: warning: The following parameter of lookup_it(void *cls, uint64_t seq, const struct GNUNET_IDENTITY_PrivateKey *private_key, const char *label, unsigned int rd_count, const struct GNUNET_GNSRECORD_Data *rd) is not documented: - parameter 'private_key' -/home/william/Git/gnunet/src/namestore/gnunet-service-namestore.c:2031: warning: argument 'message' of command @param is not found in the argument list of handle_iteration_next(void *cls, const struct ZoneIterationNextMessage *zis_msg) -/home/william/Git/gnunet/src/namestore/gnunet-service-namestore.c:2038: warning: The following parameter of handle_iteration_next(void *cls, const struct ZoneIterationNextMessage *zis_msg) is not documented: - parameter 'zis_msg' -/home/william/Git/gnunet/src/namestore/gnunet-zoneimport.c:438: warning: argument 'hostname' of command @param is not found in the argument list of build_dns_query(struct Request *req, size_t *raw_size) -/home/william/Git/gnunet/src/namestore/gnunet-zoneimport.c:438: warning: argument 'out' of command @param is not found in the argument list of build_dns_query(struct Request *req, size_t *raw_size) -/home/william/Git/gnunet/src/namestore/gnunet-zoneimport.c:445: warning: The following parameter of build_dns_query(struct Request *req, size_t *raw_size) is not documented: - parameter 'req' -/home/william/Git/gnunet/src/namestore/gnunet-zoneimport.c:1834: warning: argument '1' of command @param is not found in the argument list of main(int argc, char *const *argv) -/home/william/Git/gnunet/src/namestore/namestore_api.c:680: warning: argument 'qe' of command @param is not found in the argument list of check_zone_to_name_response(void *cls, const struct ZoneToNameResponseMessage *msg) -/home/william/Git/gnunet/src/namestore/namestore_api.c:687: warning: The following parameter of check_zone_to_name_response(void *cls, const struct ZoneToNameResponseMessage *msg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/namestore/plugin_namestore_flat.c:81: warning: argument 'out' of command @param is not found in the argument list of hash_pkey_and_label(const struct GNUNET_IDENTITY_PrivateKey *pkey, const char *label, struct GNUNET_HashCode *h) -/home/william/Git/gnunet/src/namestore/plugin_namestore_flat.c:327: warning: argument 'plugin' of command @param is not found in the argument list of store_and_free_entries(void *cls, const struct GNUNET_HashCode *key, void *value) -/home/william/Git/gnunet/src/namestore/plugin_namestore_flat.c:335: warning: The following parameter of store_and_free_entries(void *cls, const struct GNUNET_HashCode *key, void *value) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/namestore/plugin_namestore_postgres.c:310: warning: argument 'result' of command @param is not found in the argument list of parse_result_call_iterator(void *cls, PGresult *res, unsigned int num_results) -/home/william/Git/gnunet/src/namestore/plugin_namestore_postgres.c:310: warning: argument 'num_result' of command @param is not found in the argument list of parse_result_call_iterator(void *cls, PGresult *res, unsigned int num_results) -/home/william/Git/gnunet/src/namestore/plugin_namestore_postgres.c:319: warning: The following parameters of parse_result_call_iterator(void *cls, PGresult *res, unsigned int num_results) are not documented: - parameter 'res' - parameter 'num_results' -/home/william/Git/gnunet/src/namestore/plugin_rest_namestore.c:281: warning: argument 'handle' of command @param is not found in the argument list of cleanup_handle(void *cls) -/home/william/Git/gnunet/src/namestore/plugin_rest_namestore.c:286: warning: The following parameter of cleanup_handle(void *cls) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/namestore/plugin_rest_namestore.c:359: warning: argument 'pubkey' of command @param is not found in the argument list of get_egoentry_namestore(struct RequestHandle *handle, char *name) -/home/william/Git/gnunet/src/namestore/plugin_rest_namestore.c:508: warning: argument 'handle' of command @param is not found in the argument list of namestore_list_iteration(void *cls, const struct GNUNET_IDENTITY_PrivateKey *zone_key, const char *rname, unsigned int rd_len, const struct GNUNET_GNSRECORD_Data *rd) -/home/william/Git/gnunet/src/namestore/plugin_rest_namestore.c:514: warning: The following parameters of namestore_list_iteration(void *cls, const struct GNUNET_IDENTITY_PrivateKey *zone_key, const char *rname, unsigned int rd_len, const struct GNUNET_GNSRECORD_Data *rd) are not documented: - parameter 'cls' - parameter 'zone_key' - parameter 'rname' - parameter 'rd_len' - parameter 'rd' -/home/william/Git/gnunet/src/namestore/plugin_rest_namestore.c:1026: warning: argument 'method' of command @param is not found in the argument list of rest_process_request(struct GNUNET_REST_RequestHandle *rest_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/namestore/plugin_rest_namestore.c:1026: warning: argument 'url' of command @param is not found in the argument list of rest_process_request(struct GNUNET_REST_RequestHandle *rest_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/namestore/plugin_rest_namestore.c:1026: warning: argument 'data' of command @param is not found in the argument list of rest_process_request(struct GNUNET_REST_RequestHandle *rest_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/namestore/plugin_rest_namestore.c:1026: warning: argument 'data_size' of command @param is not found in the argument list of rest_process_request(struct GNUNET_REST_RequestHandle *rest_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/namestore/plugin_rest_namestore.c:945: warning: The following parameter of rest_process_request(struct GNUNET_REST_RequestHandle *rest_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) is not documented: - parameter 'rest_handle' -/home/william/Git/gnunet/src/nat-auto/gnunet-nat-server.c:259: warning: argument 'msg' of command @param is not found in the argument list of handle_test(void *cls, const struct GNUNET_NAT_AUTO_TestMessage *tm) -/home/william/Git/gnunet/src/nat-auto/gnunet-nat-server.c:267: warning: The following parameter of handle_test(void *cls, const struct GNUNET_NAT_AUTO_TestMessage *tm) is not documented: - parameter 'tm' -/home/william/Git/gnunet/src/nat-auto/gnunet-service-nat-auto.c:164: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_NAT_REQUEST_AUTO_CFG' could not be resolved -/home/william/Git/gnunet/src/nat-auto/gnunet-service-nat-auto.c:293: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_NAT_REQUEST_AUTO_CFG' could not be resolved -/home/william/Git/gnunet/src/nat-auto/gnunet-service-nat-auto.c:164: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_NAT_REQUEST_AUTO_CFG' could not be resolved -/home/william/Git/gnunet/src/nat-auto/gnunet-service-nat-auto.c:293: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_NAT_REQUEST_AUTO_CFG' could not be resolved -/home/william/Git/gnunet/src/nat-auto/gnunet-service-nat-auto_legacy.c:365: warning: argument 'success' of command @param is not found in the argument list of result_callback(void *cls, enum GNUNET_NAT_StatusCode ret) -/home/william/Git/gnunet/src/nat-auto/gnunet-service-nat-auto_legacy.c:365: warning: argument 'emsg' of command @param is not found in the argument list of result_callback(void *cls, enum GNUNET_NAT_StatusCode ret) -/home/william/Git/gnunet/src/nat-auto/gnunet-service-nat-auto_legacy.c:373: warning: The following parameter of result_callback(void *cls, enum GNUNET_NAT_StatusCode ret) is not documented: - parameter 'ret' -/home/william/Git/gnunet/src/nat-auto/gnunet-service-nat-auto_legacy.c:415: warning: argument 'emsg' of command @param is not found in the argument list of set_external_ipv4(void *cls, const struct in_addr *addr, enum GNUNET_NAT_StatusCode ret) -/home/william/Git/gnunet/src/nat-auto/gnunet-service-nat-auto_legacy.c:421: warning: The following parameter of set_external_ipv4(void *cls, const struct in_addr *addr, enum GNUNET_NAT_StatusCode ret) is not documented: - parameter 'ret' -/home/william/Git/gnunet/src/nat-auto/nat_auto_api_test.c:334: warning: argument 'in' of command @param is not found in the argument list of addr_cb(void *cls, void **app_ctx, int add_remove, enum GNUNET_NAT_AddressClass ac, const struct sockaddr *addr, socklen_t addrlen) -/home/william/Git/gnunet/src/nat-auto/nat_auto_api_test.c:334: warning: argument 'out' of command @param is not found in the argument list of addr_cb(void *cls, void **app_ctx, int add_remove, enum GNUNET_NAT_AddressClass ac, const struct sockaddr *addr, socklen_t addrlen) -/home/william/Git/gnunet/src/nat/gnunet-nat.c:72: warning: explicit link request to 'bind_addr' could not be resolved -/home/william/Git/gnunet/src/nat/gnunet-nat.c:110: warning: argument 'in' of command @param is not found in the argument list of address_cb(void *cls, void **app_ctx, int add_remove, enum GNUNET_NAT_AddressClass ac, const struct sockaddr *addr, socklen_t addrlen) -/home/william/Git/gnunet/src/nat/gnunet-nat.c:110: warning: argument 'out' of command @param is not found in the argument list of address_cb(void *cls, void **app_ctx, int add_remove, enum GNUNET_NAT_AddressClass ac, const struct sockaddr *addr, socklen_t addrlen) -/home/william/Git/gnunet/src/nat/gnunet-nat.c:72: warning: explicit link request to 'bind_addr' could not be resolved -/home/william/Git/gnunet/src/nat/gnunet-service-nat.c:1182: warning: argument 'ch' of command @param is not found in the argument list of dyndns_lookup(void *cls) -/home/william/Git/gnunet/src/nat/gnunet-service-nat.c:1307: warning: The following parameter of dyndns_lookup(void *cls) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/nat/gnunet-service-nat_helper.h:60: warning: argument 'internal_address' from the argument list of GN_start_gnunet_nat_server_ has multiple @param documentation sections -/home/william/Git/gnunet/src/nat/gnunet-service-nat_helper.h:60: warning: argument 'cb' from the argument list of GN_start_gnunet_nat_server_ has multiple @param documentation sections -/home/william/Git/gnunet/src/nat/gnunet-service-nat_helper.h:60: warning: argument 'cb_cls' from the argument list of GN_start_gnunet_nat_server_ has multiple @param documentation sections -/home/william/Git/gnunet/src/nat/gnunet-service-nat_helper.h:60: warning: argument 'cfg' from the argument list of GN_start_gnunet_nat_server_ has multiple @param documentation sections -/home/william/Git/gnunet/src/nat/gnunet-service-nat_helper.h:89: warning: argument 'internal_address' from the argument list of GN_request_connection_reversal has multiple @param documentation sections -/home/william/Git/gnunet/src/nat/gnunet-service-nat_helper.h:89: warning: argument 'internal_port' from the argument list of GN_request_connection_reversal has multiple @param documentation sections -/home/william/Git/gnunet/src/nat/gnunet-service-nat_helper.h:89: warning: argument 'remote_v4' from the argument list of GN_request_connection_reversal has multiple @param documentation sections -/home/william/Git/gnunet/src/nat/gnunet-service-nat_helper.h:89: warning: argument 'cfg' from the argument list of GN_request_connection_reversal has multiple @param documentation sections -/home/william/Git/gnunet/src/nat/gnunet-service-nat_mini.c:480: warning: argument 'cls' from the argument list of do_refresh has multiple @param documentation sections -/home/william/Git/gnunet/src/nat/gnunet-service-nat_mini.h:57: warning: argument 'cb' from the argument list of GNUNET_NAT_mini_get_external_ipv4_ has multiple @param documentation sections -/home/william/Git/gnunet/src/nat/gnunet-service-nat_mini.h:57: warning: argument 'cb_cls' from the argument list of GNUNET_NAT_mini_get_external_ipv4_ has multiple @param documentation sections -/home/william/Git/gnunet/src/nat/gnunet-service-nat_mini.h:110: warning: argument 'port' from the argument list of GNUNET_NAT_mini_map_start has multiple @param documentation sections -/home/william/Git/gnunet/src/nat/gnunet-service-nat_mini.h:110: warning: argument 'is_tcp' from the argument list of GNUNET_NAT_mini_map_start has multiple @param documentation sections -/home/william/Git/gnunet/src/nat/gnunet-service-nat_mini.h:110: warning: argument 'ac' from the argument list of GNUNET_NAT_mini_map_start has multiple @param documentation sections -/home/william/Git/gnunet/src/nat/gnunet-service-nat_mini.h:110: warning: argument 'ac_cls' from the argument list of GNUNET_NAT_mini_map_start has multiple @param documentation sections -/home/william/Git/gnunet/src/nat/gnunet-service-nat_mini.h:125: warning: argument 'mini' from the argument list of GNUNET_NAT_mini_map_stop has multiple @param documentation sections -/home/william/Git/gnunet/src/nat/nat_api_stun.c:112: warning: argument 'stun' of command @param is not found in the argument list of generate_request_id(struct stun_header *req) -/home/william/Git/gnunet/src/nse/gnunet-nse-profiler.c:674: warning: argument 'cls' from the argument list of next_round has multiple @param documentation sections -/home/william/Git/gnunet/src/nse/gnunet-service-nse.c:1165: warning: The following parameter of handle_core_connect(void *cls, const struct GNUNET_PeerIdentity *peer, struct GNUNET_MQ_Handle *mq) is not documented: - parameter 'mq' -/home/william/Git/gnunet/src/nse/gnunet-service-nse.c:1201: warning: Found unknown command '\parma' -/home/william/Git/gnunet/src/nse/gnunet-service-nse.c:1205: warning: The following parameter of handle_core_disconnect(void *cls, const struct GNUNET_PeerIdentity *peer, void *internal_cls) is not documented: - parameter 'internal_cls' -/home/william/Git/gnunet/src/nse/nse_api.c:132: warning: argument 'cls' from the argument list of reconnect has multiple @param documentation sections -/home/william/Git/gnunet/src/peerinfo-tool/gnunet-peerinfo_plugins.h:37: warning: argument 'cfg' from the argument list of GPI_plugins_load has multiple @param documentation sections -/home/william/Git/gnunet/src/peerinfo-tool/plugin_rest_peerinfo.c:274: warning: argument 'handle' of command @param is not found in the argument list of cleanup_handle(void *cls) -/home/william/Git/gnunet/src/peerinfo-tool/plugin_rest_peerinfo.c:279: warning: The following parameter of cleanup_handle(void *cls) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/peerinfo-tool/plugin_rest_peerinfo.c:725: warning: argument 'method' of command @param is not found in the argument list of rest_process_request(struct GNUNET_REST_RequestHandle *rest_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/peerinfo-tool/plugin_rest_peerinfo.c:725: warning: argument 'url' of command @param is not found in the argument list of rest_process_request(struct GNUNET_REST_RequestHandle *rest_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/peerinfo-tool/plugin_rest_peerinfo.c:725: warning: argument 'data' of command @param is not found in the argument list of rest_process_request(struct GNUNET_REST_RequestHandle *rest_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/peerinfo-tool/plugin_rest_peerinfo.c:725: warning: argument 'data_size' of command @param is not found in the argument list of rest_process_request(struct GNUNET_REST_RequestHandle *rest_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/peerinfo-tool/plugin_rest_peerinfo.c:707: warning: The following parameter of rest_process_request(struct GNUNET_REST_RequestHandle *rest_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) is not documented: - parameter 'rest_handle' -/home/william/Git/gnunet/src/peerstore/gnunet-service-peerstore.c:217: warning: The following parameter of client_disconnect_cb(void *cls, struct GNUNET_SERVICE_Client *client, void *app_cls) is not documented: - parameter 'app_cls' -/home/william/Git/gnunet/src/peerstore/peerstore_api.c:808: warning: argument 'cls' from the argument list of reconnect has multiple @param documentation sections -/home/william/Git/gnunet/src/peerstore/peerstore_common.h:71: warning: argument 'srm' from the argument list of PEERSTORE_parse_record_message has multiple @param documentation sections -/home/william/Git/gnunet/src/peerstore/plugin_peerstore_sqlite.c:126: warning: explicit link request to 'GNUNE_SYSERR' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:896: warning: Found unknown command '\es' -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:925: warning: Found unknown command '\es' -/home/william/Git/gnunet/src/pq/pq_event.c:384: warning: argument 'eh' of command @param is not found in the argument list of register_notify(void *cls, const struct GNUNET_ShortHashCode *sh, void *value) -/home/william/Git/gnunet/src/pq/pq_event.c:391: warning: The following parameter of register_notify(void *cls, const struct GNUNET_ShortHashCode *sh, void *value) is not documented: - parameter 'value' -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:1029: warning: explicit link request to 'GNUNET_PQ_event_do_poll()' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:1054: warning: explicit link request to 'GNUNET_PQ_event_do_poll()' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:1069: warning: explicit link request to 'GNUNET_PQ_event_do_poll()' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:119: warning: Found unknown command '\oaran' -/home/william/Git/gnunet/src/pq/pq_query_helper.c:96: warning: The following parameter of GNUNET_PQ_query_param_fixed_size(const void *ptr, size_t ptr_size) is not documented: - parameter 'ptr_size' -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:230: warning: argument 'x' of command @param is not found in the argument list of GNUNET_PQ_query_param_timestamp_nbo(const struct GNUNET_TIME_TimestampNBO *t) -/home/william/Git/gnunet/src/pq/pq_query_helper.c:505: warning: The following parameter of GNUNET_PQ_query_param_timestamp_nbo(const struct GNUNET_TIME_TimestampNBO *t) is not documented: - parameter 't' -/home/william/Git/gnunet/src/pq/pq_result_helper.c:67: warning: argument 'int' of command @param is not found in the argument list of extract_varsize_blob(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) -/home/william/Git/gnunet/src/pq/pq_result_helper.c:51: warning: The following parameter of extract_varsize_blob(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) is not documented: - parameter 'row' -/home/william/Git/gnunet/src/pq/pq_result_helper.c:144: warning: argument 'int' of command @param is not found in the argument list of extract_fixed_blob(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) -/home/william/Git/gnunet/src/pq/pq_result_helper.c:51: warning: The following parameter of extract_fixed_blob(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) is not documented: - parameter 'row' -/home/william/Git/gnunet/src/pq/pq_result_helper.c:226: warning: argument 'int' of command @param is not found in the argument list of extract_rsa_public_key(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) -/home/william/Git/gnunet/src/pq/pq_result_helper.c:51: warning: The following parameter of extract_rsa_public_key(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) is not documented: - parameter 'row' -/home/william/Git/gnunet/src/pq/pq_result_helper.c:322: warning: argument 'int' of command @param is not found in the argument list of extract_rsa_signature(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) -/home/william/Git/gnunet/src/pq/pq_result_helper.c:291: warning: The following parameter of extract_rsa_signature(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) is not documented: - parameter 'row' -/home/william/Git/gnunet/src/pq/pq_result_helper.c:417: warning: argument 'int' of command @param is not found in the argument list of extract_string(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) -/home/william/Git/gnunet/src/pq/pq_result_helper.c:386: warning: The following parameter of extract_string(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) is not documented: - parameter 'row' -/home/william/Git/gnunet/src/pq/pq_result_helper.c:512: warning: argument 'int' of command @param is not found in the argument list of extract_bool(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) -/home/william/Git/gnunet/src/pq/pq_result_helper.c:481: warning: The following parameter of extract_bool(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) is not documented: - parameter 'row' -/home/william/Git/gnunet/src/pq/pq_result_helper.c:582: warning: argument 'int' of command @param is not found in the argument list of extract_rel_time(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) -/home/william/Git/gnunet/src/pq/pq_result_helper.c:481: warning: The following parameter of extract_rel_time(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) is not documented: - parameter 'row' -/home/william/Git/gnunet/src/pq/pq_result_helper.c:659: warning: argument 'int' of command @param is not found in the argument list of extract_abs_time(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) -/home/william/Git/gnunet/src/pq/pq_result_helper.c:481: warning: The following parameter of extract_abs_time(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) is not documented: - parameter 'row' -/home/william/Git/gnunet/src/pq/pq_result_helper.c:748: warning: argument 'int' of command @param is not found in the argument list of extract_timestamp(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) -/home/william/Git/gnunet/src/pq/pq_result_helper.c:481: warning: The following parameter of extract_timestamp(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) is not documented: - parameter 'row' -/home/william/Git/gnunet/src/pq/pq_result_helper.c:837: warning: argument 'int' of command @param is not found in the argument list of extract_timestamp_nbo(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) -/home/william/Git/gnunet/src/pq/pq_result_helper.c:481: warning: The following parameter of extract_timestamp_nbo(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) is not documented: - parameter 'row' -/home/william/Git/gnunet/src/pq/pq_result_helper.c:890: warning: argument 'int' of command @param is not found in the argument list of extract_uint16(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) -/home/william/Git/gnunet/src/pq/pq_result_helper.c:481: warning: The following parameter of extract_uint16(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) is not documented: - parameter 'row' -/home/william/Git/gnunet/src/pq/pq_result_helper.c:964: warning: argument 'int' of command @param is not found in the argument list of extract_uint32(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) -/home/william/Git/gnunet/src/pq/pq_result_helper.c:481: warning: The following parameter of extract_uint32(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) is not documented: - parameter 'row' -/home/william/Git/gnunet/src/pq/pq_result_helper.c:1038: warning: argument 'int' of command @param is not found in the argument list of extract_uint64(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) -/home/william/Git/gnunet/src/pq/pq_result_helper.c:481: warning: The following parameter of extract_uint64(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) is not documented: - parameter 'row' -/home/william/Git/gnunet/src/pt/gnunet-daemon-pt.c:991: warning: argument 'channel_ctx' of command @param is not found in the argument list of cadet_channel_end_cb(void *cls, const struct GNUNET_CADET_Channel *channel) -/home/william/Git/gnunet/src/reclaim/did.h:27: warning: Unsupported xml/html tag found -/home/william/Git/gnunet/src/reclaim/did.h:38: warning: Unsupported xml/html tag found -/home/william/Git/gnunet/src/reclaim/did.h:27: warning: Unsupported xml/html tag found -/home/william/Git/gnunet/src/reclaim/did.h:38: warning: Unsupported xml/html tag found -/home/william/Git/gnunet/src/reclaim/did.h:27: warning: Unsupported xml/html tag found -/home/william/Git/gnunet/src/reclaim/did.h:38: warning: Unsupported xml/html tag found -/home/william/Git/gnunet/src/reclaim/did.h:27: warning: Unsupported xml/html tag found -/home/william/Git/gnunet/src/reclaim/did.h:38: warning: Unsupported xml/html tag found -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim.c:522: warning: argument 'handle' of command @param is not found in the argument list of cleanup_as_handle(struct AttributeStoreHandle *ash) -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim.c:528: warning: The following parameter of cleanup_as_handle(struct AttributeStoreHandle *ash) is not documented: - parameter 'ash' -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim.c:651: warning: The following parameter of send_ticket_result(const struct IdpClient *client, uint32_t r_id, const struct GNUNET_RECLAIM_Ticket *ticket, const struct GNUNET_RECLAIM_PresentationList *presentations, uint32_t success) is not documented: - parameter 'presentations' -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim.c:723: warning: Found unknown command '\cls' -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim.c:724: warning: Found unknown command '\im' -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim.c:872: warning: The following parameter of consume_result_cb(void *cls, const struct GNUNET_IDENTITY_PublicKey *identity, const struct GNUNET_RECLAIM_AttributeList *attrs, const struct GNUNET_RECLAIM_PresentationList *presentations, int32_t success, const char *emsg) is not documented: - parameter 'presentations' -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim.c:937: warning: Found unknown command '\cm' -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim.c:943: warning: The following parameter of handle_consume_ticket_message(void *cls, const struct ConsumeTicketMessage *cm) is not documented: - parameter 'cm' -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim.c:1415: warning: argument 'cls' from the argument list of update_tickets has multiple @param documentation sections -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim.c:1686: warning: Found unknown command '\cls' -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim.c:1687: warning: Found unknown command '\dam' -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim.c:1777: warning: Found unknown command '\cls' -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim.c:1778: warning: Found unknown command '\dam' -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim_tickets.c:1671: warning: Found unknown command '\GNUNET_GNSRECORD_TYPE_RECLAIM_TICKET' -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim_tickets.c:482: warning: argument 'rd_cound' of command @param is not found in the argument list of rvk_ticket_update(void *cls, const struct GNUNET_IDENTITY_PrivateKey *zone, const char *label, unsigned int rd_count, const struct GNUNET_GNSRECORD_Data *rd) -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim_tickets.c:492: warning: The following parameter of rvk_ticket_update(void *cls, const struct GNUNET_IDENTITY_PrivateKey *zone, const char *label, unsigned int rd_count, const struct GNUNET_GNSRECORD_Data *rd) is not documented: - parameter 'rd_count' -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim_tickets.c:767: warning: argument 'rvk' from the argument list of move_attrs has multiple @param documentation sections -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim_tickets.c:839: warning: argument 'rd_cound' of command @param is not found in the argument list of revoke_attrs_cb(void *cls, const struct GNUNET_IDENTITY_PrivateKey *zone, const char *label, unsigned int rd_count, const struct GNUNET_GNSRECORD_Data *rd) -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim_tickets.c:849: warning: The following parameter of revoke_attrs_cb(void *cls, const struct GNUNET_IDENTITY_PrivateKey *zone, const char *label, unsigned int rd_count, const struct GNUNET_GNSRECORD_Data *rd) is not documented: - parameter 'rd_count' -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim_tickets.c:994: warning: argument 'rd_cound' of command @param is not found in the argument list of process_parallel_lookup_result(void *cls, uint32_t rd_count, const struct GNUNET_GNSRECORD_Data *rd) -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim_tickets.c:1000: warning: The following parameter of process_parallel_lookup_result(void *cls, uint32_t rd_count, const struct GNUNET_GNSRECORD_Data *rd) is not documented: - parameter 'rd_count' -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim_tickets.c:1079: warning: argument 'rd_cound' of command @param is not found in the argument list of lookup_authz_cb(void *cls, uint32_t rd_count, const struct GNUNET_GNSRECORD_Data *rd) -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim_tickets.c:1088: warning: The following parameter of lookup_authz_cb(void *cls, uint32_t rd_count, const struct GNUNET_GNSRECORD_Data *rd) is not documented: - parameter 'rd_count' -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim_tickets.c:1671: warning: Found unknown command '\GNUNET_GNSRECORD_TYPE_RECLAIM_TICKET' -/home/william/Git/gnunet/src/reclaim/json_reclaim.c:141: warning: argument 'ticket' of command @param is not found in the argument list of GNUNET_RECLAIM_JSON_spec_attribute(struct GNUNET_RECLAIM_Attribute **attr) -/home/william/Git/gnunet/src/reclaim/json_reclaim.c:126: warning: The following parameter of GNUNET_RECLAIM_JSON_spec_attribute(struct GNUNET_RECLAIM_Attribute **attr) is not documented: - parameter 'attr' -/home/william/Git/gnunet/src/reclaim/json_reclaim.h:50: warning: argument 'attr' of command @param is not found in the argument list of GNUNET_RECLAIM_JSON_spec_credential(struct GNUNET_RECLAIM_Credential **cred) -/home/william/Git/gnunet/src/reclaim/json_reclaim.c:365: warning: The following parameter of GNUNET_RECLAIM_JSON_spec_credential(struct GNUNET_RECLAIM_Credential **cred) is not documented: - parameter 'cred' -/home/william/Git/gnunet/src/reclaim/json_reclaim.c:141: warning: argument 'ticket' of command @param is not found in the argument list of GNUNET_RECLAIM_JSON_spec_attribute(struct GNUNET_RECLAIM_Attribute **attr) -/home/william/Git/gnunet/src/reclaim/json_reclaim.h:50: warning: argument 'attr' of command @param is not found in the argument list of GNUNET_RECLAIM_JSON_spec_credential(struct GNUNET_RECLAIM_Credential **cred) -/home/william/Git/gnunet/src/reclaim/oidc_helper.c:371: warning: The following parameter of OIDC_generate_id_token(const struct GNUNET_IDENTITY_PublicKey *aud_key, const struct GNUNET_IDENTITY_PublicKey *sub_key, const struct GNUNET_RECLAIM_AttributeList *attrs, const struct GNUNET_RECLAIM_PresentationList *presentations, const struct GNUNET_TIME_Relative *expiration_time, const char *nonce, const char *secret_key) is not documented: - parameter 'nonce' -/home/william/Git/gnunet/src/reclaim/oidc_helper.c:476: warning: argument 'nonce' of command @param is not found in the argument list of OIDC_build_authz_code(const struct GNUNET_IDENTITY_PrivateKey *issuer, const struct GNUNET_RECLAIM_Ticket *ticket, const struct GNUNET_RECLAIM_AttributeList *attrs, const struct GNUNET_RECLAIM_PresentationList *presentations, const char *nonce_str, const char *code_challenge) -/home/william/Git/gnunet/src/reclaim/oidc_helper.c:489: warning: The following parameter of OIDC_build_authz_code(const struct GNUNET_IDENTITY_PrivateKey *issuer, const struct GNUNET_RECLAIM_Ticket *ticket, const struct GNUNET_RECLAIM_AttributeList *attrs, const struct GNUNET_RECLAIM_PresentationList *presentations, const char *nonce_str, const char *code_challenge) is not documented: - parameter 'nonce_str' -/home/william/Git/gnunet/src/reclaim/oidc_helper.c:660: warning: argument 'code_verfier' of command @param is not found in the argument list of OIDC_parse_authz_code(const struct GNUNET_IDENTITY_PublicKey *audience, const char *code, const char *code_verifier, struct GNUNET_RECLAIM_Ticket *ticket, struct GNUNET_RECLAIM_AttributeList **attrs, struct GNUNET_RECLAIM_PresentationList **presentations, char **nonce_str, enum OIDC_VerificationOptions opts) -/home/william/Git/gnunet/src/reclaim/oidc_helper.c:675: warning: The following parameters of OIDC_parse_authz_code(const struct GNUNET_IDENTITY_PublicKey *audience, const char *code, const char *code_verifier, struct GNUNET_RECLAIM_Ticket *ticket, struct GNUNET_RECLAIM_AttributeList **attrs, struct GNUNET_RECLAIM_PresentationList **presentations, char **nonce_str, enum OIDC_VerificationOptions opts) are not documented: - parameter 'code_verifier' - parameter 'opts' -/home/william/Git/gnunet/src/reclaim/oidc_helper.h:66: warning: The following parameter of OIDC_generate_id_token(const struct GNUNET_IDENTITY_PublicKey *aud_key, const struct GNUNET_IDENTITY_PublicKey *sub_key, const struct GNUNET_RECLAIM_AttributeList *attrs, const struct GNUNET_RECLAIM_PresentationList *presentations, const struct GNUNET_TIME_Relative *expiration_time, const char *nonce, const char *secret_key) is not documented: - parameter 'nonce' -/home/william/Git/gnunet/src/reclaim/oidc_helper.c:476: warning: argument 'nonce' of command @param is not found in the argument list of OIDC_build_authz_code(const struct GNUNET_IDENTITY_PrivateKey *issuer, const struct GNUNET_RECLAIM_Ticket *ticket, const struct GNUNET_RECLAIM_AttributeList *attrs, const struct GNUNET_RECLAIM_PresentationList *presentations, const char *nonce_str, const char *code_challenge) -/home/william/Git/gnunet/src/reclaim/oidc_helper.c:476: warning: argument 'opts' of command @param is not found in the argument list of OIDC_build_authz_code(const struct GNUNET_IDENTITY_PrivateKey *issuer, const struct GNUNET_RECLAIM_Ticket *ticket, const struct GNUNET_RECLAIM_AttributeList *attrs, const struct GNUNET_RECLAIM_PresentationList *presentations, const char *nonce_str, const char *code_challenge) -/home/william/Git/gnunet/src/reclaim/oidc_helper.c:476: warning: argument 'nonce' of command @param is not found in the argument list of OIDC_build_authz_code(const struct GNUNET_IDENTITY_PrivateKey *issuer, const struct GNUNET_RECLAIM_Ticket *ticket, const struct GNUNET_RECLAIM_AttributeList *attrs, const struct GNUNET_RECLAIM_PresentationList *presentations, const char *nonce_str, const char *code_challenge) -/home/william/Git/gnunet/src/reclaim/oidc_helper.h:89: warning: argument 'issuer' from the argument list of OIDC_build_authz_code has multiple @param documentation sections -/home/william/Git/gnunet/src/reclaim/oidc_helper.h:89: warning: argument 'ticket' from the argument list of OIDC_build_authz_code has multiple @param documentation sections -/home/william/Git/gnunet/src/reclaim/oidc_helper.h:89: warning: argument 'attrs' from the argument list of OIDC_build_authz_code has multiple @param documentation sections -/home/william/Git/gnunet/src/reclaim/oidc_helper.h:89: warning: argument 'presentations' from the argument list of OIDC_build_authz_code has multiple @param documentation sections -/home/william/Git/gnunet/src/reclaim/oidc_helper.h:89: warning: argument 'code_challenge' from the argument list of OIDC_build_authz_code has multiple @param documentation sections -/home/william/Git/gnunet/src/reclaim/oidc_helper.h:89: warning: The following parameter of OIDC_build_authz_code(const struct GNUNET_IDENTITY_PrivateKey *issuer, const struct GNUNET_RECLAIM_Ticket *ticket, const struct GNUNET_RECLAIM_AttributeList *attrs, const struct GNUNET_RECLAIM_PresentationList *presentations, const char *nonce_str, const char *code_challenge) is not documented: - parameter 'nonce_str' -/home/william/Git/gnunet/src/reclaim/oidc_helper.c:660: warning: argument 'ecdsa_priv' of command @param is not found in the argument list of OIDC_parse_authz_code(const struct GNUNET_IDENTITY_PublicKey *audience, const char *code, const char *code_verifier, struct GNUNET_RECLAIM_Ticket *ticket, struct GNUNET_RECLAIM_AttributeList **attrs, struct GNUNET_RECLAIM_PresentationList **presentations, char **nonce_str, enum OIDC_VerificationOptions opts) -/home/william/Git/gnunet/src/reclaim/oidc_helper.c:660: warning: argument 'code_verfier' of command @param is not found in the argument list of OIDC_parse_authz_code(const struct GNUNET_IDENTITY_PublicKey *audience, const char *code, const char *code_verifier, struct GNUNET_RECLAIM_Ticket *ticket, struct GNUNET_RECLAIM_AttributeList **attrs, struct GNUNET_RECLAIM_PresentationList **presentations, char **nonce_str, enum OIDC_VerificationOptions opts) -/home/william/Git/gnunet/src/reclaim/oidc_helper.c:660: warning: argument 'nonce' of command @param is not found in the argument list of OIDC_parse_authz_code(const struct GNUNET_IDENTITY_PublicKey *audience, const char *code, const char *code_verifier, struct GNUNET_RECLAIM_Ticket *ticket, struct GNUNET_RECLAIM_AttributeList **attrs, struct GNUNET_RECLAIM_PresentationList **presentations, char **nonce_str, enum OIDC_VerificationOptions opts) -/home/william/Git/gnunet/src/reclaim/oidc_helper.c:660: warning: argument 'code_verfier' of command @param is not found in the argument list of OIDC_parse_authz_code(const struct GNUNET_IDENTITY_PublicKey *audience, const char *code, const char *code_verifier, struct GNUNET_RECLAIM_Ticket *ticket, struct GNUNET_RECLAIM_AttributeList **attrs, struct GNUNET_RECLAIM_PresentationList **presentations, char **nonce_str, enum OIDC_VerificationOptions opts) -/home/william/Git/gnunet/src/reclaim/oidc_helper.h:112: warning: argument 'code' from the argument list of OIDC_parse_authz_code has multiple @param documentation sections -/home/william/Git/gnunet/src/reclaim/oidc_helper.h:112: warning: argument 'ticket' from the argument list of OIDC_parse_authz_code has multiple @param documentation sections -/home/william/Git/gnunet/src/reclaim/oidc_helper.h:112: warning: argument 'attrs' from the argument list of OIDC_parse_authz_code has multiple @param documentation sections -/home/william/Git/gnunet/src/reclaim/oidc_helper.h:112: warning: argument 'presentations' from the argument list of OIDC_parse_authz_code has multiple @param documentation sections -/home/william/Git/gnunet/src/reclaim/oidc_helper.h:112: warning: The following parameters of OIDC_parse_authz_code(const struct GNUNET_IDENTITY_PublicKey *audience, const char *code, const char *code_verifier, struct GNUNET_RECLAIM_Ticket *ticket, struct GNUNET_RECLAIM_AttributeList **attrs, struct GNUNET_RECLAIM_PresentationList **presentations, char **nonce_str, enum OIDC_VerificationOptions opts) are not documented: - parameter 'code_verifier' - parameter 'opts' -/home/william/Git/gnunet/src/reclaim/oidc_helper.h:146: warning: argument 'scopes' from the argument list of OIDC_check_scopes_for_claim_request has multiple @param documentation sections -/home/william/Git/gnunet/src/reclaim/oidc_helper.h:146: warning: argument 'attr' from the argument list of OIDC_check_scopes_for_claim_request has multiple @param documentation sections -/home/william/Git/gnunet/src/reclaim/oidc_helper.h:172: warning: argument 'sub_key' from the argument list of OIDC_generate_userinfo has multiple @param documentation sections -/home/william/Git/gnunet/src/reclaim/oidc_helper.h:172: warning: argument 'attrs' from the argument list of OIDC_generate_userinfo has multiple @param documentation sections -/home/william/Git/gnunet/src/reclaim/oidc_helper.h:172: warning: argument 'presentations' from the argument list of OIDC_generate_userinfo has multiple @param documentation sections -/home/william/Git/gnunet/src/reclaim/plugin_reclaim_credential_jwt.c:145: warning: argument 'cred' of command @param is not found in the argument list of jwt_parse_attributes(void *cls, const char *data, size_t data_size) -/home/william/Git/gnunet/src/reclaim/plugin_reclaim_credential_jwt.c:153: warning: The following parameters of jwt_parse_attributes(void *cls, const char *data, size_t data_size) are not documented: - parameter 'data' - parameter 'data_size' -/home/william/Git/gnunet/src/reclaim/plugin_reclaim_credential_jwt.c:278: warning: argument 'cred' of command @param is not found in the argument list of jwt_get_issuer(void *cls, const char *data, size_t data_size) -/home/william/Git/gnunet/src/reclaim/plugin_reclaim_credential_jwt.c:286: warning: The following parameters of jwt_get_issuer(void *cls, const char *data, size_t data_size) are not documented: - parameter 'data' - parameter 'data_size' -/home/william/Git/gnunet/src/reclaim/plugin_reclaim_credential_jwt.c:356: warning: argument 'cred' of command @param is not found in the argument list of jwt_get_expiration(void *cls, const char *data, size_t data_size, struct GNUNET_TIME_Absolute *exp) -/home/william/Git/gnunet/src/reclaim/plugin_reclaim_credential_jwt.c:347: warning: The following parameters of jwt_get_expiration(void *cls, const char *data, size_t data_size, struct GNUNET_TIME_Absolute *exp) are not documented: - parameter 'data' - parameter 'data_size' - parameter 'exp' -/home/william/Git/gnunet/src/reclaim/plugin_reclaim_credential_jwt.c:347: warning: The following parameter of jwt_get_expiration_c(void *cls, const struct GNUNET_RECLAIM_Credential *cred, struct GNUNET_TIME_Absolute *exp) is not documented: - parameter 'exp' -/home/william/Git/gnunet/src/reclaim/plugin_reclaim_credential_jwt.c:347: warning: The following parameter of jwt_get_expiration_p(void *cls, const struct GNUNET_RECLAIM_Presentation *cred, struct GNUNET_TIME_Absolute *exp) is not documented: - parameter 'exp' -/home/william/Git/gnunet/src/reclaim/plugin_reclaim_credential_pabc.c:174: warning: argument 'cred' of command @param is not found in the argument list of pabc_parse_attributes(void *cls, const char *data, size_t data_size) -/home/william/Git/gnunet/src/reclaim/plugin_reclaim_credential_pabc.c:182: warning: The following parameters of pabc_parse_attributes(void *cls, const char *data, size_t data_size) are not documented: - parameter 'data' - parameter 'data_size' -/home/william/Git/gnunet/src/reclaim/plugin_reclaim_credential_pabc.c:232: warning: argument 'cred' of command @param is not found in the argument list of pabc_get_issuer(void *cls, const char *data, size_t data_size) -/home/william/Git/gnunet/src/reclaim/plugin_reclaim_credential_pabc.c:240: warning: The following parameters of pabc_get_issuer(void *cls, const char *data, size_t data_size) are not documented: - parameter 'data' - parameter 'data_size' -/home/william/Git/gnunet/src/reclaim/plugin_reclaim_credential_pabc.c:287: warning: argument 'cred' of command @param is not found in the argument list of pabc_get_expiration(void *cls, const char *data, size_t data_size, struct GNUNET_TIME_Absolute *exp) -/home/william/Git/gnunet/src/reclaim/plugin_reclaim_credential_pabc.c:278: warning: The following parameters of pabc_get_expiration(void *cls, const char *data, size_t data_size, struct GNUNET_TIME_Absolute *exp) are not documented: - parameter 'data' - parameter 'data_size' - parameter 'exp' -/home/william/Git/gnunet/src/reclaim/plugin_reclaim_credential_pabc.c:278: warning: The following parameter of pabc_get_expiration_c(void *cls, const struct GNUNET_RECLAIM_Credential *cred, struct GNUNET_TIME_Absolute *exp) is not documented: - parameter 'exp' -/home/william/Git/gnunet/src/reclaim/plugin_reclaim_credential_pabc.c:278: warning: The following parameter of pabc_get_expiration_p(void *cls, const struct GNUNET_RECLAIM_Presentation *cred, struct GNUNET_TIME_Absolute *exp) is not documented: - parameter 'exp' -/home/william/Git/gnunet/src/reclaim/plugin_rest_pabc.c:136: warning: argument 'handle' of command @param is not found in the argument list of cleanup_handle(void *cls) -/home/william/Git/gnunet/src/reclaim/plugin_rest_pabc.c:141: warning: The following parameter of cleanup_handle(void *cls) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/reclaim/plugin_rest_reclaim.c:269: warning: argument 'handle' of command @param is not found in the argument list of cleanup_handle(void *cls) -/home/william/Git/gnunet/src/reclaim/plugin_rest_reclaim.c:274: warning: The following parameter of cleanup_handle(void *cls) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/reclaim/reclaim_api.c:771: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_RECLAIM_credential_RESULT' could not be resolved -/home/william/Git/gnunet/src/reclaim/reclaim_api.c:796: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_RECLAIM_credential_RESULT' could not be resolved -/home/william/Git/gnunet/src/reclaim/reclaim_api.c:1479: warning: explicit link request to 'GNUNET_RECLAIM_get_credential_start' could not be resolved -/home/william/Git/gnunet/src/reclaim/reclaim_api.c:771: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_RECLAIM_credential_RESULT' could not be resolved -/home/william/Git/gnunet/src/reclaim/reclaim_api.c:796: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_RECLAIM_credential_RESULT' could not be resolved -/home/william/Git/gnunet/src/reclaim/reclaim_credential.c:386: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_credential_list_dup(const struct GNUNET_RECLAIM_CredentialList *al) -/home/william/Git/gnunet/src/reclaim/reclaim_credential.c:392: warning: The following parameter of GNUNET_RECLAIM_credential_list_dup(const struct GNUNET_RECLAIM_CredentialList *al) is not documented: - parameter 'al' -/home/william/Git/gnunet/src/reclaim/reclaim_credential.c:834: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_presentation_list_dup(const struct GNUNET_RECLAIM_PresentationList *al) -/home/william/Git/gnunet/src/reclaim/reclaim_credential.c:840: warning: The following parameter of GNUNET_RECLAIM_presentation_list_dup(const struct GNUNET_RECLAIM_PresentationList *al) is not documented: - parameter 'al' -/home/william/Git/gnunet/src/regex/gnunet-regex-profiler.c:1037: warning: argument 'cls' from the argument list of dht_connect_cb has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/gnunet-regex-profiler.c:1037: warning: argument 'op' from the argument list of dht_connect_cb has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/gnunet-regex-profiler.c:1037: warning: argument 'ca_result' from the argument list of dht_connect_cb has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/gnunet-regex-profiler.c:1037: warning: argument 'emsg' from the argument list of dht_connect_cb has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/gnunet-regex-profiler.c:1072: warning: argument 'cls' from the argument list of dht_ca has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/gnunet-regex-profiler.c:1072: warning: argument 'cfg' from the argument list of dht_ca has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/gnunet-regex-profiler.c:1089: warning: argument 'cls' from the argument list of dht_da has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/gnunet-regex-profiler.c:1089: warning: argument 'op_result' from the argument list of dht_da has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/gnunet-regex-profiler.c:991: warning: argument 'cls' from the argument list of announce_next_regex has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/gnunet-regex-profiler.c:961: warning: argument 'tc' of command @param is not found in the argument list of do_announce(void *cls) -/home/william/Git/gnunet/src/regex/gnunet-service-regex.c:126: warning: Found unknown command '\am' -/home/william/Git/gnunet/src/regex/gnunet-service-regex.c:239: warning: argument 'message' of command @param is not found in the argument list of check_search(void *cls, const struct RegexSearchMessage *sm) -/home/william/Git/gnunet/src/regex/gnunet-service-regex.c:244: warning: The following parameter of check_search(void *cls, const struct RegexSearchMessage *sm) is not documented: - parameter 'sm' -/home/william/Git/gnunet/src/regex/gnunet-service-regex.c:270: warning: argument 'message' of command @param is not found in the argument list of handle_search(void *cls, const struct RegexSearchMessage *sm) -/home/william/Git/gnunet/src/regex/gnunet-service-regex.c:275: warning: The following parameter of handle_search(void *cls, const struct RegexSearchMessage *sm) is not documented: - parameter 'sm' -/home/william/Git/gnunet/src/regex/plugin_block_regex.c:49: warning: argument 'ctx' of command @param is not found in the argument list of block_plugin_regex_create_group(void *cls, enum GNUNET_BLOCK_Type type, uint32_t nonce, const void *raw_data, size_t raw_data_size, va_list va) -/home/william/Git/gnunet/src/regex/plugin_block_regex.c:60: warning: The following parameter of block_plugin_regex_create_group(void *cls, enum GNUNET_BLOCK_Type type, uint32_t nonce, const void *raw_data, size_t raw_data_size, va_list va) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/regex/plugin_block_regex.c:97: warning: argument 'ctx' of command @param is not found in the argument list of block_plugin_regex_check_query(void *cls, enum GNUNET_BLOCK_Type type, const struct GNUNET_HashCode *query, const void *xquery, size_t xquery_size) -/home/william/Git/gnunet/src/regex/regex_block_lib.h:76: warning: argument 'proof' from the argument list of REGEX_BLOCK_check_proof has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_block_lib.h:76: warning: argument 'proof_len' from the argument list of REGEX_BLOCK_check_proof has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_block_lib.h:76: warning: argument 'key' from the argument list of REGEX_BLOCK_check_proof has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_block_lib.h:94: warning: argument 'block' from the argument list of REGEX_BLOCK_check has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_block_lib.h:94: warning: argument 'size' from the argument list of REGEX_BLOCK_check has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_block_lib.h:94: warning: argument 'query' from the argument list of REGEX_BLOCK_check has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_block_lib.h:94: warning: argument 'xquery' from the argument list of REGEX_BLOCK_check has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_block_lib.h:134: warning: argument 'block' from the argument list of REGEX_BLOCK_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_block_lib.h:134: warning: argument 'size' from the argument list of REGEX_BLOCK_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_block_lib.h:134: warning: argument 'iterator' from the argument list of REGEX_BLOCK_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_block_lib.h:134: warning: argument 'iter_cls' from the argument list of REGEX_BLOCK_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_block_lib.h:149: warning: argument 'block' from the argument list of REGEX_BLOCK_get_key has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_block_lib.h:149: warning: argument 'block_len' from the argument list of REGEX_BLOCK_get_key has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_block_lib.h:149: warning: argument 'key' from the argument list of REGEX_BLOCK_get_key has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_internal.h:328: warning: argument 'regex' from the argument list of REGEX_INTERNAL_construct_nfa has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_internal.h:328: warning: argument 'len' from the argument list of REGEX_INTERNAL_construct_nfa has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_internal.h:376: warning: argument 'a' from the argument list of REGEX_INTERNAL_automaton_traverse has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_internal.h:376: warning: argument 'start' from the argument list of REGEX_INTERNAL_automaton_traverse has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_internal.h:376: warning: argument 'check' from the argument list of REGEX_INTERNAL_automaton_traverse has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_internal.h:376: warning: argument 'check_cls' from the argument list of REGEX_INTERNAL_automaton_traverse has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_internal.h:376: warning: argument 'action' from the argument list of REGEX_INTERNAL_automaton_traverse has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_internal.h:376: warning: argument 'action_cls' from the argument list of REGEX_INTERNAL_automaton_traverse has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_internal.h:395: warning: argument 'a' from the argument list of REGEX_INTERNAL_get_canonical_regex has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_internal_lib.h:67: warning: argument 'regex' from the argument list of REGEX_INTERNAL_construct_dfa has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_internal_lib.h:67: warning: argument 'len' from the argument list of REGEX_INTERNAL_construct_dfa has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_internal_lib.h:67: warning: argument 'max_path_len' from the argument list of REGEX_INTERNAL_construct_dfa has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_internal_lib.h:79: warning: argument 'a' from the argument list of REGEX_INTERNAL_automaton_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_internal_lib.h:91: warning: argument 'a' from the argument list of REGEX_INTERNAL_eval has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_internal_lib.h:91: warning: argument 'string' from the argument list of REGEX_INTERNAL_eval has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_internal_lib.h:155: warning: argument 'a' from the argument list of REGEX_INTERNAL_iterate_reachable_edges has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_internal_lib.h:155: warning: argument 'iterator' from the argument list of REGEX_INTERNAL_iterate_reachable_edges has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_internal_lib.h:155: warning: argument 'iterator_cls' from the argument list of REGEX_INTERNAL_iterate_reachable_edges has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_internal_lib.h:198: warning: argument 'h' from the argument list of REGEX_INTERNAL_reannounce has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_internal_lib.h:257: warning: argument 'h' from the argument list of REGEX_INTERNAL_search_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_test_lib.h:96: warning: argument 'rx_length' from the argument list of REGEX_TEST_generate_random_regex has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_test_lib.h:96: warning: argument 'matching_str' from the argument list of REGEX_TEST_generate_random_regex has multiple @param documentation sections -/home/william/Git/gnunet/src/rest/gnunet-rest-server.c:255: warning: argument 'data' of command @param is not found in the argument list of plugin_callback(void *cls, struct MHD_Response *resp, int status) -/home/william/Git/gnunet/src/rest/gnunet-rest-server.c:255: warning: argument 'len' of command @param is not found in the argument list of plugin_callback(void *cls, struct MHD_Response *resp, int status) -/home/william/Git/gnunet/src/rest/gnunet-rest-server.c:264: warning: The following parameter of plugin_callback(void *cls, struct MHD_Response *resp, int status) is not documented: - parameter 'resp' -/home/william/Git/gnunet/src/rest/gnunet-rest-server.c:450: warning: explicit link request to 'MHD_YES' could not be resolved -/home/william/Git/gnunet/src/rest/gnunet-rest-server.c:451: warning: explicit link request to 'MHD_NO' could not be resolved -/home/william/Git/gnunet/src/rest/gnunet-rest-server.c:787: warning: argument 'toe' of command @param is not found in the argument list of mhd_connection_cb(void *cls, struct MHD_Connection *connection, void **con_cls, enum MHD_ConnectionNotificationCode cnc) -/home/william/Git/gnunet/src/rest/gnunet-rest-server.c:795: warning: The following parameter of mhd_connection_cb(void *cls, struct MHD_Connection *connection, void **con_cls, enum MHD_ConnectionNotificationCode cnc) is not documented: - parameter 'cnc' -/home/william/Git/gnunet/src/rest/gnunet-rest-server.c:863: warning: argument 'tc' of command @param is not found in the argument list of do_accept(void *cls) -/home/william/Git/gnunet/src/rest/plugin_rest_config.c:112: warning: argument 'tc' of command @param is not found in the argument list of do_error(void *cls) -/home/william/Git/gnunet/src/rest/plugin_rest_config.c:163: warning: argument 'handle' of command @param is not found in the argument list of get_cont(struct GNUNET_REST_RequestHandle *con_handle, const char *url, void *cls) -/home/william/Git/gnunet/src/rest/plugin_rest_config.c:169: warning: The following parameters of get_cont(struct GNUNET_REST_RequestHandle *con_handle, const char *url, void *cls) are not documented: - parameter 'con_handle' - parameter 'url' - parameter 'cls' -/home/william/Git/gnunet/src/rest/plugin_rest_config.c:235: warning: argument 'handle' of command @param is not found in the argument list of set_cont(struct GNUNET_REST_RequestHandle *con_handle, const char *url, void *cls) -/home/william/Git/gnunet/src/rest/plugin_rest_config.c:241: warning: The following parameters of set_cont(struct GNUNET_REST_RequestHandle *con_handle, const char *url, void *cls) are not documented: - parameter 'con_handle' - parameter 'url' - parameter 'cls' -/home/william/Git/gnunet/src/rest/plugin_rest_config.c:343: warning: argument 'handle' of command @param is not found in the argument list of options_cont(struct GNUNET_REST_RequestHandle *con_handle, const char *url, void *cls) -/home/william/Git/gnunet/src/rest/plugin_rest_config.c:349: warning: The following parameters of options_cont(struct GNUNET_REST_RequestHandle *con_handle, const char *url, void *cls) are not documented: - parameter 'con_handle' - parameter 'url' - parameter 'cls' -/home/william/Git/gnunet/src/rest/plugin_rest_config.c:365: warning: argument 'method' of command @param is not found in the argument list of rest_config_process_request(struct GNUNET_REST_RequestHandle *conndata_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/rest/plugin_rest_config.c:365: warning: argument 'url' of command @param is not found in the argument list of rest_config_process_request(struct GNUNET_REST_RequestHandle *conndata_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/rest/plugin_rest_config.c:365: warning: argument 'data' of command @param is not found in the argument list of rest_config_process_request(struct GNUNET_REST_RequestHandle *conndata_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/rest/plugin_rest_config.c:365: warning: argument 'data_size' of command @param is not found in the argument list of rest_config_process_request(struct GNUNET_REST_RequestHandle *conndata_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/rest/plugin_rest_config.c:349: warning: The following parameter of rest_config_process_request(struct GNUNET_REST_RequestHandle *conndata_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) is not documented: - parameter 'conndata_handle' -/home/william/Git/gnunet/src/rest/plugin_rest_copying.c:106: warning: argument 'handle' of command @param is not found in the argument list of get_cont(struct GNUNET_REST_RequestHandle *con_handle, const char *url, void *cls) -/home/william/Git/gnunet/src/rest/plugin_rest_copying.c:112: warning: The following parameters of get_cont(struct GNUNET_REST_RequestHandle *con_handle, const char *url, void *cls) are not documented: - parameter 'con_handle' - parameter 'url' - parameter 'cls' -/home/william/Git/gnunet/src/rest/plugin_rest_copying.c:127: warning: argument 'handle' of command @param is not found in the argument list of options_cont(struct GNUNET_REST_RequestHandle *con_handle, const char *url, void *cls) -/home/william/Git/gnunet/src/rest/plugin_rest_copying.c:133: warning: The following parameters of options_cont(struct GNUNET_REST_RequestHandle *con_handle, const char *url, void *cls) are not documented: - parameter 'con_handle' - parameter 'url' - parameter 'cls' -/home/william/Git/gnunet/src/rest/plugin_rest_copying.c:151: warning: argument 'method' of command @param is not found in the argument list of rest_copying_process_request(struct GNUNET_REST_RequestHandle *conndata_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/rest/plugin_rest_copying.c:151: warning: argument 'url' of command @param is not found in the argument list of rest_copying_process_request(struct GNUNET_REST_RequestHandle *conndata_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/rest/plugin_rest_copying.c:151: warning: argument 'data' of command @param is not found in the argument list of rest_copying_process_request(struct GNUNET_REST_RequestHandle *conndata_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/rest/plugin_rest_copying.c:151: warning: argument 'data_size' of command @param is not found in the argument list of rest_copying_process_request(struct GNUNET_REST_RequestHandle *conndata_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/rest/plugin_rest_copying.c:133: warning: The following parameter of rest_copying_process_request(struct GNUNET_REST_RequestHandle *conndata_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) is not documented: - parameter 'conndata_handle' -/home/william/Git/gnunet/src/revocation/gnunet-service-revocation.c:481: warning: explicit link request to 'GNUNET_SETU_STATUS_OK' could not be resolved -/home/william/Git/gnunet/src/revocation/gnunet-service-revocation.c:587: warning: The following parameter of handle_core_connect(void *cls, const struct GNUNET_PeerIdentity *peer, struct GNUNET_MQ_Handle *mq) is not documented: - parameter 'mq' -/home/william/Git/gnunet/src/revocation/gnunet-service-revocation.c:829: warning: argument 'server' of command @param is not found in the argument list of run(void *cls, const struct GNUNET_CONFIGURATION_Handle *c, struct GNUNET_SERVICE_Handle *service) -/home/william/Git/gnunet/src/revocation/gnunet-service-revocation.c:835: warning: The following parameter of run(void *cls, const struct GNUNET_CONFIGURATION_Handle *c, struct GNUNET_SERVICE_Handle *service) is not documented: - parameter 'service' -/home/william/Git/gnunet/src/revocation/plugin_block_revocation.c:48: warning: argument 'ctx' of command @param is not found in the argument list of block_plugin_revocation_check_query(void *cls, enum GNUNET_BLOCK_Type type, const struct GNUNET_HashCode *query, const void *xquery, size_t xquery_size) -/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:680: warning: explicit link request to 'churn_test_cb' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:680: warning: explicit link request to 'mal_cb' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:680: warning: explicit link request to 'single_req_cb' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:681: warning: explicit link request to 'delay_req_cb' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:681: warning: explicit link request to 'seed_big_cb' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:681: warning: explicit link request to 'single_peer_seed_cb' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:681: warning: explicit link request to 'seed_cb' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:681: warning: explicit link request to 'req_cancel_cb' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:1999: warning: argument 'n' of command @param is not found in the argument list of profiler_reply_handle_info(void *cls, const struct GNUNET_PeerIdentity *recv_peer, double probability, uint32_t num_observed) -/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:1999: warning: argument 'recv_peers' of command @param is not found in the argument list of profiler_reply_handle_info(void *cls, const struct GNUNET_PeerIdentity *recv_peer, double probability, uint32_t num_observed) -/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:2007: warning: The following parameters of profiler_reply_handle_info(void *cls, const struct GNUNET_PeerIdentity *recv_peer, double probability, uint32_t num_observed) are not documented: - parameter 'recv_peer' - parameter 'probability' - parameter 'num_observed' -/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:2205: warning: argument 'uint32_tb' of command @param is not found in the argument list of count_containing_views(uint32_t a, uint32_t b) -/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:2214: warning: The following parameter of count_containing_views(uint32_t a, uint32_t b) is not documented: - parameter 'b' -/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:2985: warning: argument 'argc' of command @param is not found in the argument list of run(void *cls, char *const *args, const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg) -/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:2985: warning: argument 'argv' of command @param is not found in the argument list of run(void *cls, char *const *args, const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg) -/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:2990: warning: The following parameters of run(void *cls, char *const *args, const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg) are not documented: - parameter 'cls' - parameter 'args' - parameter 'cfgfile' - parameter 'cfg' -/home/william/Git/gnunet/src/rps/gnunet-rps.c:118: warning: The following parameter of view_update_handle(void *cls, uint64_t n, const struct GNUNET_PeerIdentity *recv_peers) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/rps/gnunet-rps.c:149: warning: argument 'n' of command @param is not found in the argument list of stream_input_handle(void *cls, uint64_t num_peers, const struct GNUNET_PeerIdentity *recv_peers) -/home/william/Git/gnunet/src/rps/gnunet-rps.c:156: warning: The following parameters of stream_input_handle(void *cls, uint64_t num_peers, const struct GNUNET_PeerIdentity *recv_peers) are not documented: - parameter 'cls' - parameter 'num_peers' -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:4275: warning: explicit link request to 'view' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:1469: warning: explicit link request to 'valid_peers' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:1572: warning: explicit link request to 'valid_peers' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:1639: warning: explicit link request to 'initialise_peers' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:1665: warning: explicit link request to 'valid_peers' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:2197: warning: explicit link request to 'view' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:2210: warning: explicit link request to 'view' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:2566: warning: explicit link request to 'pull_map' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:4275: warning: explicit link request to 'view' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:868: warning: explicit link request to 'valid_peers' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:1191: warning: argument 'cls' of command @param is not found in the argument list of destroy_channel(struct ChannelCtx *channel_ctx) -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:1197: warning: The following parameter of destroy_channel(struct ChannelCtx *channel_ctx) is not documented: - parameter 'channel_ctx' -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:1469: warning: explicit link request to 'valid_peers' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:1572: warning: explicit link request to 'valid_peers' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:1639: warning: explicit link request to 'initialise_peers' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:1665: warning: explicit link request to 'valid_peers' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:2197: warning: explicit link request to 'view' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:2210: warning: explicit link request to 'view' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:2292: warning: argument 'view_array' of command @param is not found in the argument list of send_stream_peers(const struct ClientContext *cli_ctx, uint64_t num_peers, const struct GNUNET_PeerIdentity *peers) -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:2292: warning: argument 'view_size' of command @param is not found in the argument list of send_stream_peers(const struct ClientContext *cli_ctx, uint64_t num_peers, const struct GNUNET_PeerIdentity *peers) -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:2300: warning: The following parameters of send_stream_peers(const struct ClientContext *cli_ctx, uint64_t num_peers, const struct GNUNET_PeerIdentity *peers) are not documented: - parameter 'num_peers' - parameter 'peers' -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:2377: warning: The following parameter of clients_notify_stream_peer(const struct Sub *sub, uint64_t num_peers, const struct GNUNET_PeerIdentity *peers) is not documented: - parameter 'sub' -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:2566: warning: explicit link request to 'pull_map' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:3145: warning: The following parameter of core_connects(void *cls, const struct GNUNET_PeerIdentity *peer, struct GNUNET_MQ_Handle *mq) is not documented: - parameter 'mq' -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:3325: warning: argument 'message' of command @param is not found in the argument list of handle_client_seed(void *cls, const struct GNUNET_RPS_CS_SeedMessage *msg) -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:3330: warning: The following parameter of handle_client_seed(void *cls, const struct GNUNET_RPS_CS_SeedMessage *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:3363: warning: argument 'message' of command @param is not found in the argument list of handle_client_view_request(void *cls, const struct GNUNET_RPS_CS_DEBUG_ViewRequest *msg) -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:3369: warning: The following parameter of handle_client_view_request(void *cls, const struct GNUNET_RPS_CS_DEBUG_ViewRequest *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:3417: warning: argument 'message' of command @param is not found in the argument list of handle_client_stream_request(void *cls, const struct GNUNET_RPS_CS_DEBUG_StreamRequest *msg) -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:3422: warning: The following parameter of handle_client_stream_request(void *cls, const struct GNUNET_RPS_CS_DEBUG_StreamRequest *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:4690: warning: argument 'error' of command @param is not found in the argument list of process_peerinfo_peers(void *cls, const struct GNUNET_PeerIdentity *peer, const struct GNUNET_HELLO_Message *hello, const char *err_msg) -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:4697: warning: The following parameter of process_peerinfo_peers(void *cls, const struct GNUNET_PeerIdentity *peer, const struct GNUNET_HELLO_Message *hello, const char *err_msg) is not documented: - parameter 'err_msg' -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:4822: warning: argument 'c' of command @param is not found in the argument list of client_disconnect_cb(void *cls, struct GNUNET_SERVICE_Client *client, void *internal_cls) -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:4830: warning: The following parameter of client_disconnect_cb(void *cls, struct GNUNET_SERVICE_Client *client, void *internal_cls) is not documented: - parameter 'client' -/home/william/Git/gnunet/src/rps/gnunet-service-rps_custommap.c:323: warning: documented empty return type of CustomPeerMap_clear -/home/william/Git/gnunet/src/rps/gnunet-service-rps_custommap.h:149: warning: documented empty return type of CustomPeerMap_clear -/home/william/Git/gnunet/src/rps/gnunet-service-rps_sampler.h:61: warning: argument 'sampler' from the argument list of RPS_sampler_resize has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/gnunet-service-rps_sampler.h:61: warning: argument 'new_size' from the argument list of RPS_sampler_resize has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/gnunet-service-rps_sampler.h:72: warning: argument 'init_size' from the argument list of RPS_sampler_init has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/gnunet-service-rps_sampler.h:72: warning: argument 'max_round_interval' from the argument list of RPS_sampler_init has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/gnunet-service-rps_sampler.h:103: warning: argument 'sampler' from the argument list of RPS_sampler_reinitialise_by_value has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/gnunet-service-rps_sampler.h:103: warning: argument 'id' from the argument list of RPS_sampler_reinitialise_by_value has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/rps-sampler_common.c:560: warning: argument 'for_client' of command @param is not found in the argument list of RPS_sampler_get_n_rand_peers(struct RPS_Sampler *sampler, uint32_t num_peers, RPS_sampler_n_rand_peers_ready_cb cb, void *cls) -/home/william/Git/gnunet/src/rps/gnunet-service-rps_sampler.h:122: warning: argument 'sampler' from the argument list of RPS_sampler_get_n_rand_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/gnunet-service-rps_sampler.h:122: warning: argument 'num_peers' from the argument list of RPS_sampler_get_n_rand_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/gnunet-service-rps_sampler.h:122: warning: argument 'cb' from the argument list of RPS_sampler_get_n_rand_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/gnunet-service-rps_sampler.h:122: warning: argument 'cls' from the argument list of RPS_sampler_get_n_rand_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/gnunet-service-rps_sampler_elem.c:46: warning: argument 'sampler_el' of command @param is not found in the argument list of RPS_sampler_elem_reinit(struct RPS_SamplerElement *sampler_elem) -/home/william/Git/gnunet/src/rps/gnunet-service-rps_sampler_elem.c:50: warning: The following parameter of RPS_sampler_elem_reinit(struct RPS_SamplerElement *sampler_elem) is not documented: - parameter 'sampler_elem' -/home/william/Git/gnunet/src/rps/gnunet-service-rps_sampler_elem.h:103: warning: argument 'sampler_el' of command @param is not found in the argument list of RPS_sampler_elem_reinit(struct RPS_SamplerElement *sampler_elem) -/home/william/Git/gnunet/src/rps/gnunet-service-rps_sampler_elem.h:107: warning: The following parameter of RPS_sampler_elem_reinit(struct RPS_SamplerElement *sampler_elem) is not documented: - parameter 'sampler_elem' -/home/william/Git/gnunet/src/rps/rps-sampler_client.h:66: warning: argument 'sampler' from the argument list of RPS_sampler_resize has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/rps-sampler_client.h:66: warning: argument 'new_size' from the argument list of RPS_sampler_resize has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/rps-sampler_client.h:102: warning: argument 'sampler' from the argument list of RPS_sampler_reinitialise_by_value has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/rps-sampler_client.h:102: warning: argument 'id' from the argument list of RPS_sampler_reinitialise_by_value has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/rps-sampler_common.c:196: warning: argument 'desired_probability' of command @param is not found in the argument list of RPS_sampler_set_deficiency_factor(struct RPS_Sampler *sampler, double deficiency_factor) -/home/william/Git/gnunet/src/rps/rps-sampler_common.c:204: warning: The following parameter of RPS_sampler_set_deficiency_factor(struct RPS_Sampler *sampler, double deficiency_factor) is not documented: - parameter 'deficiency_factor' -/home/william/Git/gnunet/src/rps/rps-sampler_common.c:441: warning: argument 'new_size' of command @param is not found in the argument list of sampler_empty(struct RPS_Sampler *sampler) -/home/william/Git/gnunet/src/rps/rps-sampler_common.h:374: warning: argument 'req_handle' of command @param is not found in the argument list of RPS_sampler_request_single_info_cancel(struct RPS_SamplerRequestHandleSingleInfo *req_single_info_handle) -/home/william/Git/gnunet/src/rps/rps-sampler_common.c:707: warning: The following parameter of RPS_sampler_request_single_info_cancel(struct RPS_SamplerRequestHandleSingleInfo *req_single_info_handle) is not documented: - parameter 'req_single_info_handle' -/home/william/Git/gnunet/src/rps/rps-sampler_common.h:225: warning: argument 'sampler' from the argument list of RPS_sampler_update_with_nw_size has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/rps-sampler_common.h:225: warning: argument 'num_peers' from the argument list of RPS_sampler_update_with_nw_size has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/rps-sampler_common.h:246: warning: argument 'desired_probability' of command @param is not found in the argument list of RPS_sampler_set_deficiency_factor(struct RPS_Sampler *sampler, double deficiency_factor) -/home/william/Git/gnunet/src/rps/rps-sampler_common.h:254: warning: The following parameter of RPS_sampler_set_deficiency_factor(struct RPS_Sampler *sampler, double deficiency_factor) is not documented: - parameter 'deficiency_factor' -/home/william/Git/gnunet/src/rps/rps-sampler_common.h:294: warning: argument 'sampler' from the argument list of RPS_sampler_reinitialise_by_value has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/rps-sampler_common.h:294: warning: argument 'id' from the argument list of RPS_sampler_reinitialise_by_value has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/rps-sampler_common.c:560: warning: argument 'for_client' of command @param is not found in the argument list of RPS_sampler_get_n_rand_peers(struct RPS_Sampler *sampler, uint32_t num_peers, RPS_sampler_n_rand_peers_ready_cb cb, void *cls) -/home/william/Git/gnunet/src/rps/rps-sampler_common.h:333: warning: argument 'sampler' from the argument list of RPS_sampler_get_n_rand_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/rps-sampler_common.h:333: warning: argument 'num_peers' from the argument list of RPS_sampler_get_n_rand_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/rps-sampler_common.h:333: warning: argument 'cb' from the argument list of RPS_sampler_get_n_rand_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/rps-sampler_common.h:333: warning: argument 'cls' from the argument list of RPS_sampler_get_n_rand_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/rps-sampler_common.h:374: warning: argument 'req_handle' of command @param is not found in the argument list of RPS_sampler_request_single_info_cancel(struct RPS_SamplerRequestHandleSingleInfo *req_single_info_handle) -/home/william/Git/gnunet/src/rps/rps-sampler_common.h:374: warning: argument 'req_handle' of command @param is not found in the argument list of RPS_sampler_request_single_info_cancel(struct RPS_SamplerRequestHandleSingleInfo *req_single_info_handle) -/home/william/Git/gnunet/src/rps/rps-sampler_common.h:380: warning: The following parameter of RPS_sampler_request_single_info_cancel(struct RPS_SamplerRequestHandleSingleInfo *req_single_info_handle) is not documented: - parameter 'req_single_info_handle' -/home/william/Git/gnunet/src/rps/rps-test_util.c:115: warning: explicit link request to 'GNUNET_CONTAINER_HashMapIterator' could not be resolved -/home/william/Git/gnunet/src/rps/rps_api.c:293: warning: argument 'num_peers' of command @param is not found in the argument list of new_stream_request(struct GNUNET_RPS_Handle *rps_handle, GNUNET_RPS_NotifyReadyCB ready_cb, void *cls) -/home/william/Git/gnunet/src/rps/rps_api.c:371: warning: argument 'num_peers' of command @param is not found in the argument list of peer_info_ready_cb(const struct GNUNET_PeerIdentity *peers, void *cls, double probability, uint32_t num_observed) -/home/william/Git/gnunet/src/rps/rps_api.c:558: warning: The following parameter of handle_view_update(void *cls, const struct GNUNET_RPS_CS_DEBUG_ViewReply *msg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/rps/rps_api.c:620: warning: The following parameter of check_stream_input(void *cls, const struct GNUNET_RPS_CS_DEBUG_StreamReply *msg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/rps/rps_api.c:665: warning: The following parameter of handle_stream_input(void *cls, const struct GNUNET_RPS_CS_DEBUG_StreamReply *msg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/rps/rps_api.c:743: warning: argument 'out' of command @param is not found in the argument list of hash_from_share_val(const char *share_val, struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/scalarproduct/gnunet-scalarproduct.c:191: warning: argument 'tc' of command @param is not found in the argument list of shutdown_task(void *cls) -/home/william/Git/gnunet/src/scalarproduct/gnunet-service-scalarproduct-ecc_alice.c:639: warning: explicit link request to 'GNUNET_SETI_STATUS_OK' could not be resolved -/home/william/Git/gnunet/src/scalarproduct/gnunet-service-scalarproduct-ecc_alice.c:763: warning: argument 'session' of command @param is not found in the argument list of client_request_complete_alice(struct AliceServiceSession *s) -/home/william/Git/gnunet/src/scalarproduct/gnunet-service-scalarproduct-ecc_alice.c:767: warning: The following parameter of client_request_complete_alice(struct AliceServiceSession *s) is not documented: - parameter 's' -/home/william/Git/gnunet/src/scalarproduct/gnunet-service-scalarproduct-ecc_alice.c:1023: warning: argument 'tc' of command @param is not found in the argument list of shutdown_task(void *cls) -/home/william/Git/gnunet/src/scalarproduct/gnunet-service-scalarproduct-ecc_bob.c:210: warning: argument 'session' of command @param is not found in the argument list of destroy_service_session(struct BobServiceSession *s) -/home/william/Git/gnunet/src/scalarproduct/gnunet-service-scalarproduct-ecc_bob.c:214: warning: The following parameter of destroy_service_session(struct BobServiceSession *s) is not documented: - parameter 's' -/home/william/Git/gnunet/src/scalarproduct/gnunet-service-scalarproduct-ecc_bob.c:292: warning: argument 'channel_ctx' of command @param is not found in the argument list of cb_channel_destruction(void *cls, const struct GNUNET_CADET_Channel *channel) -/home/william/Git/gnunet/src/scalarproduct/gnunet-service-scalarproduct-ecc_bob.c:553: warning: explicit link request to 'GNUNET_SETI_STATUS_OK' could not be resolved -/home/william/Git/gnunet/src/scalarproduct/gnunet-service-scalarproduct_alice.c:672: warning: argument 'message' of command @param is not found in the argument list of check_bobs_cryptodata_message(void *cls, const struct BobCryptodataMessage *msg) -/home/william/Git/gnunet/src/scalarproduct/gnunet-service-scalarproduct_alice.c:680: warning: The following parameter of check_bobs_cryptodata_message(void *cls, const struct BobCryptodataMessage *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/scalarproduct/gnunet-service-scalarproduct_alice.c:896: warning: explicit link request to 'GNUNET_SETI_STATUS_OK' could not be resolved -/home/william/Git/gnunet/src/scalarproduct/gnunet-service-scalarproduct_alice.c:1015: warning: argument 'session' of command @param is not found in the argument list of client_request_complete_alice(struct AliceServiceSession *s) -/home/william/Git/gnunet/src/scalarproduct/gnunet-service-scalarproduct_alice.c:1019: warning: The following parameter of client_request_complete_alice(struct AliceServiceSession *s) is not documented: - parameter 's' -/home/william/Git/gnunet/src/scalarproduct/gnunet-service-scalarproduct_bob.c:252: warning: argument 'session' of command @param is not found in the argument list of destroy_service_session(struct BobServiceSession *s) -/home/william/Git/gnunet/src/scalarproduct/gnunet-service-scalarproduct_bob.c:256: warning: The following parameter of destroy_service_session(struct BobServiceSession *s) is not documented: - parameter 's' -/home/william/Git/gnunet/src/scalarproduct/gnunet-service-scalarproduct_bob.c:559: warning: argument 'request' of command @param is not found in the argument list of compute_service_response(struct BobServiceSession *session) -/home/william/Git/gnunet/src/scalarproduct/gnunet-service-scalarproduct_bob.c:570: warning: The following parameter of compute_service_response(struct BobServiceSession *session) is not documented: - parameter 'session' -/home/william/Git/gnunet/src/scalarproduct/gnunet-service-scalarproduct_bob.c:890: warning: explicit link request to 'GNUNET_SETI_STATUS_OK' could not be resolved -/home/william/Git/gnunet/src/scalarproduct/scalarproduct_api.c:137: warning: argument 'msg' of command @param is not found in the argument list of handle_response(void *cls, const struct ClientResponseMessage *message) -/home/william/Git/gnunet/src/scalarproduct/scalarproduct_api.c:146: warning: The following parameter of handle_response(void *cls, const struct ClientResponseMessage *message) is not documented: - parameter 'message' -/home/william/Git/gnunet/src/secretsharing/gnunet-service-secretsharing.c:654: warning: argument 'tc' of command @param is not found in the argument list of cleanup_task(void *cls) -/home/william/Git/gnunet/src/secretsharing/gnunet-service-secretsharing.c:1133: warning: The following parameter of encrypt_fair(gcry_mpi_t v, const struct GNUNET_CRYPTO_PaillierPublicKey *ppub, struct GNUNET_SECRETSHARING_FairEncryption *fe) is not documented: - parameter 'ppub' -/home/william/Git/gnunet/src/set/gnunet-service-set.c:178: warning: argument 'listener' of command @param is not found in the argument list of get_incoming(uint32_t id) -/home/william/Git/gnunet/src/set/gnunet-service-set.c:1003: warning: argument 'm' of command @param is not found in the argument list of handle_client_create_set(void *cls, const struct GNUNET_SET_CreateMessage *msg) -/home/william/Git/gnunet/src/set/gnunet-service-set.c:1012: warning: The following parameter of handle_client_create_set(void *cls, const struct GNUNET_SET_CreateMessage *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/set/gnunet-service-set.c:1062: warning: argument 'tc' of command @param is not found in the argument list of incoming_timeout_cb(void *cls) -/home/william/Git/gnunet/src/set/gnunet-service-set_intersection.c:759: warning: argument 'mh' of command @param is not found in the argument list of handle_intersection_p2p_element_info(void *cls, const struct IntersectionElementInfoMessage *msg) -/home/william/Git/gnunet/src/set/gnunet-service-set_intersection.c:765: warning: The following parameter of handle_intersection_p2p_element_info(void *cls, const struct IntersectionElementInfoMessage *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/set/gnunet-service-set_intersection.c:1038: warning: argument 'mh' of command @param is not found in the argument list of handle_intersection_p2p_done(void *cls, const struct IntersectionDoneMessage *idm) -/home/william/Git/gnunet/src/set/gnunet-service-set_intersection.c:1045: warning: The following parameter of handle_intersection_p2p_done(void *cls, const struct IntersectionDoneMessage *idm) is not documented: - parameter 'idm' -/home/william/Git/gnunet/src/set/gnunet-service-set_intersection.h:57: warning: argument 'mh' of command @param is not found in the argument list of handle_intersection_p2p_element_info(void *cls, const struct IntersectionElementInfoMessage *msg) -/home/william/Git/gnunet/src/set/gnunet-service-set_intersection.h:63: warning: The following parameter of handle_intersection_p2p_element_info(void *cls, const struct IntersectionElementInfoMessage *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/set/gnunet-service-set_intersection.h:68: warning: argument 'mh' of command @param is not found in the argument list of handle_intersection_p2p_done(void *cls, const struct IntersectionDoneMessage *idm) -/home/william/Git/gnunet/src/set/gnunet-service-set_intersection.h:75: warning: The following parameter of handle_intersection_p2p_done(void *cls, const struct IntersectionDoneMessage *idm) is not documented: - parameter 'idm' -/home/william/Git/gnunet/src/set/gnunet-service-set_union.c:85: warning: explicit link request to 'PHASE_EXPECT_ELEMENTS_AND_REQUESTS' could not be resolved -/home/william/Git/gnunet/src/set/gnunet-service-set_union.c:90: warning: explicit link request to 'PHASE_EXPECT_ELEMENTS' could not be resolved -/home/william/Git/gnunet/src/setu/gnunet-service-setu.c:122: warning: explicit link request to 'PHASE_EXPECT_ELEMENTS_AND_REQUESTS' could not be resolved -/home/william/Git/gnunet/src/setu/gnunet-service-setu.c:127: warning: explicit link request to 'PHASE_EXPECT_ELEMENTS' could not be resolved -/home/william/Git/gnunet/src/set/gnunet-service-set_union.h:242: warning: argument 'cls' from the argument list of handle_union_p2p_over has multiple @param documentation sections -/home/william/Git/gnunet/src/set/gnunet-service-set_union.h:242: warning: argument 'mh' from the argument list of handle_union_p2p_over has multiple @param documentation sections -/home/william/Git/gnunet/src/set/gnunet-service-set_union_strata_estimator.h:117: warning: argument 'se1' from the argument list of strata_estimator_difference has multiple @param documentation sections -/home/william/Git/gnunet/src/set/gnunet-service-set_union_strata_estimator.h:117: warning: argument 'se2' from the argument list of strata_estimator_difference has multiple @param documentation sections -/home/william/Git/gnunet/src/setu/ibf.c:313: warning: argument 'max' of command @param is not found in the argument list of ibf_write_slice(const struct InvertibleBloomFilter *ibf, uint32_t start, uint64_t count, void *buf, uint8_t counter_max_length) -/home/william/Git/gnunet/src/setu/ibf.c:323: warning: The following parameter of ibf_write_slice(const struct InvertibleBloomFilter *ibf, uint32_t start, uint64_t count, void *buf, uint8_t counter_max_length) is not documented: - parameter 'counter_max_length' -/home/william/Git/gnunet/src/setu/ibf.c:358: warning: argument 'max' of command @param is not found in the argument list of pack_counter(const struct InvertibleBloomFilter *ibf, uint32_t start, uint64_t count, uint8_t *buf, uint8_t counter_max_length) -/home/william/Git/gnunet/src/setu/ibf.c:369: warning: The following parameter of pack_counter(const struct InvertibleBloomFilter *ibf, uint32_t start, uint64_t count, uint8_t *buf, uint8_t counter_max_length) is not documented: - parameter 'counter_max_length' -/home/william/Git/gnunet/src/setu/ibf.c:431: warning: argument 'max' of command @param is not found in the argument list of unpack_counter(const struct InvertibleBloomFilter *ibf, uint32_t start, uint64_t count, uint8_t *buf, uint8_t counter_max_length) -/home/william/Git/gnunet/src/setu/ibf.c:442: warning: The following parameter of unpack_counter(const struct InvertibleBloomFilter *ibf, uint32_t start, uint64_t count, uint8_t *buf, uint8_t counter_max_length) is not documented: - parameter 'counter_max_length' -/home/william/Git/gnunet/src/setu/ibf.c:515: warning: argument 'max' of command @param is not found in the argument list of ibf_read_slice(const void *buf, uint32_t start, uint64_t count, struct InvertibleBloomFilter *ibf, uint8_t counter_max_length) -/home/william/Git/gnunet/src/setu/ibf.c:523: warning: The following parameter of ibf_read_slice(const void *buf, uint32_t start, uint64_t count, struct InvertibleBloomFilter *ibf, uint8_t counter_max_length) is not documented: - parameter 'counter_max_length' -/home/william/Git/gnunet/src/set/ibf.h:141: warning: argument 'buf' from the argument list of ibf_read_slice has multiple @param documentation sections -/home/william/Git/gnunet/src/set/ibf.h:141: warning: argument 'start' from the argument list of ibf_read_slice has multiple @param documentation sections -/home/william/Git/gnunet/src/set/ibf.h:141: warning: argument 'count' from the argument list of ibf_read_slice has multiple @param documentation sections -/home/william/Git/gnunet/src/set/ibf.h:141: warning: argument 'ibf' from the argument list of ibf_read_slice has multiple @param documentation sections -/home/william/Git/gnunet/src/set/ibf.h:176: warning: argument 'size' from the argument list of ibf_create has multiple @param documentation sections -/home/william/Git/gnunet/src/set/ibf.h:176: warning: argument 'hash_num' from the argument list of ibf_create has multiple @param documentation sections -/home/william/Git/gnunet/src/set/ibf.h:224: warning: argument 'ibf' from the argument list of ibf_decode has multiple @param documentation sections -/home/william/Git/gnunet/src/set/ibf.h:224: warning: argument 'ret_side' from the argument list of ibf_decode has multiple @param documentation sections -/home/william/Git/gnunet/src/set/ibf.h:224: warning: argument 'ret_id' from the argument list of ibf_decode has multiple @param documentation sections -/home/william/Git/gnunet/src/setu/ibf.c:313: warning: argument 'max' of command @param is not found in the argument list of ibf_write_slice(const struct InvertibleBloomFilter *ibf, uint32_t start, uint64_t count, void *buf, uint8_t counter_max_length) -/home/william/Git/gnunet/src/setu/ibf.h:141: warning: argument 'ibf' from the argument list of ibf_write_slice has multiple @param documentation sections -/home/william/Git/gnunet/src/setu/ibf.h:141: warning: argument 'start' from the argument list of ibf_write_slice has multiple @param documentation sections -/home/william/Git/gnunet/src/setu/ibf.h:141: warning: argument 'count' from the argument list of ibf_write_slice has multiple @param documentation sections -/home/william/Git/gnunet/src/setu/ibf.h:141: warning: argument 'buf' from the argument list of ibf_write_slice has multiple @param documentation sections -/home/william/Git/gnunet/src/setu/ibf.h:141: warning: The following parameter of ibf_write_slice(const struct InvertibleBloomFilter *ibf, uint32_t start, uint64_t count, void *buf, uint8_t counter_max_length) is not documented: - parameter 'counter_max_length' -/home/william/Git/gnunet/src/setu/ibf.c:515: warning: argument 'max' of command @param is not found in the argument list of ibf_read_slice(const void *buf, uint32_t start, uint64_t count, struct InvertibleBloomFilter *ibf, uint8_t counter_max_length) -/home/william/Git/gnunet/src/setu/ibf.h:157: warning: argument 'buf' from the argument list of ibf_read_slice has multiple @param documentation sections -/home/william/Git/gnunet/src/setu/ibf.h:157: warning: argument 'start' from the argument list of ibf_read_slice has multiple @param documentation sections -/home/william/Git/gnunet/src/setu/ibf.h:157: warning: argument 'count' from the argument list of ibf_read_slice has multiple @param documentation sections -/home/william/Git/gnunet/src/setu/ibf.h:157: warning: argument 'ibf' from the argument list of ibf_read_slice has multiple @param documentation sections -/home/william/Git/gnunet/src/setu/ibf.h:157: warning: The following parameter of ibf_read_slice(const void *buf, uint32_t start, uint64_t count, struct InvertibleBloomFilter *ibf, uint8_t counter_max_length) is not documented: - parameter 'counter_max_length' -/home/william/Git/gnunet/src/setu/ibf.h:193: warning: argument 'size' from the argument list of ibf_create has multiple @param documentation sections -/home/william/Git/gnunet/src/setu/ibf.h:193: warning: argument 'hash_num' from the argument list of ibf_create has multiple @param documentation sections -/home/william/Git/gnunet/src/setu/ibf.h:241: warning: argument 'ibf' from the argument list of ibf_decode has multiple @param documentation sections -/home/william/Git/gnunet/src/setu/ibf.h:241: warning: argument 'ret_side' from the argument list of ibf_decode has multiple @param documentation sections -/home/william/Git/gnunet/src/setu/ibf.h:241: warning: argument 'ret_id' from the argument list of ibf_decode has multiple @param documentation sections -/home/william/Git/gnunet/src/setu/ibf.h:268: warning: argument 'max' of command @param is not found in the argument list of pack_counter(const struct InvertibleBloomFilter *ibf, uint32_t start, uint64_t count, uint8_t *buf, uint8_t counter_max_length) -/home/william/Git/gnunet/src/setu/ibf.h:279: warning: The following parameter of pack_counter(const struct InvertibleBloomFilter *ibf, uint32_t start, uint64_t count, uint8_t *buf, uint8_t counter_max_length) is not documented: - parameter 'counter_max_length' -/home/william/Git/gnunet/src/setu/ibf.h:285: warning: argument 'max' of command @param is not found in the argument list of unpack_counter(const struct InvertibleBloomFilter *ibf, uint32_t start, uint64_t count, uint8_t *buf, uint8_t counter_max_length) -/home/william/Git/gnunet/src/setu/ibf.h:296: warning: The following parameter of unpack_counter(const struct InvertibleBloomFilter *ibf, uint32_t start, uint64_t count, uint8_t *buf, uint8_t counter_max_length) is not documented: - parameter 'counter_max_length' -/home/william/Git/gnunet/src/set/set_api.c:294: warning: argument 'mh' of command @param is not found in the argument list of handle_iter_element(void *cls, const struct GNUNET_SET_IterResponseMessage *msg) -/home/william/Git/gnunet/src/set/set_api.c:302: warning: The following parameter of handle_iter_element(void *cls, const struct GNUNET_SET_IterResponseMessage *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/set/set_api.c:389: warning: argument 'mh' of command @param is not found in the argument list of handle_result(void *cls, const struct GNUNET_SET_ResultMessage *msg) -/home/william/Git/gnunet/src/set/set_api.c:394: warning: The following parameter of handle_result(void *cls, const struct GNUNET_SET_ResultMessage *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/seti/gnunet-service-seti.c:1234: warning: argument 'mh' of command @param is not found in the argument list of handle_intersection_p2p_element_info(void *cls, const struct IntersectionElementInfoMessage *msg) -/home/william/Git/gnunet/src/seti/gnunet-service-seti.c:1240: warning: The following parameter of handle_intersection_p2p_element_info(void *cls, const struct IntersectionElementInfoMessage *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/seti/gnunet-service-seti.c:1498: warning: argument 'mh' of command @param is not found in the argument list of handle_intersection_p2p_done(void *cls, const struct IntersectionDoneMessage *idm) -/home/william/Git/gnunet/src/seti/gnunet-service-seti.c:1505: warning: The following parameter of handle_intersection_p2p_done(void *cls, const struct IntersectionDoneMessage *idm) is not documented: - parameter 'idm' -/home/william/Git/gnunet/src/seti/gnunet-service-seti.c:1559: warning: argument 'listener' of command @param is not found in the argument list of get_incoming(uint32_t id) -/home/william/Git/gnunet/src/seti/gnunet-service-seti.c:1796: warning: argument 'm' of command @param is not found in the argument list of handle_client_create_set(void *cls, const struct GNUNET_SETI_CreateMessage *msg) -/home/william/Git/gnunet/src/seti/gnunet-service-seti.c:1805: warning: The following parameter of handle_client_create_set(void *cls, const struct GNUNET_SETI_CreateMessage *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/seti/gnunet-service-seti.c:1831: warning: argument 'tc' of command @param is not found in the argument list of incoming_timeout_cb(void *cls) -/home/william/Git/gnunet/src/seti/plugin_block_seti_test.c:34: warning: argument 'ctx' of command @param is not found in the argument list of block_plugin_seti_test_check_query(void *cls, enum GNUNET_BLOCK_Type type, const struct GNUNET_HashCode *query, const void *xquery, size_t xquery_size) -/home/william/Git/gnunet/src/seti/seti_api.c:223: warning: argument 'mh' of command @param is not found in the argument list of handle_result(void *cls, const struct GNUNET_SETI_ResultMessage *msg) -/home/william/Git/gnunet/src/seti/seti_api.c:228: warning: The following parameter of handle_result(void *cls, const struct GNUNET_SETI_ResultMessage *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/set/gnunet-service-set_union.c:85: warning: explicit link request to 'PHASE_EXPECT_ELEMENTS_AND_REQUESTS' could not be resolved -/home/william/Git/gnunet/src/set/gnunet-service-set_union.c:90: warning: explicit link request to 'PHASE_EXPECT_ELEMENTS' could not be resolved -/home/william/Git/gnunet/src/setu/gnunet-service-setu.c:122: warning: explicit link request to 'PHASE_EXPECT_ELEMENTS_AND_REQUESTS' could not be resolved -/home/william/Git/gnunet/src/setu/gnunet-service-setu.c:127: warning: explicit link request to 'PHASE_EXPECT_ELEMENTS' could not be resolved -/home/william/Git/gnunet/src/setu/gnunet-service-setu.c:1723: warning: argument 'initial_local_elements_in_set' of command @param is not found in the argument list of full_sync_plausibility_check(struct Operation *op) -/home/william/Git/gnunet/src/setu/gnunet-service-setu.c:1723: warning: argument 'estimated_set_difference' of command @param is not found in the argument list of full_sync_plausibility_check(struct Operation *op) -/home/william/Git/gnunet/src/setu/gnunet-service-setu.c:1723: warning: argument 'repeated_elements' of command @param is not found in the argument list of full_sync_plausibility_check(struct Operation *op) -/home/william/Git/gnunet/src/setu/gnunet-service-setu.c:1723: warning: argument 'fresh_elements' of command @param is not found in the argument list of full_sync_plausibility_check(struct Operation *op) -/home/william/Git/gnunet/src/setu/gnunet-service-setu.c:2118: warning: argument 'ibf_order' of command @param is not found in the argument list of send_ibf(struct Operation *op, uint32_t ibf_size) -/home/william/Git/gnunet/src/setu/gnunet-service-setu.c:2126: warning: The following parameter of send_ibf(struct Operation *op, uint32_t ibf_size) is not documented: - parameter 'ibf_size' -/home/william/Git/gnunet/src/setu/gnunet-service-setu.c:2215: warning: The following parameters of get_size_from_difference(unsigned int diff, int number_buckets_per_element, float ibf_bucket_number_factor) are not documented: - parameter 'number_buckets_per_element' - parameter 'ibf_bucket_number_factor' -/home/william/Git/gnunet/src/setu/gnunet-service-setu.c:4269: warning: argument 'listener' of command @param is not found in the argument list of get_incoming(uint32_t id) -/home/william/Git/gnunet/src/setu/gnunet-service-setu.c:4520: warning: argument 'm' of command @param is not found in the argument list of handle_client_create_set(void *cls, const struct GNUNET_SETU_CreateMessage *msg) -/home/william/Git/gnunet/src/setu/gnunet-service-setu.c:4529: warning: The following parameter of handle_client_create_set(void *cls, const struct GNUNET_SETU_CreateMessage *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/setu/gnunet-service-setu.c:4571: warning: argument 'tc' of command @param is not found in the argument list of incoming_timeout_cb(void *cls) -/home/william/Git/gnunet/src/setu/gnunet-service-setu_strata_estimator.c:117: warning: The following parameters of strata_estimator_write(struct MultiStrataEstimator *se, uint16_t se_ibf_total_size, uint8_t number_se_send, void *buf) are not documented: - parameter 'se_ibf_total_size' - parameter 'number_se_send' -/home/william/Git/gnunet/src/setu/gnunet-service-setu_strata_estimator.c:175: warning: The following parameters of strata_estimator_read(const void *buf, size_t buf_len, int is_compressed, uint8_t number_se_received, uint16_t se_ibf_total_size, struct MultiStrataEstimator *se) are not documented: - parameter 'number_se_received' - parameter 'se_ibf_total_size' -/home/william/Git/gnunet/src/setu/gnunet-service-setu_strata_estimator.c:352: warning: documented empty return type of strata_estimator_difference -/home/william/Git/gnunet/src/setu/gnunet-service-setu_strata_estimator.h:87: warning: argument 'avg_element_size' from the argument list of determine_strata_count has multiple @param documentation sections -/home/william/Git/gnunet/src/setu/gnunet-service-setu_strata_estimator.h:87: warning: argument 'element_count' from the argument list of determine_strata_count has multiple @param documentation sections -/home/william/Git/gnunet/src/setu/gnunet-service-setu_strata_estimator.h:99: warning: The following parameters of strata_estimator_write(struct MultiStrataEstimator *se, uint16_t se_ibf_total_size, uint8_t number_se_send, void *buf) are not documented: - parameter 'se_ibf_total_size' - parameter 'number_se_send' -/home/william/Git/gnunet/src/setu/gnunet-service-setu_strata_estimator.h:116: warning: The following parameters of strata_estimator_read(const void *buf, size_t buf_len, int is_compressed, uint8_t number_se_received, uint16_t se_ibf_total_size, struct MultiStrataEstimator *se) are not documented: - parameter 'number_se_received' - parameter 'se_ibf_total_size' -/home/william/Git/gnunet/src/setu/gnunet-service-setu_strata_estimator.h:147: warning: argument 'se1' from the argument list of strata_estimator_difference has multiple @param documentation sections -/home/william/Git/gnunet/src/setu/gnunet-service-setu_strata_estimator.h:147: warning: argument 'se2' from the argument list of strata_estimator_difference has multiple @param documentation sections -/home/william/Git/gnunet/src/setu/gnunet-service-setu_strata_estimator.h:147: warning: documented empty return type of strata_estimator_difference -/home/william/Git/gnunet/src/setu/gnunet-service-setu_strata_estimator.h:169: warning: argument 'se' from the argument list of strata_estimator_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/setu/gnunet-service-setu_strata_estimator.h:169: warning: argument 'key' from the argument list of strata_estimator_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/setu/plugin_block_setu_test.c:33: warning: argument 'ctx' of command @param is not found in the argument list of block_plugin_setu_test_check_query(void *cls, enum GNUNET_BLOCK_Type type, const struct GNUNET_HashCode *query, const void *xquery, size_t xquery_size) -/home/william/Git/gnunet/src/setu/setu_api.c:206: warning: argument 'mh' of command @param is not found in the argument list of handle_result(void *cls, const struct GNUNET_SETU_ResultMessage *msg) -/home/william/Git/gnunet/src/setu/setu_api.c:211: warning: The following parameter of handle_result(void *cls, const struct GNUNET_SETU_ResultMessage *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/include/gnunet_sq_lib.h:190: warning: argument 'db_conn' of command @param is not found in the argument list of GNUNET_SQ_bind(sqlite3_stmt *stmt, const struct GNUNET_SQ_QueryParam *params) -/home/william/Git/gnunet/src/sq/sq.c:37: warning: The following parameter of GNUNET_SQ_bind(sqlite3_stmt *stmt, const struct GNUNET_SQ_QueryParam *params) is not documented: - parameter 'stmt' -/home/william/Git/gnunet/src/sq/sq_query_helper.c:61: warning: Found unknown command '\oaran' -/home/william/Git/gnunet/src/sq/sq_query_helper.c:41: warning: The following parameter of GNUNET_SQ_query_param_fixed_size(const void *ptr, size_t ptr_size) is not documented: - parameter 'ptr_size' -/home/william/Git/gnunet/src/statistics/gnunet-service-statistics.c:329: warning: argument 'client' of command @param is not found in the argument list of transmit(struct ClientEntry *ce, const struct StatsEntry *e) -/home/william/Git/gnunet/src/statistics/gnunet-service-statistics.c:334: warning: The following parameter of transmit(struct ClientEntry *ce, const struct StatsEntry *e) is not documented: - parameter 'ce' -/home/william/Git/gnunet/src/statistics/gnunet-service-statistics.c:543: warning: argument 'subsystem' of command @param is not found in the argument list of find_stat_entry(struct SubsystemEntry *se, const char *name) -/home/william/Git/gnunet/src/statistics/gnunet-service-statistics.c:549: warning: The following parameter of find_stat_entry(struct SubsystemEntry *se, const char *name) is not documented: - parameter 'se' -/home/william/Git/gnunet/src/statistics/gnunet-service-statistics.c:562: warning: argument 'message' of command @param is not found in the argument list of check_set(void *cls, const struct GNUNET_STATISTICS_SetMessage *msg) -/home/william/Git/gnunet/src/statistics/gnunet-service-statistics.c:568: warning: The following parameter of check_set(void *cls, const struct GNUNET_STATISTICS_SetMessage *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/statistics/gnunet-service-statistics.c:590: warning: argument 'message' of command @param is not found in the argument list of handle_set(void *cls, const struct GNUNET_STATISTICS_SetMessage *msg) -/home/william/Git/gnunet/src/statistics/gnunet-service-statistics.c:595: warning: The following parameter of handle_set(void *cls, const struct GNUNET_STATISTICS_SetMessage *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/statistics/gnunet-statistics.c:200: warning: explicit link request to 'GNUNET_CONTAINER_HashMapIterator' could not be resolved -/home/william/Git/gnunet/src/statistics/statistics_api.c:1001: warning: argument 'cls' from the argument list of schedule_action has multiple @param documentation sections -/home/william/Git/gnunet/src/statistics/statistics_api.c:447: warning: argument 'msg' of command @param is not found in the argument list of handle_statistics_value(void *cls, const struct GNUNET_STATISTICS_ReplyMessage *smsg) -/home/william/Git/gnunet/src/statistics/statistics_api.c:453: warning: The following parameter of handle_statistics_value(void *cls, const struct GNUNET_STATISTICS_ReplyMessage *smsg) is not documented: - parameter 'smsg' -/home/william/Git/gnunet/src/statistics/statistics_api.c:491: warning: argument 'msg' of command @param is not found in the argument list of handle_statistics_watch_value(void *cls, const struct GNUNET_STATISTICS_WatchValueMessage *wvm) -/home/william/Git/gnunet/src/statistics/statistics_api.c:498: warning: The following parameter of handle_statistics_watch_value(void *cls, const struct GNUNET_STATISTICS_WatchValueMessage *wvm) is not documented: - parameter 'wvm' -/home/william/Git/gnunet/src/testbed/generate-underlay-topology.c:210: warning: argument 'cfg' of command @param is not found in the argument list of run(void *cls, char *const *args, const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *config) -/home/william/Git/gnunet/src/testbed/generate-underlay-topology.c:217: warning: The following parameter of run(void *cls, char *const *args, const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *config) is not documented: - parameter 'config' -/home/william/Git/gnunet/src/testbed/gnunet-helper-testbed.c:278: warning: explicit link request to 'GNUNET_mst_destroy()' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.c:479: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_ADDHOST' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.c:515: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_ADDHOST' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.c:612: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_GETSLAVECONFIG' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.c:383: warning: argument 'message' of command @param is not found in the argument list of check_init(void *cls, const struct GNUNET_TESTBED_InitMessage *msg) -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.c:391: warning: The following parameter of check_init(void *cls, const struct GNUNET_TESTBED_InitMessage *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.c:408: warning: argument 'message' of command @param is not found in the argument list of handle_init(void *cls, const struct GNUNET_TESTBED_InitMessage *msg) -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.c:415: warning: The following parameter of handle_init(void *cls, const struct GNUNET_TESTBED_InitMessage *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.c:479: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_ADDHOST' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.c:515: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_ADDHOST' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.c:612: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_GETSLAVECONFIG' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:656: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_CREATEPEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:668: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_CREATEPEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:679: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_DESTROYPEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:690: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_DESTROYPEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:701: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_DESTROYPEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:712: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_GETPEERCONFIG' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:760: warning: explicit link request to 'GNUNET_MESSAGE_TYPDE_TESTBED_RECONFIGURE_PEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:773: warning: explicit link request to 'GNUNET_MESSAGE_TYPDE_TESTBED_RECONFIGURE_PEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:572: warning: argument 'tc' of command @param is not found in the argument list of GST_forwarded_operation_timeout(void *cls) -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:579: warning: argument 'cls' from the argument list of GST_forwarded_operation_timeout has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:656: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_CREATEPEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:668: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_CREATEPEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_peers.c:431: warning: argument 'message' of command @param is not found in the argument list of handle_peer_create(void *cls, const struct GNUNET_TESTBED_PeerCreateMessage *msg) -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:675: warning: argument 'cls' from the argument list of handle_peer_create has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:679: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_DESTROYPEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:690: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_DESTROYPEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:693: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_DESTROYPEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:697: warning: argument 'cls' from the argument list of handle_peer_start has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:697: warning: argument 'msg' from the argument list of handle_peer_start has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:701: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_DESTROYPEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:701: warning: argument 'message' of command @param is not found in the argument list of handle_peer_stop(void *cls, const struct GNUNET_TESTBED_PeerStopMessage *msg) -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:704: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_DESTROYPEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:708: warning: argument 'cls' from the argument list of handle_peer_stop has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:712: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_GETPEERCONFIG' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:715: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_GETPEERCONFIG' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:719: warning: argument 'cls' from the argument list of handle_peer_get_config has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:719: warning: argument 'msg' from the argument list of handle_peer_get_config has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:755: warning: argument 'cls' from the argument list of handle_manage_peer_service has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:755: warning: argument 'msg' from the argument list of handle_manage_peer_service has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:760: warning: explicit link request to 'GNUNET_MESSAGE_TYPDE_TESTBED_RECONFIGURE_PEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:773: warning: explicit link request to 'GNUNET_MESSAGE_TYPDE_TESTBED_RECONFIGURE_PEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_barriers.c:329: warning: argument 'message' of command @param is not found in the argument list of check_barrier_wait(void *cls, const struct GNUNET_TESTBED_BarrierWait *msg) -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_barriers.c:334: warning: The following parameter of check_barrier_wait(void *cls, const struct GNUNET_TESTBED_BarrierWait *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_barriers.c:341: warning: argument 'message' of command @param is not found in the argument list of handle_barrier_wait(void *cls, const struct GNUNET_TESTBED_BarrierWait *msg) -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_barriers.c:353: warning: The following parameter of handle_barrier_wait(void *cls, const struct GNUNET_TESTBED_BarrierWait *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_barriers.c:441: warning: The following parameter of disconnect_cb(void *cls, struct GNUNET_SERVICE_Client *client, void *app_ctx) is not documented: - parameter 'app_ctx' -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_links.c:1198: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_LCONTROLLERS' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_links.c:1198: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_LCONTROLLERS' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_links.h:183: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_LCONTROLLERS' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_links.h:183: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_LCONTROLLERS' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_oc.c:798: warning: The following parameter of occ_cache_get_handle_ats_rocc_cb(void *cls, struct GNUNET_CORE_Handle *ch, struct GNUNET_TRANSPORT_CoreHandle *th, struct GNUNET_ATS_ConnectivityHandle *ac, const struct GNUNET_PeerIdentity *my_identity, const struct GNUNET_CONFIGURATION_Handle *cfg) is not documented: - parameter 'cfg' -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_oc.c:911: warning: argument 'cls' from the argument list of send_hello has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_oc.c:1110: warning: The following parameter of p1_transport_connect_cache_callback(void *cls, struct GNUNET_CORE_Handle *ch, struct GNUNET_TRANSPORT_CoreHandle *th, struct GNUNET_ATS_ConnectivityHandle *ac, const struct GNUNET_PeerIdentity *ignore_, const struct GNUNET_CONFIGURATION_Handle *cfg) is not documented: - parameter 'cfg' -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_oc.c:1157: warning: The following parameter of occ_cache_get_handle_core_cb(void *cls, struct GNUNET_CORE_Handle *ch, struct GNUNET_TRANSPORT_CoreHandle *th, struct GNUNET_ATS_ConnectivityHandle *ac, const struct GNUNET_PeerIdentity *my_identity, const struct GNUNET_CONFIGURATION_Handle *cfg) is not documented: - parameter 'cfg' -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_oc.c:1827: warning: The following parameter of rocc_cache_get_handle_transport_cb(void *cls, struct GNUNET_CORE_Handle *ch, struct GNUNET_TRANSPORT_CoreHandle *th, struct GNUNET_ATS_ConnectivityHandle *ac, const struct GNUNET_PeerIdentity *ignore_, const struct GNUNET_CONFIGURATION_Handle *cfg) is not documented: - parameter 'cfg' -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_peers.c:416: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_CREATEPEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_peers.c:431: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_CREATEPEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_peers.c:563: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_DESTROYPEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_peers.c:972: warning: explicit link request to 'GNUNET_MESSAGE_TYPDE_TESTBED_RECONFIGURE_PEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_peers.c:987: warning: explicit link request to 'GNUNET_MESSAGE_TYPDE_TESTBED_RECONFIGURE_PEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_peers.c:416: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_CREATEPEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_peers.c:431: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_CREATEPEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_peers.c:563: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_DESTROYPEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:690: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_DESTROYPEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:701: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_DESTROYPEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:712: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_GETPEERCONFIG' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_peers.c:972: warning: explicit link request to 'GNUNET_MESSAGE_TYPDE_TESTBED_RECONFIGURE_PEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_peers.c:987: warning: explicit link request to 'GNUNET_MESSAGE_TYPDE_TESTBED_RECONFIGURE_PEER' could not be resolved -/home/william/Git/gnunet/src/testbed/testbed_api.c:333: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_ADDHOSTCONFIRM' could not be resolved -/home/william/Git/gnunet/src/testbed/testbed_api.c:361: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_ADDHOSTCONFIRM' could not be resolved -/home/william/Git/gnunet/src/testbed/testbed_api.c:1020: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_SLAVE_INFORMATION' could not be resolved -/home/william/Git/gnunet/src/testbed/testbed_api.c:333: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_ADDHOSTCONFIRM' could not be resolved -/home/william/Git/gnunet/src/testbed/testbed_api.c:361: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_ADDHOSTCONFIRM' could not be resolved -/home/william/Git/gnunet/src/testbed/testbed_api.c:407: warning: argument 'c' of command @param is not found in the argument list of handle_forwarded_operation_msg(void *cls, struct OperationContext *opc, const struct GNUNET_MessageHeader *msg) -/home/william/Git/gnunet/src/testbed/testbed_api.c:415: warning: The following parameter of handle_forwarded_operation_msg(void *cls, struct OperationContext *opc, const struct GNUNET_MessageHeader *msg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/testbed/testbed_api.c:431: warning: argument 'c' of command @param is not found in the argument list of handle_opsuccess(void *cls, const struct GNUNET_TESTBED_GenericOperationSuccessEventMessage *msg) -/home/william/Git/gnunet/src/testbed/testbed_api.c:439: warning: The following parameter of handle_opsuccess(void *cls, const struct GNUNET_TESTBED_GenericOperationSuccessEventMessage *msg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/testbed/testbed_api.c:535: warning: argument 'c' of command @param is not found in the argument list of handle_peer_create_success(void *cls, const struct GNUNET_TESTBED_PeerCreateSuccessEventMessage *msg) -/home/william/Git/gnunet/src/testbed/testbed_api.c:543: warning: The following parameter of handle_peer_create_success(void *cls, const struct GNUNET_TESTBED_PeerCreateSuccessEventMessage *msg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/testbed/testbed_api.c:593: warning: argument 'c' of command @param is not found in the argument list of handle_peer_event(void *cls, const struct GNUNET_TESTBED_PeerEventMessage *msg) -/home/william/Git/gnunet/src/testbed/testbed_api.c:601: warning: The following parameter of handle_peer_event(void *cls, const struct GNUNET_TESTBED_PeerEventMessage *msg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/testbed/testbed_api.c:674: warning: argument 'c' of command @param is not found in the argument list of handle_peer_conevent(void *cls, const struct GNUNET_TESTBED_ConnectionEventMessage *msg) -/home/william/Git/gnunet/src/testbed/testbed_api.c:682: warning: The following parameter of handle_peer_conevent(void *cls, const struct GNUNET_TESTBED_ConnectionEventMessage *msg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/testbed/testbed_api.c:750: warning: argument 'c' of command @param is not found in the argument list of check_peer_config(void *cls, const struct GNUNET_TESTBED_PeerConfigurationInformationMessage *msg) -/home/william/Git/gnunet/src/testbed/testbed_api.c:758: warning: The following parameter of check_peer_config(void *cls, const struct GNUNET_TESTBED_PeerConfigurationInformationMessage *msg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/testbed/testbed_api.c:767: warning: argument 'c' of command @param is not found in the argument list of handle_peer_config(void *cls, const struct GNUNET_TESTBED_PeerConfigurationInformationMessage *msg) -/home/william/Git/gnunet/src/testbed/testbed_api.c:775: warning: The following parameter of handle_peer_config(void *cls, const struct GNUNET_TESTBED_PeerConfigurationInformationMessage *msg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/testbed/testbed_api.c:839: warning: argument 'c' of command @param is not found in the argument list of check_op_fail_event(void *cls, const struct GNUNET_TESTBED_OperationFailureEventMessage *msg) -/home/william/Git/gnunet/src/testbed/testbed_api.c:848: warning: The following parameter of check_op_fail_event(void *cls, const struct GNUNET_TESTBED_OperationFailureEventMessage *msg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/testbed/testbed_api.c:857: warning: argument 'c' of command @param is not found in the argument list of handle_op_fail_event(void *cls, const struct GNUNET_TESTBED_OperationFailureEventMessage *msg) -/home/william/Git/gnunet/src/testbed/testbed_api.c:865: warning: The following parameter of handle_op_fail_event(void *cls, const struct GNUNET_TESTBED_OperationFailureEventMessage *msg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/testbed/testbed_api.c:1020: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_SLAVE_INFORMATION' could not be resolved -/home/william/Git/gnunet/src/testbed/testbed_api.c:1020: warning: argument 'c' of command @param is not found in the argument list of check_slave_config(void *cls, const struct GNUNET_TESTBED_SlaveConfiguration *msg) -/home/william/Git/gnunet/src/testbed/testbed_api.c:1028: warning: The following parameter of check_slave_config(void *cls, const struct GNUNET_TESTBED_SlaveConfiguration *msg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/testbed/testbed_api.c:1036: warning: argument 'c' of command @param is not found in the argument list of handle_slave_config(void *cls, const struct GNUNET_TESTBED_SlaveConfiguration *msg) -/home/william/Git/gnunet/src/testbed/testbed_api.c:1044: warning: The following parameter of handle_slave_config(void *cls, const struct GNUNET_TESTBED_SlaveConfiguration *msg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/testbed/testbed_api.c:1080: warning: argument 'c' of command @param is not found in the argument list of check_link_controllers_result(void *cls, const struct GNUNET_TESTBED_ControllerLinkResponse *msg) -/home/william/Git/gnunet/src/testbed/testbed_api.c:1089: warning: The following parameter of check_link_controllers_result(void *cls, const struct GNUNET_TESTBED_ControllerLinkResponse *msg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/testbed/testbed_api.c:1098: warning: argument 'c' of command @param is not found in the argument list of handle_link_controllers_result(void *cls, const struct GNUNET_TESTBED_ControllerLinkResponse *msg) -/home/william/Git/gnunet/src/testbed/testbed_api.c:1106: warning: The following parameter of handle_link_controllers_result(void *cls, const struct GNUNET_TESTBED_ControllerLinkResponse *msg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/testbed/testbed_api.h:319: warning: argument 'controller' from the argument list of GNUNET_TESTBED_queue_message_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api.h:319: warning: argument 'msg' from the argument list of GNUNET_TESTBED_queue_message_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api.c:2054: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_PEERCONFIG' could not be resolved -/home/william/Git/gnunet/src/testbed/testbed_api.c:2055: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_SLAVECONFIG' could not be resolved -/home/william/Git/gnunet/src/testbed/testbed_api.h:440: warning: argument 'msg' from the argument list of GNUNET_TESTBED_extract_config_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api.h:451: warning: argument 'msg' from the argument list of GNUNET_TESTBED_parse_error_string_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api.h:502: warning: argument 'controller' from the argument list of GNUNET_TESTBED_barrier_init_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api.h:502: warning: argument 'name' from the argument list of GNUNET_TESTBED_barrier_init_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api.h:502: warning: argument 'quorum' from the argument list of GNUNET_TESTBED_barrier_init_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api.h:502: warning: argument 'cb' from the argument list of GNUNET_TESTBED_barrier_init_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api.h:502: warning: argument 'cls' from the argument list of GNUNET_TESTBED_barrier_init_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api.h:502: warning: argument 'echo' from the argument list of GNUNET_TESTBED_barrier_init_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api_hosts.c:934: warning: argument 'client' of command @param is not found in the argument list of helper_mst(void *cls, const struct GNUNET_MessageHeader *message) -/home/william/Git/gnunet/src/testbed/testbed_api_hosts.h:70: warning: argument 'id' from the argument list of GNUNET_TESTBED_host_lookup_by_id_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api_hosts.h:99: warning: argument 'host' from the argument list of GNUNET_TESTBED_host_get_id_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api_hosts.h:176: warning: argument 'host' from the argument list of GNUNET_TESTBED_is_host_registered_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api_hosts.h:176: warning: argument 'controller' from the argument list of GNUNET_TESTBED_is_host_registered_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api_operations.h:68: warning: argument 'type' from the argument list of GNUNET_TESTBED_operation_queue_create_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api_operations.h:68: warning: argument 'max_active' from the argument list of GNUNET_TESTBED_operation_queue_create_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api_operations.h:79: warning: argument 'queue' from the argument list of GNUNET_TESTBED_operation_queue_destroy_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api_operations.h:133: warning: argument 'queue' from the argument list of GNUNET_TESTBED_operation_queue_insert_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api_operations.h:133: warning: argument 'op' from the argument list of GNUNET_TESTBED_operation_queue_insert_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api_sd.h:77: warning: argument 'h' from the argument list of GNUNET_TESTBED_SD_deviation_factor_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api_sd.h:77: warning: argument 'amount' from the argument list of GNUNET_TESTBED_SD_deviation_factor_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api_sd.h:77: warning: argument 'factor' from the argument list of GNUNET_TESTBED_SD_deviation_factor_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api_testbed.c:1014: warning: argument 'cls' from the argument list of register_hosts has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api_topology.h:41: warning: argument 'num_peers' from the argument list of GNUNET_TESTBED_2dtorus_calc_links has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api_topology.h:41: warning: argument 'rows' from the argument list of GNUNET_TESTBED_2dtorus_calc_links has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api_topology.h:41: warning: argument 'rows_len' from the argument list of GNUNET_TESTBED_2dtorus_calc_links has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api_topology.h:55: warning: argument 'topology' from the argument list of GNUNET_TESTBED_topology_get_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api_topology.h:55: warning: argument 'topology_string' from the argument list of GNUNET_TESTBED_topology_get_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api_topology.h:107: warning: argument 'num_peers' from the argument list of GNUNET_TESTBED_underlay_construct_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api_topology.h:107: warning: argument 'proc' from the argument list of GNUNET_TESTBED_underlay_construct_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api_topology.h:107: warning: argument 'cls' from the argument list of GNUNET_TESTBED_underlay_construct_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testing/gnunet-cmds-helper.c:323: warning: explicit link request to 'GNUNET_mst_destroy()' could not be resolved -/home/william/Git/gnunet/src/testing/list-keys.c:11: warning: argument 'cfg' of command @param is not found in the argument list of run(void *cls, char *const *args, const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *config) -/home/william/Git/gnunet/src/testing/list-keys.c:18: warning: The following parameter of run(void *cls, char *const *args, const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *config) is not documented: - parameter 'config' -/home/william/Git/gnunet/src/testing/testing_api_cmd_block_until_external_trigger.c:98: warning: argument 'all_peers_started' of command @param is not found in the argument list of GNUNET_TESTING_cmd_block_until_external_trigger(const char *label) -/home/william/Git/gnunet/src/testing/testing_api_cmd_block_until_external_trigger.c:98: warning: argument 'asynchronous_finish' of command @param is not found in the argument list of GNUNET_TESTING_cmd_block_until_external_trigger(const char *label) -/home/william/Git/gnunet/src/testing/testing_api_cmd_local_test_prepared.c:97: warning: argument 'all_local_tests_prepared' of command @param is not found in the argument list of GNUNET_TESTING_cmd_local_test_prepared(const char *label, TESTING_CMD_HELPER_write_cb write_message) -/home/william/Git/gnunet/src/testing/testing_api_cmd_netjail_start.c:136: warning: The following parameter of GNUNET_TESTING_cmd_netjail_start(const char *label, char *topology_config, unsigned int *read_file) is not documented: - parameter 'read_file' -/home/william/Git/gnunet/src/testing/testing_api_cmd_netjail_start_testsystem.c:345: warning: argument 'client' of command @param is not found in the argument list of helper_mst(void *cls, const struct GNUNET_MessageHeader *message) -/home/william/Git/gnunet/src/testing/testing_api_cmd_netjail_start_testsystem.c:733: warning: argument 'cmd' of command @param is not found in the argument list of netjail_exec_run(void *cls, struct GNUNET_TESTING_Interpreter *is) -/home/william/Git/gnunet/src/testing/testing_api_cmd_netjail_stop_testsystem.c:65: warning: argument 'cmd' of command @param is not found in the argument list of stop_testing_system_cleanup(void *cls) -/home/william/Git/gnunet/src/testing/testing_api_cmd_system_create.c:96: warning: argument 'label' from the argument list of GNUNET_TESTING_cmd_system_create has multiple @param documentation sections -/home/william/Git/gnunet/src/testing/testing_api_cmd_system_create.c:96: warning: The following parameter of GNUNET_TESTING_cmd_system_create(const char *label, const char *testdir) is not documented: - parameter 'testdir' -/home/william/Git/gnunet/src/testing/testing_api_loop.c:370: warning: argument 'cls' from the argument list of interpreter_run has multiple @param documentation sections -/home/william/Git/gnunet/src/testing/testing_api_loop.c:441: warning: argument 'cmd' of command @param is not found in the argument list of GNUNET_TESTING_running(const struct GNUNET_TESTING_Command *command) -/home/william/Git/gnunet/src/testing/testing_api_loop.c:427: warning: The following parameter of GNUNET_TESTING_running(const struct GNUNET_TESTING_Command *command) is not documented: - parameter 'command' -/home/william/Git/gnunet/src/testing/testing_api_loop.c:455: warning: argument 'cmd' of command @param is not found in the argument list of GNUNET_TESTING_finished(struct GNUNET_TESTING_Command *command) -/home/william/Git/gnunet/src/testing/testing_api_loop.c:427: warning: The following parameter of GNUNET_TESTING_finished(struct GNUNET_TESTING_Command *command) is not documented: - parameter 'command' -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:2780: warning: argument 'cls' from the argument list of listen_cb has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:980: warning: argument 'out' of command @param is not found in the argument list of calculate_hmac(struct GNUNET_HashCode *hmac_secret, const void *buf, size_t buf_size, struct GNUNET_ShortHashCode *smac) -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:1154: warning: argument 'out' of command @param is not found in the argument list of setup_cipher(const struct GNUNET_HashCode *dh, const struct GNUNET_PeerIdentity *pid, gcry_cipher_hd_t *cipher, struct GNUNET_HashCode *hmac_key) -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:1154: warning: argument 'out' of command @param is not found in the argument list of setup_cipher(const struct GNUNET_HashCode *dh, const struct GNUNET_PeerIdentity *pid, gcry_cipher_hd_t *cipher, struct GNUNET_HashCode *hmac_key) -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:1288: warning: argument 'in' of command @param is not found in the argument list of setup_in_cipher(const struct GNUNET_CRYPTO_EcdhePublicKey *ephemeral, struct Queue *queue) -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:1288: warning: argument 'out' of command @param is not found in the argument list of setup_in_cipher(const struct GNUNET_CRYPTO_EcdhePublicKey *ephemeral, struct Queue *queue) -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:1445: warning: argument 'tc' of command @param is not found in the argument list of send_challenge(struct GNUNET_CRYPTO_ChallengeNonceP challenge, struct Queue *queue) -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:1450: warning: The following parameter of send_challenge(struct GNUNET_CRYPTO_ChallengeNonceP challenge, struct Queue *queue) is not documented: - parameter 'challenge' -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:2013: warning: The following parameter of tcp_address_to_sockaddr_numeric_v6(socklen_t *sock_len, struct sockaddr_in6 v6, unsigned int port) is not documented: - parameter 'port' -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:2041: warning: The following parameter of tcp_address_to_sockaddr_numeric_v4(socklen_t *sock_len, struct sockaddr_in v4, unsigned int port) is not documented: - parameter 'port' -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:2065: warning: The following parameter of tcp_address_to_sockaddr_port_only(const char *bindto, unsigned int *port) is not documented: - parameter 'port' -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:2603: warning: argument 'out' of command @param is not found in the argument list of decrypt_and_check_tc(struct Queue *queue, struct TCPConfirmation *tc, char *ibuf) -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:3170: warning: argument 'in' of command @param is not found in the argument list of nat_address_cb(void *cls, void **app_ctx, int add_remove, enum GNUNET_NAT_AddressClass ac, const struct sockaddr *addr, socklen_t addrlen) -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:3170: warning: argument 'out' of command @param is not found in the argument list of nat_address_cb(void *cls, void **app_ctx, int add_remove, enum GNUNET_NAT_AddressClass ac, const struct sockaddr *addr, socklen_t addrlen) -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:1191: warning: explicit link request to 'receiver_heap' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:1191: warning: explicit link request to 'sender_heap' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:998: warning: argument 'out' of command @param is not found in the argument list of get_kid(const struct GNUNET_HashCode *msec, uint32_t serial, struct GNUNET_ShortHashCode *kid) -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:1130: warning: argument 'out' of command @param is not found in the argument list of get_iv_key(const struct GNUNET_HashCode *msec, uint32_t serial, char key[(256/8)], char iv[(96/8)]) -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:1130: warning: argument 'out' of command @param is not found in the argument list of get_iv_key(const struct GNUNET_HashCode *msec, uint32_t serial, char key[(256/8)], char iv[(96/8)]) -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:1191: warning: explicit link request to 'receiver_heap' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:1191: warning: explicit link request to 'sender_heap' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:1239: warning: argument 'in' of command @param is not found in the argument list of calculate_cmac(struct SharedSecret *ss) -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:1239: warning: argument 'out' of command @param is not found in the argument list of calculate_cmac(struct SharedSecret *ss) -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:1261: warning: argument 'queue' of command @param is not found in the argument list of pass_plaintext_to_core(struct SenderAddress *sender, const void *plaintext, size_t plaintext_len) -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:1269: warning: The following parameter of pass_plaintext_to_core(struct SenderAddress *sender, const void *plaintext, size_t plaintext_len) is not documented: - parameter 'sender' -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:1311: warning: argument 'out' of command @param is not found in the argument list of setup_cipher(const struct GNUNET_HashCode *msec, uint32_t serial, gcry_cipher_hd_t *cipher) -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:1398: warning: argument 'in' of command @param is not found in the argument list of setup_shared_secret_enc(const struct GNUNET_CRYPTO_EcdhePrivateKey *ephemeral, struct ReceiverAddress *receiver, int add_to_receiver) -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:1398: warning: argument 'out' of command @param is not found in the argument list of setup_shared_secret_enc(const struct GNUNET_CRYPTO_EcdhePrivateKey *ephemeral, struct ReceiverAddress *receiver, int add_to_receiver) -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:1404: warning: The following parameter of setup_shared_secret_enc(const struct GNUNET_CRYPTO_EcdhePrivateKey *ephemeral, struct ReceiverAddress *receiver, int add_to_receiver) is not documented: - parameter 'add_to_receiver' -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:2015: warning: The following parameter of decrypt_rekey(const struct UDPRekey *rekey, size_t rekey_len, struct KeyCacheEntry *kce, struct SenderAddress *sender) is not documented: - parameter 'sender' -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:2200: warning: argument 'ephermal' of command @param is not found in the argument list of verify_confirmation(const struct GNUNET_CRYPTO_EcdhePublicKey *ephemeral, const struct UDPConfirmation *uc) -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:2206: warning: The following parameter of verify_confirmation(const struct GNUNET_CRYPTO_EcdhePublicKey *ephemeral, const struct UDPConfirmation *uc) is not documented: - parameter 'ephemeral' -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:3458: warning: argument 'in' of command @param is not found in the argument list of nat_address_cb(void *cls, void **app_ctx, int add_remove, enum GNUNET_NAT_AddressClass ac, const struct sockaddr *addr, socklen_t addrlen) -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:3458: warning: argument 'out' of command @param is not found in the argument list of nat_address_cb(void *cls, void **app_ctx, int add_remove, enum GNUNET_NAT_AddressClass ac, const struct sockaddr *addr, socklen_t addrlen) -/home/william/Git/gnunet/src/transport/gnunet-communicator-unix.c:299: warning: argument 'is_abstract' of command @param is not found in the argument list of unix_address_to_sockaddr(const char *unixpath, socklen_t *sock_len) -/home/william/Git/gnunet/src/transport/gnunet-communicator-unix.c:380: warning: argument 'plugin' of command @param is not found in the argument list of lookup_queue(const struct GNUNET_PeerIdentity *peer, const struct sockaddr_un *un, socklen_t un_len) -/home/william/Git/gnunet/src/transport/gnunet-communicator-unix.c:380: warning: argument 'address' of command @param is not found in the argument list of lookup_queue(const struct GNUNET_PeerIdentity *peer, const struct sockaddr_un *un, socklen_t un_len) -/home/william/Git/gnunet/src/transport/gnunet-communicator-unix.c:386: warning: The following parameters of lookup_queue(const struct GNUNET_PeerIdentity *peer, const struct sockaddr_un *un, socklen_t un_len) are not documented: - parameter 'peer' - parameter 'un' - parameter 'un_len' -/home/william/Git/gnunet/src/transport/gnunet-communicator-unix.c:618: warning: argument 'peer' of command @param is not found in the argument list of setup_queue(const struct GNUNET_PeerIdentity *target, enum GNUNET_TRANSPORT_ConnectionStatus cs, const struct sockaddr_un *un, socklen_t un_len) -/home/william/Git/gnunet/src/transport/gnunet-communicator-unix.c:627: warning: The following parameter of setup_queue(const struct GNUNET_PeerIdentity *target, enum GNUNET_TRANSPORT_ConnectionStatus cs, const struct sockaddr_un *un, socklen_t un_len) is not documented: - parameter 'target' -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:872: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_ADDRESS_VALIDATION_CHALLENGE' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:3252: warning: Found unknown command '\dvh' -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:6929: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_DV_INITIATOR' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:7555: warning: Found unknown command '\ea' -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:3252: warning: Found unknown command '\dvh' -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:9528: warning: argument 'cls' from the argument list of transmit_on_queue has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:3605: warning: The following parameter of schedule_transmit_on_queue(struct GNUNET_TIME_Relative delay, struct Queue *queue, enum GNUNET_SCHEDULER_Priority p) is not documented: - parameter 'delay' -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:4082: warning: argument 'out' of command @param is not found in the argument list of pick_random_dv_hops(const struct DistanceVector *dv, enum RouteMessageOptions options, struct DistanceVectorHop **hops_array, unsigned int hops_array_length) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:4331: warning: argument 'in' of command @param is not found in the argument list of update_ephemeral(struct DistanceVector *dv) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:4331: warning: argument 'out' of command @param is not found in the argument list of update_ephemeral(struct DistanceVector *dv) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:4564: warning: argument 'out' of command @param is not found in the argument list of dv_setup_key_state_from_km(const struct GNUNET_HashCode *km, const struct GNUNET_ShortHashCode *iv, struct DVKeyState *key) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:4605: warning: argument 'out' of command @param is not found in the argument list of dh_key_derive_eph_pid(const struct GNUNET_CRYPTO_EcdhePrivateKey *priv_ephemeral, const struct GNUNET_PeerIdentity *target, const struct GNUNET_ShortHashCode *iv, struct DVKeyState *key) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:4630: warning: argument 'priv_ephemeral' of command @param is not found in the argument list of dh_key_derive_eph_pub(const struct GNUNET_CRYPTO_EcdhePublicKey *pub_ephemeral, const struct GNUNET_ShortHashCode *iv, struct DVKeyState *key) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:4630: warning: argument 'target' of command @param is not found in the argument list of dh_key_derive_eph_pub(const struct GNUNET_CRYPTO_EcdhePublicKey *pub_ephemeral, const struct GNUNET_ShortHashCode *iv, struct DVKeyState *key) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:4630: warning: argument 'out' of command @param is not found in the argument list of dh_key_derive_eph_pub(const struct GNUNET_CRYPTO_EcdhePublicKey *pub_ephemeral, const struct GNUNET_ShortHashCode *iv, struct DVKeyState *key) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:4638: warning: The following parameter of dh_key_derive_eph_pub(const struct GNUNET_CRYPTO_EcdhePublicKey *pub_ephemeral, const struct GNUNET_ShortHashCode *iv, struct DVKeyState *key) is not documented: - parameter 'pub_ephemeral' -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:4653: warning: argument 'out' of command @param is not found in the argument list of dv_hmac(const struct DVKeyState *key, struct GNUNET_HashCode *hmac, const void *data, size_t data_size) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:4672: warning: argument 'out' of command @param is not found in the argument list of dv_encrypt(struct DVKeyState *key, const void *in, void *dst, size_t in_size) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:4680: warning: argument 'in' from the argument list of dv_encrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:4689: warning: argument 'in' of command @param is not found in the argument list of dv_decrypt(struct DVKeyState *key, void *out, const void *ciph, size_t out_size) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:4697: warning: argument 'out' from the argument list of dv_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:4737: warning: argument 'target' of command @param is not found in the argument list of encapsulate_for_dv(struct DistanceVector *dv, unsigned int num_dvhs, struct DistanceVectorHop **dvhs, const struct GNUNET_MessageHeader *hdr, DVMessageHandler use, void *use_cls, enum RouteMessageOptions options, enum GNUNET_GenericReturnValue without_fc) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:4737: warning: argument 'shall' of command @param is not found in the argument list of encapsulate_for_dv(struct DistanceVector *dv, unsigned int num_dvhs, struct DistanceVectorHop **dvhs, const struct GNUNET_MessageHeader *hdr, DVMessageHandler use, void *use_cls, enum RouteMessageOptions options, enum GNUNET_GenericReturnValue without_fc) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:4730: warning: The following parameters of encapsulate_for_dv(struct DistanceVector *dv, unsigned int num_dvhs, struct DistanceVectorHop **dvhs, const struct GNUNET_MessageHeader *hdr, DVMessageHandler use, void *use_cls, enum RouteMessageOptions options, enum GNUNET_GenericReturnValue without_fc) are not documented: - parameter 'dv' - parameter 'without_fc' -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:4866: warning: argument 'target' of command @param is not found in the argument list of route_control_message_without_fc(struct VirtualLink *vl, const struct GNUNET_MessageHeader *hdr, enum RouteMessageOptions options) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:4856: warning: The following parameter of route_control_message_without_fc(struct VirtualLink *vl, const struct GNUNET_MessageHeader *hdr, enum RouteMessageOptions options) is not documented: - parameter 'vl' -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:6148: warning: argument 'in' of command @param is not found in the argument list of update_pd_age(struct PerformanceData *pd, unsigned int age) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:6148: warning: argument 'out' of command @param is not found in the argument list of update_pd_age(struct PerformanceData *pd, unsigned int age) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:6177: warning: argument 'in' of command @param is not found in the argument list of update_performance_data(struct PerformanceData *pd, struct GNUNET_TIME_Relative rtt, uint16_t bytes_transmitted_ok) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:6177: warning: argument 'out' of command @param is not found in the argument list of update_performance_data(struct PerformanceData *pd, struct GNUNET_TIME_Relative rtt, uint16_t bytes_transmitted_ok) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:6340: warning: explicit link request to 'GNUNET_Ok' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:6929: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_DV_INITIATOR' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:7555: warning: Found unknown command '\ea' -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:7556: warning: argument 'origin' of command @param is not found in the argument list of forward_dv_box(struct Neighbour *next_hop, struct TransportDVBoxMessage *hdr, uint16_t total_hops, uint16_t num_hops, const struct GNUNET_PeerIdentity *hops, const void *enc_payload, uint16_t enc_payload_size) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:7556: warning: argument 'payload' of command @param is not found in the argument list of forward_dv_box(struct Neighbour *next_hop, struct TransportDVBoxMessage *hdr, uint16_t total_hops, uint16_t num_hops, const struct GNUNET_PeerIdentity *hops, const void *enc_payload, uint16_t enc_payload_size) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:7556: warning: argument 'payload_size' of command @param is not found in the argument list of forward_dv_box(struct Neighbour *next_hop, struct TransportDVBoxMessage *hdr, uint16_t total_hops, uint16_t num_hops, const struct GNUNET_PeerIdentity *hops, const void *enc_payload, uint16_t enc_payload_size) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:7567: warning: The following parameters of forward_dv_box(struct Neighbour *next_hop, struct TransportDVBoxMessage *hdr, uint16_t total_hops, uint16_t num_hops, const struct GNUNET_PeerIdentity *hops, const void *enc_payload, uint16_t enc_payload_size) are not documented: - parameter 'hdr' - parameter 'enc_payload' - parameter 'enc_payload_size' -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:8088: warning: argument 'obm' of command @param is not found in the argument list of check_incoming_msg(void *cls, const struct GNUNET_TRANSPORT_IncomingMessage *im) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:8096: warning: The following parameter of check_incoming_msg(void *cls, const struct GNUNET_TRANSPORT_IncomingMessage *im) is not documented: - parameter 'im' -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:8685: warning: The following parameter of handle_incoming_msg(void *cls, const struct GNUNET_TRANSPORT_IncomingMessage *im) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:9306: warning: argument 'in' of command @param is not found in the argument list of select_best_pending_from_link(struct PendingMessageScoreContext *sc, struct Queue *queue, struct VirtualLink *vl, struct DistanceVectorHop *dvh, size_t overhead) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:9306: warning: argument 'out' of command @param is not found in the argument list of select_best_pending_from_link(struct PendingMessageScoreContext *sc, struct Queue *queue, struct VirtualLink *vl, struct DistanceVectorHop *dvh, size_t overhead) -/home/william/Git/gnunet/src/transport/gnunet-service-transport.c:2198: warning: argument 'cls' from the argument list of do_blacklist_check has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport.c:1921: warning: argument 'ats' of command @param is not found in the argument list of ats_request_address_change(void *cls, const struct GNUNET_PeerIdentity *peer, const struct GNUNET_HELLO_Address *address, struct GNUNET_ATS_Session *session, struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out, struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in) -/home/william/Git/gnunet/src/transport/gnunet-service-transport.c:1921: warning: argument 'ats_count' of command @param is not found in the argument list of ats_request_address_change(void *cls, const struct GNUNET_PeerIdentity *peer, const struct GNUNET_HELLO_Address *address, struct GNUNET_ATS_Session *session, struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out, struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in) -/home/william/Git/gnunet/src/transport/gnunet-service-transport.c:2119: warning: argument 'message' of command @param is not found in the argument list of handle_client_set_metric(void *cls, const struct TrafficMetricMessage *tm) -/home/william/Git/gnunet/src/transport/gnunet-service-transport.c:2126: warning: The following parameter of handle_client_set_metric(void *cls, const struct TrafficMetricMessage *tm) is not documented: - parameter 'tm' -/home/william/Git/gnunet/src/transport/gnunet-service-transport.h:173: warning: argument 'cls' from the argument list of GST_receive_callback has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport.h:173: warning: argument 'address' from the argument list of GST_receive_callback has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport.h:173: warning: argument 'session' from the argument list of GST_receive_callback has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport.h:173: warning: argument 'message' from the argument list of GST_receive_callback has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_ats.h:120: warning: argument 'address' from the argument list of GST_ats_add_address has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_ats.h:120: warning: argument 'prop' from the argument list of GST_ats_add_address has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_ats.c:759: warning: argument 'session' of command @param is not found in the argument list of GST_ats_update_delay(const struct GNUNET_HELLO_Address *address, struct GNUNET_TIME_Relative delay) -/home/william/Git/gnunet/src/transport/gnunet-service-transport_ats.h:161: warning: argument 'address' from the argument list of GST_ats_update_delay has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_ats.h:161: warning: argument 'delay' from the argument list of GST_ats_update_delay has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_hello.h:96: warning: argument 'address' from the argument list of GST_hello_test_address has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_hello.h:96: warning: argument 'sig' from the argument list of GST_hello_test_address has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_hello.h:96: warning: argument 'sig_expiration' from the argument list of GST_hello_test_address has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_manipulation.c:168: warning: argument 'message' of command @param is not found in the argument list of GST_manipulation_set_metric(const struct TrafficMetricMessage *tm) -/home/william/Git/gnunet/src/transport/gnunet-service-transport_manipulation.c:174: warning: The following parameter of GST_manipulation_set_metric(const struct TrafficMetricMessage *tm) is not documented: - parameter 'tm' -/home/william/Git/gnunet/src/transport/gnunet-service-transport_manipulation.c:346: warning: argument 'IN' of command @param is not found in the argument list of GST_manipulation_manipulate_metrics(const struct GNUNET_HELLO_Address *address, struct GNUNET_ATS_Session *session, struct GNUNET_ATS_Properties *prop) -/home/william/Git/gnunet/src/transport/gnunet-service-transport_manipulation.c:346: warning: argument 'OUT' of command @param is not found in the argument list of GST_manipulation_manipulate_metrics(const struct GNUNET_HELLO_Address *address, struct GNUNET_ATS_Session *session, struct GNUNET_ATS_Properties *prop) -/home/william/Git/gnunet/src/transport/gnunet-service-transport_manipulation.h:39: warning: argument 'message' of command @param is not found in the argument list of GST_manipulation_set_metric(const struct TrafficMetricMessage *tm) -/home/william/Git/gnunet/src/transport/gnunet-service-transport_manipulation.h:45: warning: The following parameter of GST_manipulation_set_metric(const struct TrafficMetricMessage *tm) is not documented: - parameter 'tm' -/home/william/Git/gnunet/src/transport/gnunet-service-transport_manipulation.h:59: warning: argument 'target' from the argument list of GST_manipulation_send has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_manipulation.h:59: warning: argument 'msg' from the argument list of GST_manipulation_send has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_manipulation.h:59: warning: argument 'msg_size' from the argument list of GST_manipulation_send has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_manipulation.h:59: warning: argument 'timeout' from the argument list of GST_manipulation_send has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_manipulation.h:59: warning: argument 'cont' from the argument list of GST_manipulation_send has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_manipulation.h:59: warning: argument 'cont_cls' from the argument list of GST_manipulation_send has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_manipulation.h:84: warning: argument 'IN' of command @param is not found in the argument list of GST_manipulation_manipulate_metrics(const struct GNUNET_HELLO_Address *address, struct GNUNET_ATS_Session *session, struct GNUNET_ATS_Properties *prop) -/home/william/Git/gnunet/src/transport/gnunet-service-transport_manipulation.h:84: warning: argument 'OUT' of command @param is not found in the argument list of GST_manipulation_manipulate_metrics(const struct GNUNET_HELLO_Address *address, struct GNUNET_ATS_Session *session, struct GNUNET_ATS_Properties *prop) -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.c:3030: warning: argument 'cls' from the argument list of master_task has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.c:2999: warning: argument 'message' of command @param is not found in the argument list of GST_neighbours_notify_data_sent(const struct GNUNET_HELLO_Address *address, struct GNUNET_ATS_Session *session, size_t size) -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.c:3007: warning: The following parameter of GST_neighbours_notify_data_sent(const struct GNUNET_HELLO_Address *address, struct GNUNET_ATS_Session *session, size_t size) is not documented: - parameter 'size' -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:251: warning: argument 'peer' of command @param is not found in the argument list of GST_neighbours_handle_session_syn_ack(const struct GNUNET_MessageHeader *message, const struct GNUNET_HELLO_Address *address, struct GNUNET_ATS_Session *session) -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:89: warning: argument 'target' from the argument list of GST_neighbours_send has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:89: warning: argument 'msg' from the argument list of GST_neighbours_send has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:89: warning: argument 'msg_size' from the argument list of GST_neighbours_send has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:89: warning: argument 'timeout' from the argument list of GST_neighbours_send has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:89: warning: argument 'cont' from the argument list of GST_neighbours_send has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:89: warning: argument 'cont_cls' from the argument list of GST_neighbours_send has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:89: warning: argument 'sender' from the argument list of GST_neighbours_calculate_receive_delay has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:89: warning: argument 'size' from the argument list of GST_neighbours_calculate_receive_delay has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:89: warning: argument 'do_forward' from the argument list of GST_neighbours_calculate_receive_delay has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:188: warning: argument 'peer' from the argument list of GST_neighbours_session_terminated has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:188: warning: argument 'session' from the argument list of GST_neighbours_session_terminated has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:207: warning: argument 'message' of command @param is not found in the argument list of GST_neighbours_notify_data_sent(const struct GNUNET_HELLO_Address *address, struct GNUNET_ATS_Session *session, size_t size) -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:215: warning: The following parameter of GST_neighbours_notify_data_sent(const struct GNUNET_HELLO_Address *address, struct GNUNET_ATS_Session *session, size_t size) is not documented: - parameter 'size' -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:230: warning: argument 'address' from the argument list of GST_neighbours_switch_to_address has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:230: warning: argument 'session' from the argument list of GST_neighbours_switch_to_address has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:230: warning: argument 'bandwidth_in' from the argument list of GST_neighbours_switch_to_address has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:230: warning: argument 'bandwidth_out' from the argument list of GST_neighbours_switch_to_address has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:247: warning: argument 'message' from the argument list of GST_neighbours_handle_session_syn has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:247: warning: argument 'peer' from the argument list of GST_neighbours_handle_session_syn has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:251: warning: argument 'peer' of command @param is not found in the argument list of GST_neighbours_handle_session_syn_ack(const struct GNUNET_MessageHeader *message, const struct GNUNET_HELLO_Address *address, struct GNUNET_ATS_Session *session) -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:261: warning: argument 'message' from the argument list of GST_neighbours_handle_session_syn_ack has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:261: warning: argument 'address' from the argument list of GST_neighbours_handle_session_syn_ack has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:261: warning: argument 'session' from the argument list of GST_neighbours_handle_session_syn_ack has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:279: warning: argument 'message' from the argument list of GST_neighbours_handle_session_ack has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:279: warning: argument 'address' from the argument list of GST_neighbours_handle_session_ack has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:279: warning: argument 'session' from the argument list of GST_neighbours_handle_session_ack has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:302: warning: argument 'peer' from the argument list of GST_neighbours_handle_quota_message has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:302: warning: argument 'msg' from the argument list of GST_neighbours_handle_quota_message has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_plugins.c:81: warning: argument 'session' of command @param is not found in the argument list of plugin_env_update_distance(void *cls, const struct GNUNET_HELLO_Address *address, uint32_t distance) -/home/william/Git/gnunet/src/transport/gnunet-service-transport_plugins.c:124: warning: argument 'address_type_cb' of command @param is not found in the argument list of GST_plugins_load(GNUNET_TRANSPORT_PluginReceiveCallback recv_cb, GNUNET_TRANSPORT_AddressNotification address_cb, GNUNET_TRANSPORT_SessionStart session_start_cb, GNUNET_TRANSPORT_SessionEnd session_end_cb) -/home/william/Git/gnunet/src/transport/gnunet-service-transport_plugins.c:124: warning: argument 'register_quota_cb' of command @param is not found in the argument list of GST_plugins_load(GNUNET_TRANSPORT_PluginReceiveCallback recv_cb, GNUNET_TRANSPORT_AddressNotification address_cb, GNUNET_TRANSPORT_SessionStart session_start_cb, GNUNET_TRANSPORT_SessionEnd session_end_cb) -/home/william/Git/gnunet/src/transport/gnunet-service-transport_plugins.c:124: warning: argument 'unregister_quota_cb' of command @param is not found in the argument list of GST_plugins_load(GNUNET_TRANSPORT_PluginReceiveCallback recv_cb, GNUNET_TRANSPORT_AddressNotification address_cb, GNUNET_TRANSPORT_SessionStart session_start_cb, GNUNET_TRANSPORT_SessionEnd session_end_cb) -/home/william/Git/gnunet/src/transport/gnunet-service-transport_plugins.c:124: warning: argument 'address_type_cb' of command @param is not found in the argument list of GST_plugins_load(GNUNET_TRANSPORT_PluginReceiveCallback recv_cb, GNUNET_TRANSPORT_AddressNotification address_cb, GNUNET_TRANSPORT_SessionStart session_start_cb, GNUNET_TRANSPORT_SessionEnd session_end_cb) -/home/william/Git/gnunet/src/transport/gnunet-service-transport_plugins.c:124: warning: argument 'metric_update_cb' of command @param is not found in the argument list of GST_plugins_load(GNUNET_TRANSPORT_PluginReceiveCallback recv_cb, GNUNET_TRANSPORT_AddressNotification address_cb, GNUNET_TRANSPORT_SessionStart session_start_cb, GNUNET_TRANSPORT_SessionEnd session_end_cb) -/home/william/Git/gnunet/src/transport/gnunet-service-transport_plugins.c:124: warning: argument 'address_type_cb' of command @param is not found in the argument list of GST_plugins_load(GNUNET_TRANSPORT_PluginReceiveCallback recv_cb, GNUNET_TRANSPORT_AddressNotification address_cb, GNUNET_TRANSPORT_SessionStart session_start_cb, GNUNET_TRANSPORT_SessionEnd session_end_cb) -/home/william/Git/gnunet/src/transport/gnunet-service-transport_plugins.h:52: warning: argument 'recv_cb' from the argument list of GST_plugins_load has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_plugins.h:52: warning: argument 'address_cb' from the argument list of GST_plugins_load has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_plugins.h:52: warning: argument 'session_start_cb' from the argument list of GST_plugins_load has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_plugins.h:52: warning: argument 'session_end_cb' from the argument list of GST_plugins_load has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_plugins.h:96: warning: argument 'address' from the argument list of GST_plugins_a2s has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_validation.h:74: warning: argument 'sender' from the argument list of GST_validation_handle_ping has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_validation.h:74: warning: argument 'hdr' from the argument list of GST_validation_handle_ping has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_validation.h:74: warning: argument 'sender_address' from the argument list of GST_validation_handle_ping has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_validation.h:74: warning: argument 'session' from the argument list of GST_validation_handle_ping has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_validation.h:141: warning: argument 'target' from the argument list of GST_validation_get_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_validation.h:141: warning: argument 'cb' from the argument list of GST_validation_get_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_validation.h:141: warning: argument 'cb_cls' from the argument list of GST_validation_get_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-transport-profiler.c:297: warning: argument 'size' of command @param is not found in the argument list of send_msg(void *cls) -/home/william/Git/gnunet/src/transport/gnunet-transport-profiler.c:297: warning: argument 'buf' of command @param is not found in the argument list of send_msg(void *cls) -/home/william/Git/gnunet/src/transport/plugin_transport_http_client.c:1292: warning: argument 'tc' of command @param is not found in the argument list of client_run(void *cls) -/home/william/Git/gnunet/src/transport/plugin_transport_http_client.c:1298: warning: argument 'cls' from the argument list of client_run has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_client.c:1702: warning: argument 's' from the argument list of client_connect_put has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:147: warning: argument 'cls' from the argument list of http_common_plugin_address_pretty_printer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:147: warning: argument 'type' from the argument list of http_common_plugin_address_pretty_printer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:147: warning: argument 'addr' from the argument list of http_common_plugin_address_pretty_printer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:147: warning: argument 'addrlen' from the argument list of http_common_plugin_address_pretty_printer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:147: warning: argument 'numeric' from the argument list of http_common_plugin_address_pretty_printer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:147: warning: argument 'timeout' from the argument list of http_common_plugin_address_pretty_printer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:147: warning: argument 'asc' from the argument list of http_common_plugin_address_pretty_printer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:147: warning: argument 'asc_cls' from the argument list of http_common_plugin_address_pretty_printer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:170: warning: argument 'plugin' from the argument list of http_common_plugin_address_to_string has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:170: warning: argument 'addr' from the argument list of http_common_plugin_address_to_string has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:170: warning: argument 'addrlen' from the argument list of http_common_plugin_address_to_string has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:188: warning: argument 'cls' from the argument list of http_common_plugin_string_to_address has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:188: warning: argument 'addr' from the argument list of http_common_plugin_string_to_address has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:188: warning: argument 'addrlen' from the argument list of http_common_plugin_string_to_address has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:188: warning: argument 'buf' from the argument list of http_common_plugin_string_to_address has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:188: warning: argument 'added' from the argument list of http_common_plugin_string_to_address has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:204: warning: argument 'protocol' from the argument list of http_common_address_from_socket has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:204: warning: argument 'addr' from the argument list of http_common_address_from_socket has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:204: warning: argument 'addrlen' from the argument list of http_common_address_from_socket has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:252: warning: argument 'addr1' from the argument list of http_common_cmp_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:252: warning: argument 'addrlen1' from the argument list of http_common_cmp_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:252: warning: argument 'addr2' from the argument list of http_common_cmp_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:252: warning: argument 'addrlen2' from the argument list of http_common_cmp_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_server.c:1741: warning: explicit link request to 'MHD_YES' could not be resolved -/home/william/Git/gnunet/src/transport/plugin_transport_http_server.c:1741: warning: explicit link request to 'MHD_NO' could not be resolved -/home/william/Git/gnunet/src/transport/plugin_transport_http_server.c:1995: warning: explicit link request to 'MHD_OPTION_NOTIFY_CONNECTION' could not be resolved -/home/william/Git/gnunet/src/transport/plugin_transport_http_server.c:2027: warning: explicit link request to 'MHD_YES' could not be resolved -/home/william/Git/gnunet/src/transport/plugin_transport_http_server.c:2027: warning: explicit link request to 'MHD_NO' could not be resolved -/home/william/Git/gnunet/src/transport/plugin_transport_http_server.c:2564: warning: argument 'in' of command @param is not found in the argument list of server_nat_port_map_callback(void *cls, void **app_ctx, int add_remove, enum GNUNET_NAT_AddressClass ac, const struct sockaddr *addr, socklen_t addrlen) -/home/william/Git/gnunet/src/transport/plugin_transport_http_server.c:2564: warning: argument 'out' of command @param is not found in the argument list of server_nat_port_map_callback(void *cls, void **app_ctx, int add_remove, enum GNUNET_NAT_AddressClass ac, const struct sockaddr *addr, socklen_t addrlen) -/home/william/Git/gnunet/src/transport/plugin_transport_tcp.c:293: warning: explicit link request to 'LEGACY_SERVICE_shutdown()' could not be resolved -/home/william/Git/gnunet/src/transport/plugin_transport_tcp.c:80: warning: argument 'srv' of command @param is not found in the argument list of LEGACY_SERVICE_stop(struct LEGACY_SERVICE_Context *sctx) -/home/william/Git/gnunet/src/transport/plugin_transport_tcp.c:315: warning: argument 'client' from the argument list of GNUNET_SERVER_client_disconnect has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_tcp.c:376: warning: argument 'mst' from the argument list of GNUNET_SERVER_mst_receive has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_tcp.c:376: warning: argument 'client_identity' from the argument list of GNUNET_SERVER_mst_receive has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_tcp.c:376: warning: argument 'buf' from the argument list of GNUNET_SERVER_mst_receive has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_tcp.c:376: warning: argument 'size' from the argument list of GNUNET_SERVER_mst_receive has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_tcp.c:376: warning: argument 'purge' from the argument list of GNUNET_SERVER_mst_receive has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_tcp.c:376: warning: argument 'one_shot' from the argument list of GNUNET_SERVER_mst_receive has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_tcp.c:442: warning: argument 'client' from the argument list of GNUNET_SERVER_notify_transmit_ready has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_tcp.c:442: warning: argument 'size' from the argument list of GNUNET_SERVER_notify_transmit_ready has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_tcp.c:442: warning: argument 'timeout' from the argument list of GNUNET_SERVER_notify_transmit_ready has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_tcp.c:442: warning: argument 'callback' from the argument list of GNUNET_SERVER_notify_transmit_ready has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_tcp.c:442: warning: argument 'callback_cls' from the argument list of GNUNET_SERVER_notify_transmit_ready has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_tcp.c:503: warning: argument 'server' from the argument list of GNUNET_SERVER_suspend has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_tcp.c:551: warning: argument 'server' from the argument list of GNUNET_SERVER_resume has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_tcp.c:1419: warning: argument 'in' of command @param is not found in the argument list of tcp_nat_port_map_callback(void *cls, void **app_ctx, int add_remove, enum GNUNET_NAT_AddressClass ac, const struct sockaddr *addr, socklen_t addrlen) -/home/william/Git/gnunet/src/transport/plugin_transport_tcp.c:1419: warning: argument 'out' of command @param is not found in the argument list of tcp_nat_port_map_callback(void *cls, void **app_ctx, int add_remove, enum GNUNET_NAT_AddressClass ac, const struct sockaddr *addr, socklen_t addrlen) -/home/william/Git/gnunet/src/transport/plugin_transport_udp.c:1255: warning: argument 'in' of command @param is not found in the argument list of udp_nat_port_map_callback(void *cls, void **app_ctx, int add_remove, enum GNUNET_NAT_AddressClass ac, const struct sockaddr *addr, socklen_t addrlen) -/home/william/Git/gnunet/src/transport/plugin_transport_udp.c:1255: warning: argument 'out' of command @param is not found in the argument list of udp_nat_port_map_callback(void *cls, void **app_ctx, int add_remove, enum GNUNET_NAT_AddressClass ac, const struct sockaddr *addr, socklen_t addrlen) -/home/william/Git/gnunet/src/transport/plugin_transport_udp_broadcasting.c:129: warning: argument 'client' of command @param is not found in the argument list of broadcast_mst_cb(void *cls, const struct GNUNET_MessageHeader *message) -/home/william/Git/gnunet/src/transport/tcp_connection_legacy.c:300: warning: explicit link request to 'GNUNET_connection_destroy()' could not be resolved -/home/william/Git/gnunet/src/transport/transport-testing-cmds.h:196: warning: argument 'm' of command @param is not found in the argument list of GNUNET_TRANSPORT_cmd_start_peer(const char *label, const char *system_label, uint32_t no, char *node_ip, struct GNUNET_MQ_MessageHandler *handlers, const char *cfgname, GNUNET_TRANSPORT_notify_connect_cb notify_connect, unsigned int broadcast) -/home/william/Git/gnunet/src/transport/transport-testing-cmds.h:196: warning: argument 'n' of command @param is not found in the argument list of GNUNET_TRANSPORT_cmd_start_peer(const char *label, const char *system_label, uint32_t no, char *node_ip, struct GNUNET_MQ_MessageHandler *handlers, const char *cfgname, GNUNET_TRANSPORT_notify_connect_cb notify_connect, unsigned int broadcast) -/home/william/Git/gnunet/src/transport/transport-testing-cmds.h:196: warning: argument 'local_m' of command @param is not found in the argument list of GNUNET_TRANSPORT_cmd_start_peer(const char *label, const char *system_label, uint32_t no, char *node_ip, struct GNUNET_MQ_MessageHandler *handlers, const char *cfgname, GNUNET_TRANSPORT_notify_connect_cb notify_connect, unsigned int broadcast) -/home/william/Git/gnunet/src/transport/transport-testing-cmds.h:32: warning: The following parameters of GNUNET_TRANSPORT_cmd_start_peer(const char *label, const char *system_label, uint32_t no, char *node_ip, struct GNUNET_MQ_MessageHandler *handlers, const char *cfgname, GNUNET_TRANSPORT_notify_connect_cb notify_connect, unsigned int broadcast) are not documented: - parameter 'no' - parameter 'node_ip' -/home/william/Git/gnunet/src/transport/transport-testing-cmds.h:225: warning: argument 'create_peer_label' of command @param is not found in the argument list of GNUNET_TRANSPORT_cmd_connect_peers(const char *label, const char *start_peer_label, const char *create_label, uint32_t num, struct GNUNET_TESTING_NetjailTopology *topology, unsigned int additional_connects) -/home/william/Git/gnunet/src/transport/transport-testing-cmds.h:225: warning: argument 'The' of command @param is not found in the argument list of GNUNET_TRANSPORT_cmd_connect_peers(const char *label, const char *start_peer_label, const char *create_label, uint32_t num, struct GNUNET_TESTING_NetjailTopology *topology, unsigned int additional_connects) -/home/william/Git/gnunet/src/transport/transport-testing-cmds.h:32: warning: The following parameters of GNUNET_TRANSPORT_cmd_connect_peers(const char *label, const char *start_peer_label, const char *create_label, uint32_t num, struct GNUNET_TESTING_NetjailTopology *topology, unsigned int additional_connects) are not documented: - parameter 'create_label' - parameter 'topology' -/home/william/Git/gnunet/src/transport/transport_api_cmd_send_simple.c:180: warning: argument 'create_peer_label' of command @param is not found in the argument list of GNUNET_TRANSPORT_cmd_send_simple(const char *label, const char *start_peer_label, const char *create_label, uint32_t num, struct GNUNET_TESTING_NetjailTopology *topology) -/home/william/Git/gnunet/src/transport/transport_api_cmd_send_simple.c:180: warning: argument 'The' of command @param is not found in the argument list of GNUNET_TRANSPORT_cmd_send_simple(const char *label, const char *start_peer_label, const char *create_label, uint32_t num, struct GNUNET_TESTING_NetjailTopology *topology) -/home/william/Git/gnunet/src/transport/transport_api_cmd_send_simple.c:180: warning: argument 'The' of command @param is not found in the argument list of GNUNET_TRANSPORT_cmd_send_simple(const char *label, const char *start_peer_label, const char *create_label, uint32_t num, struct GNUNET_TESTING_NetjailTopology *topology) -/home/william/Git/gnunet/src/transport/transport-testing-cmds.h:32: warning: argument 'label' from the argument list of GNUNET_TRANSPORT_cmd_send_simple has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing-cmds.h:32: warning: argument 'start_peer_label' from the argument list of GNUNET_TRANSPORT_cmd_send_simple has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing-cmds.h:32: warning: argument 'num' from the argument list of GNUNET_TRANSPORT_cmd_send_simple has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing-cmds.h:32: warning: The following parameters of GNUNET_TRANSPORT_cmd_send_simple(const char *label, const char *start_peer_label, const char *create_label, uint32_t num, struct GNUNET_TESTING_NetjailTopology *topology) are not documented: - parameter 'create_label' - parameter 'topology' -/home/william/Git/gnunet/src/transport/transport-testing-cmds.h:267: warning: argument 'The' of command @param is not found in the argument list of GNUNET_TRANSPORT_cmd_backchannel_check(const char *label, const char *start_peer_label, const char *create_label, uint32_t num, unsigned int node_n, unsigned int namespace_n, struct GNUNET_TESTING_NetjailTopology *topology) -/home/william/Git/gnunet/src/transport/transport-testing-cmds.h:32: warning: The following parameter of GNUNET_TRANSPORT_cmd_backchannel_check(const char *label, const char *start_peer_label, const char *create_label, uint32_t num, unsigned int node_n, unsigned int namespace_n, struct GNUNET_TESTING_NetjailTopology *topology) is not documented: - parameter 'topology' -/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:231: warning: argument 'msg' of command @param is not found in the argument list of handle_communicator_backchannel(void *cls, const struct GNUNET_TRANSPORT_CommunicatorBackchannel *bc_msg) -/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:238: warning: The following parameter of handle_communicator_backchannel(void *cls, const struct GNUNET_TRANSPORT_CommunicatorBackchannel *bc_msg) is not documented: - parameter 'bc_msg' -/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:282: warning: argument 'aam' of command @param is not found in the argument list of check_add_address(void *cls, const struct GNUNET_TRANSPORT_AddAddressMessage *msg) -/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:290: warning: The following parameter of check_add_address(void *cls, const struct GNUNET_TRANSPORT_AddAddressMessage *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:364: warning: argument 'msg' of command @param is not found in the argument list of handle_incoming_msg(void *cls, const struct GNUNET_TRANSPORT_IncomingMessage *inc_msg) -/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:371: warning: The following parameter of handle_incoming_msg(void *cls, const struct GNUNET_TRANSPORT_IncomingMessage *inc_msg) is not documented: - parameter 'inc_msg' -/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:684: warning: argument 'communicator_available' of command @param is not found in the argument list of transport_communicator_start(struct GNUNET_TRANSPORT_TESTING_TransportCommunicatorHandle *tc_h) -/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:684: warning: argument 'cfg' of command @param is not found in the argument list of transport_communicator_start(struct GNUNET_TRANSPORT_TESTING_TransportCommunicatorHandle *tc_h) -/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:692: warning: The following parameter of transport_communicator_start(struct GNUNET_TRANSPORT_TESTING_TransportCommunicatorHandle *tc_h) is not documented: - parameter 'tc_h' -/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:754: warning: argument 'cls' of command @param is not found in the argument list of shutdown_process(struct GNUNET_OS_Process *proc) -/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:760: warning: The following parameter of shutdown_process(struct GNUNET_OS_Process *proc) is not documented: - parameter 'proc' -/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:812: warning: argument 'cfgname' of command @param is not found in the argument list of communicator_start(struct GNUNET_TRANSPORT_TESTING_TransportCommunicatorHandle *tc_h, const char *binary_name) -/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:818: warning: The following parameters of communicator_start(struct GNUNET_TRANSPORT_TESTING_TransportCommunicatorHandle *tc_h, const char *binary_name) are not documented: - parameter 'tc_h' - parameter 'binary_name' -/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:1006: warning: argument 'cfg' of command @param is not found in the argument list of GNUNET_TRANSPORT_TESTING_transport_communicator_service_start(const char *service_name, const char *binary_name, const char *cfg_filename, const struct GNUNET_PeerIdentity *peer_id, GNUNET_TRANSPORT_TESTING_CommunicatorAvailableCallback communicator_available_cb, GNUNET_TRANSPORT_TESTING_AddAddressCallback add_address_cb, GNUNET_TRANSPORT_TESTING_QueueCreateReplyCallback queue_create_reply_cb, GNUNET_TRANSPORT_TESTING_AddQueueCallback add_queue_cb, GNUNET_TRANSPORT_TESTING_IncomingMessageCallback incoming_message_cb, GNUNET_TRANSPORT_TESTING_BackchannelCallback bc_cb, void *cb_cls) -/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:1013: warning: expected whitespace after \a command -/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:1019: warning: The following parameters of GNUNET_TRANSPORT_TESTING_transport_communicator_service_start(const char *service_name, const char *binary_name, const char *cfg_filename, const struct GNUNET_PeerIdentity *peer_id, GNUNET_TRANSPORT_TESTING_CommunicatorAvailableCallback communicator_available_cb, GNUNET_TRANSPORT_TESTING_AddAddressCallback add_address_cb, GNUNET_TRANSPORT_TESTING_QueueCreateReplyCallback queue_create_reply_cb, GNUNET_TRANSPORT_TESTING_AddQueueCallback add_queue_cb, GNUNET_TRANSPORT_TESTING_IncomingMessageCallback incoming_message_cb, GNUNET_TRANSPORT_TESTING_BackchannelCallback bc_cb, void *cb_cls) are not documented: - parameter 'binary_name' - parameter 'cfg_filename' - parameter 'peer_id' - parameter 'queue_create_reply_cb' - parameter 'add_queue_cb' - parameter 'incoming_message_cb' - parameter 'bc_cb' -/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:1149: warning: argument 'tc_queue' of command @param is not found in the argument list of GNUNET_TRANSPORT_TESTING_transport_communicator_send(struct GNUNET_TRANSPORT_TESTING_TransportCommunicatorHandle *tc_h, GNUNET_SCHEDULER_TaskCallback cont, void *cont_cls, const void *payload, size_t payload_size) -/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:1159: warning: The following parameter of GNUNET_TRANSPORT_TESTING_transport_communicator_send(struct GNUNET_TRANSPORT_TESTING_TransportCommunicatorHandle *tc_h, GNUNET_SCHEDULER_TaskCallback cont, void *cont_cls, const void *payload, size_t payload_size) is not documented: - parameter 'tc_h' -/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:1006: warning: argument 'cfg' of command @param is not found in the argument list of GNUNET_TRANSPORT_TESTING_transport_communicator_service_start(const char *service_name, const char *binary_name, const char *cfg_filename, const struct GNUNET_PeerIdentity *peer_id, GNUNET_TRANSPORT_TESTING_CommunicatorAvailableCallback communicator_available_cb, GNUNET_TRANSPORT_TESTING_AddAddressCallback add_address_cb, GNUNET_TRANSPORT_TESTING_QueueCreateReplyCallback queue_create_reply_cb, GNUNET_TRANSPORT_TESTING_AddQueueCallback add_queue_cb, GNUNET_TRANSPORT_TESTING_IncomingMessageCallback incoming_message_cb, GNUNET_TRANSPORT_TESTING_BackchannelCallback bc_cb, void *cb_cls) -/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:1006: warning: argument 'communicator_available' of command @param is not found in the argument list of GNUNET_TRANSPORT_TESTING_transport_communicator_service_start(const char *service_name, const char *binary_name, const char *cfg_filename, const struct GNUNET_PeerIdentity *peer_id, GNUNET_TRANSPORT_TESTING_CommunicatorAvailableCallback communicator_available_cb, GNUNET_TRANSPORT_TESTING_AddAddressCallback add_address_cb, GNUNET_TRANSPORT_TESTING_QueueCreateReplyCallback queue_create_reply_cb, GNUNET_TRANSPORT_TESTING_AddQueueCallback add_queue_cb, GNUNET_TRANSPORT_TESTING_IncomingMessageCallback incoming_message_cb, GNUNET_TRANSPORT_TESTING_BackchannelCallback bc_cb, void *cb_cls) -/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:1006: warning: argument 'cfg' of command @param is not found in the argument list of GNUNET_TRANSPORT_TESTING_transport_communicator_service_start(const char *service_name, const char *binary_name, const char *cfg_filename, const struct GNUNET_PeerIdentity *peer_id, GNUNET_TRANSPORT_TESTING_CommunicatorAvailableCallback communicator_available_cb, GNUNET_TRANSPORT_TESTING_AddAddressCallback add_address_cb, GNUNET_TRANSPORT_TESTING_QueueCreateReplyCallback queue_create_reply_cb, GNUNET_TRANSPORT_TESTING_AddQueueCallback add_queue_cb, GNUNET_TRANSPORT_TESTING_IncomingMessageCallback incoming_message_cb, GNUNET_TRANSPORT_TESTING_BackchannelCallback bc_cb, void *cb_cls) -/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:1025: warning: expected whitespace after \a command -/home/william/Git/gnunet/src/transport/transport-testing-communicator.h:306: warning: argument 'service_name' from the argument list of GNUNET_TRANSPORT_TESTING_transport_communicator_service_start has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing-communicator.h:306: warning: argument 'add_address_cb' from the argument list of GNUNET_TRANSPORT_TESTING_transport_communicator_service_start has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing-communicator.h:306: warning: argument 'cb_cls' from the argument list of GNUNET_TRANSPORT_TESTING_transport_communicator_service_start has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing-communicator.h:306: warning: The following parameters of GNUNET_TRANSPORT_TESTING_transport_communicator_service_start(const char *service_name, const char *binary_name, const char *cfg_filename, const struct GNUNET_PeerIdentity *peer_id, GNUNET_TRANSPORT_TESTING_CommunicatorAvailableCallback communicator_available_cb, GNUNET_TRANSPORT_TESTING_AddAddressCallback add_address_cb, GNUNET_TRANSPORT_TESTING_QueueCreateReplyCallback queue_create_reply_cb, GNUNET_TRANSPORT_TESTING_AddQueueCallback add_queue_cb, GNUNET_TRANSPORT_TESTING_IncomingMessageCallback incoming_message_cb, GNUNET_TRANSPORT_TESTING_BackchannelCallback bc_cb, void *cb_cls) are not documented: - parameter 'binary_name' - parameter 'cfg_filename' - parameter 'peer_id' - parameter 'bc_cb' -/home/william/Git/gnunet/src/transport/transport-testing-communicator.h:343: warning: argument 'tc_queue' of command @param is not found in the argument list of GNUNET_TRANSPORT_TESTING_transport_communicator_send(struct GNUNET_TRANSPORT_TESTING_TransportCommunicatorHandle *tc_h, GNUNET_SCHEDULER_TaskCallback cont, void *cont_cls, const void *payload, size_t payload_size) -/home/william/Git/gnunet/src/transport/transport-testing-communicator.h:353: warning: The following parameter of GNUNET_TRANSPORT_TESTING_transport_communicator_send(struct GNUNET_TRANSPORT_TESTING_TransportCommunicatorHandle *tc_h, GNUNET_SCHEDULER_TaskCallback cont, void *cont_cls, const void *payload, size_t payload_size) is not documented: - parameter 'tc_h' -/home/william/Git/gnunet/src/transport/transport-testing-main.c:255: warning: Found unknown command '\my_nc' -/home/william/Git/gnunet/src/transport/transport-testing-main2.c:255: warning: Found unknown command '\my_nc' -/home/william/Git/gnunet/src/transport/transport-testing.h:328: warning: argument 'tth' of command @param is not found in the argument list of GNUNET_TRANSPORT_TESTING_connect_peers(struct GNUNET_TRANSPORT_TESTING_PeerContext *p1, struct GNUNET_TRANSPORT_TESTING_PeerContext *p2, GNUNET_SCHEDULER_TaskCallback cb, void *cls) -/home/william/Git/gnunet/src/transport/transport-testing.h:348: warning: argument 'tth' of command @param is not found in the argument list of GNUNET_TRANSPORT_TESTING_connect_peers_cancel(struct GNUNET_TRANSPORT_TESTING_ConnectRequest *cc) -/home/william/Git/gnunet/src/transport/transport-testing.h:291: warning: argument 'tth' from the argument list of GNUNET_TRANSPORT_TESTING_start_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:291: warning: argument 'cfgname' from the argument list of GNUNET_TRANSPORT_TESTING_start_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:291: warning: argument 'peer_id' from the argument list of GNUNET_TRANSPORT_TESTING_start_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:291: warning: argument 'handlers' from the argument list of GNUNET_TRANSPORT_TESTING_start_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:291: warning: argument 'nc' from the argument list of GNUNET_TRANSPORT_TESTING_start_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:291: warning: argument 'nd' from the argument list of GNUNET_TRANSPORT_TESTING_start_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:291: warning: argument 'cb_cls' from the argument list of GNUNET_TRANSPORT_TESTING_start_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:291: warning: argument 'start_cb' from the argument list of GNUNET_TRANSPORT_TESTING_start_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:291: warning: argument 'start_cb_cls' from the argument list of GNUNET_TRANSPORT_TESTING_start_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:322: warning: argument 'p' from the argument list of GNUNET_TRANSPORT_TESTING_restart_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:322: warning: argument 'restart_cb' from the argument list of GNUNET_TRANSPORT_TESTING_restart_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:322: warning: argument 'restart_cb_cls' from the argument list of GNUNET_TRANSPORT_TESTING_restart_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:328: warning: argument 'tth' of command @param is not found in the argument list of GNUNET_TRANSPORT_TESTING_connect_peers(struct GNUNET_TRANSPORT_TESTING_PeerContext *p1, struct GNUNET_TRANSPORT_TESTING_PeerContext *p2, GNUNET_SCHEDULER_TaskCallback cb, void *cls) -/home/william/Git/gnunet/src/transport/transport-testing.h:341: warning: argument 'p1' from the argument list of GNUNET_TRANSPORT_TESTING_connect_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:341: warning: argument 'p2' from the argument list of GNUNET_TRANSPORT_TESTING_connect_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:341: warning: argument 'cb' from the argument list of GNUNET_TRANSPORT_TESTING_connect_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:341: warning: argument 'cls' from the argument list of GNUNET_TRANSPORT_TESTING_connect_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:348: warning: argument 'tth' of command @param is not found in the argument list of GNUNET_TRANSPORT_TESTING_connect_peers_cancel(struct GNUNET_TRANSPORT_TESTING_ConnectRequest *cc) -/home/william/Git/gnunet/src/transport/transport-testing.h:356: warning: argument 'cc' from the argument list of GNUNET_TRANSPORT_TESTING_connect_peers_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:814: warning: argument 'cls' from the argument list of GNUNET_TRANSPORT_TESTING_simple_send has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:832: warning: argument 'cls' from the argument list of GNUNET_TRANSPORT_TESTING_large_send has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:877: warning: argument 'file' from the argument list of GNUNET_TRANSPORT_TESTING_get_test_name has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:889: warning: argument 'file' from the argument list of GNUNET_TRANSPORT_TESTING_get_config_name has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:889: warning: argument 'count' from the argument list of GNUNET_TRANSPORT_TESTING_get_config_name has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:899: warning: argument 'file' from the argument list of GNUNET_TRANSPORT_TESTING_get_test_plugin_name has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:899: warning: argument 'test' from the argument list of GNUNET_TRANSPORT_TESTING_get_test_plugin_name has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:911: warning: argument 'file' from the argument list of GNUNET_TRANSPORT_TESTING_get_test_source_name has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.c:760: warning: argument 'cls' from the argument list of offer_hello has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:328: warning: argument 'tth' of command @param is not found in the argument list of GNUNET_TRANSPORT_TESTING_connect_peers(struct GNUNET_TRANSPORT_TESTING_PeerContext *p1, struct GNUNET_TRANSPORT_TESTING_PeerContext *p2, GNUNET_SCHEDULER_TaskCallback cb, void *cls) -/home/william/Git/gnunet/src/transport/transport-testing.h:348: warning: argument 'tth' of command @param is not found in the argument list of GNUNET_TRANSPORT_TESTING_connect_peers_cancel(struct GNUNET_TRANSPORT_TESTING_ConnectRequest *cc) -/home/william/Git/gnunet/src/transport/transport-testing2.h:301: warning: argument 'tth' from the argument list of GNUNET_TRANSPORT_TESTING_start_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.h:301: warning: argument 'cfgname' from the argument list of GNUNET_TRANSPORT_TESTING_start_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.h:301: warning: argument 'peer_id' from the argument list of GNUNET_TRANSPORT_TESTING_start_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.h:301: warning: argument 'handlers' from the argument list of GNUNET_TRANSPORT_TESTING_start_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.h:301: warning: argument 'nc' from the argument list of GNUNET_TRANSPORT_TESTING_start_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.h:301: warning: argument 'nd' from the argument list of GNUNET_TRANSPORT_TESTING_start_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.h:301: warning: argument 'cb_cls' from the argument list of GNUNET_TRANSPORT_TESTING_start_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.h:301: warning: argument 'start_cb' from the argument list of GNUNET_TRANSPORT_TESTING_start_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.h:301: warning: argument 'start_cb_cls' from the argument list of GNUNET_TRANSPORT_TESTING_start_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.h:332: warning: argument 'p' from the argument list of GNUNET_TRANSPORT_TESTING_restart_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.h:332: warning: argument 'restart_cb' from the argument list of GNUNET_TRANSPORT_TESTING_restart_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.h:332: warning: argument 'restart_cb_cls' from the argument list of GNUNET_TRANSPORT_TESTING_restart_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:328: warning: argument 'tth' of command @param is not found in the argument list of GNUNET_TRANSPORT_TESTING_connect_peers(struct GNUNET_TRANSPORT_TESTING_PeerContext *p1, struct GNUNET_TRANSPORT_TESTING_PeerContext *p2, GNUNET_SCHEDULER_TaskCallback cb, void *cls) -/home/william/Git/gnunet/src/transport/transport-testing2.h:351: warning: argument 'p1' from the argument list of GNUNET_TRANSPORT_TESTING_connect_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.h:351: warning: argument 'p2' from the argument list of GNUNET_TRANSPORT_TESTING_connect_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.h:351: warning: argument 'cb' from the argument list of GNUNET_TRANSPORT_TESTING_connect_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.h:351: warning: argument 'cls' from the argument list of GNUNET_TRANSPORT_TESTING_connect_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:348: warning: argument 'tth' of command @param is not found in the argument list of GNUNET_TRANSPORT_TESTING_connect_peers_cancel(struct GNUNET_TRANSPORT_TESTING_ConnectRequest *cc) -/home/william/Git/gnunet/src/transport/transport-testing2.h:366: warning: argument 'cc' from the argument list of GNUNET_TRANSPORT_TESTING_connect_peers_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.h:824: warning: argument 'cls' from the argument list of GNUNET_TRANSPORT_TESTING_simple_send has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.h:842: warning: argument 'cls' from the argument list of GNUNET_TRANSPORT_TESTING_large_send has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.h:887: warning: argument 'file' from the argument list of GNUNET_TRANSPORT_TESTING_get_test_name has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.h:899: warning: argument 'file' from the argument list of GNUNET_TRANSPORT_TESTING_get_config_name has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.h:899: warning: argument 'count' from the argument list of GNUNET_TRANSPORT_TESTING_get_config_name has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.h:909: warning: argument 'file' from the argument list of GNUNET_TRANSPORT_TESTING_get_test_plugin_name has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.h:909: warning: argument 'test' from the argument list of GNUNET_TRANSPORT_TESTING_get_test_plugin_name has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.h:921: warning: argument 'file' from the argument list of GNUNET_TRANSPORT_TESTING_get_test_source_name has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport_api2_monitor.c:81: warning: argument 'ai' of command @param is not found in the argument list of send_start_monitor(struct GNUNET_TRANSPORT_MonitorContext *mc) -/home/william/Git/gnunet/src/transport/transport_api2_monitor.c:86: warning: The following parameter of send_start_monitor(struct GNUNET_TRANSPORT_MonitorContext *mc) is not documented: - parameter 'mc' -/home/william/Git/gnunet/src/transport/transport_api_address_to_string.c:57: warning: argument 'msg' of command @param is not found in the argument list of check_reply(void *cls, const struct AddressToStringResultMessage *atsm) -/home/william/Git/gnunet/src/transport/transport_api_address_to_string.c:63: warning: The following parameter of check_reply(void *cls, const struct AddressToStringResultMessage *atsm) is not documented: - parameter 'atsm' -/home/william/Git/gnunet/src/transport/transport_api_address_to_string.c:98: warning: argument 'msg' of command @param is not found in the argument list of handle_reply(void *cls, const struct AddressToStringResultMessage *atsm) -/home/william/Git/gnunet/src/transport/transport_api_address_to_string.c:103: warning: The following parameter of handle_reply(void *cls, const struct AddressToStringResultMessage *atsm) is not documented: - parameter 'atsm' -/home/william/Git/gnunet/src/transport/transport_api_cmd_backchannel_check.c:562: warning: argument 'The' of command @param is not found in the argument list of GNUNET_TRANSPORT_cmd_backchannel_check(const char *label, const char *start_peer_label, const char *create_label, uint32_t num, unsigned int node_n, unsigned int namespace_n, struct GNUNET_TESTING_NetjailTopology *topology) -/home/william/Git/gnunet/src/transport/transport_api_cmd_backchannel_check.c:552: warning: The following parameter of GNUNET_TRANSPORT_cmd_backchannel_check(const char *label, const char *start_peer_label, const char *create_label, uint32_t num, unsigned int node_n, unsigned int namespace_n, struct GNUNET_TESTING_NetjailTopology *topology) is not documented: - parameter 'topology' -/home/william/Git/gnunet/src/transport/transport_api_cmd_connecting_peers.c:223: warning: argument 'create_peer_label' of command @param is not found in the argument list of GNUNET_TRANSPORT_cmd_connect_peers(const char *label, const char *start_peer_label, const char *create_label, uint32_t num, struct GNUNET_TESTING_NetjailTopology *topology, unsigned int additional_connects) -/home/william/Git/gnunet/src/transport/transport_api_cmd_connecting_peers.c:223: warning: argument 'The' of command @param is not found in the argument list of GNUNET_TRANSPORT_cmd_connect_peers(const char *label, const char *start_peer_label, const char *create_label, uint32_t num, struct GNUNET_TESTING_NetjailTopology *topology, unsigned int additional_connects) -/home/william/Git/gnunet/src/transport/transport_api_cmd_connecting_peers.c:193: warning: The following parameters of GNUNET_TRANSPORT_cmd_connect_peers(const char *label, const char *start_peer_label, const char *create_label, uint32_t num, struct GNUNET_TESTING_NetjailTopology *topology, unsigned int additional_connects) are not documented: - parameter 'create_label' - parameter 'topology' -/home/william/Git/gnunet/src/transport/transport_api_cmd_send_simple.c:180: warning: argument 'The' of command @param is not found in the argument list of GNUNET_TRANSPORT_cmd_send_simple(const char *label, const char *start_peer_label, const char *create_label, uint32_t num, struct GNUNET_TESTING_NetjailTopology *topology) -/home/william/Git/gnunet/src/transport/transport_api_cmd_send_simple.c:113: warning: argument 'start_peer_label' from the argument list of GNUNET_TRANSPORT_cmd_send_simple has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport_api_cmd_send_simple.c:113: warning: The following parameters of GNUNET_TRANSPORT_cmd_send_simple(const char *label, const char *start_peer_label, const char *create_label, uint32_t num, struct GNUNET_TESTING_NetjailTopology *topology) are not documented: - parameter 'create_label' - parameter 'topology' -/home/william/Git/gnunet/src/transport/transport_api_cmd_start_peer.c:433: warning: argument 'm' of command @param is not found in the argument list of GNUNET_TRANSPORT_cmd_start_peer(const char *label, const char *system_label, uint32_t no, char *node_ip, struct GNUNET_MQ_MessageHandler *handlers, const char *cfgname, GNUNET_TRANSPORT_notify_connect_cb notify_connect, unsigned int broadcast) -/home/william/Git/gnunet/src/transport/transport_api_cmd_start_peer.c:433: warning: argument 'n' of command @param is not found in the argument list of GNUNET_TRANSPORT_cmd_start_peer(const char *label, const char *system_label, uint32_t no, char *node_ip, struct GNUNET_MQ_MessageHandler *handlers, const char *cfgname, GNUNET_TRANSPORT_notify_connect_cb notify_connect, unsigned int broadcast) -/home/william/Git/gnunet/src/transport/transport_api_cmd_start_peer.c:433: warning: argument 'local_m' of command @param is not found in the argument list of GNUNET_TRANSPORT_cmd_start_peer(const char *label, const char *system_label, uint32_t no, char *node_ip, struct GNUNET_MQ_MessageHandler *handlers, const char *cfgname, GNUNET_TRANSPORT_notify_connect_cb notify_connect, unsigned int broadcast) -/home/william/Git/gnunet/src/transport/transport_api_cmd_start_peer.c:397: warning: The following parameters of GNUNET_TRANSPORT_cmd_start_peer(const char *label, const char *system_label, uint32_t no, char *node_ip, struct GNUNET_MQ_MessageHandler *handlers, const char *cfgname, GNUNET_TRANSPORT_notify_connect_cb notify_connect, unsigned int broadcast) are not documented: - parameter 'no' - parameter 'node_ip' -/home/william/Git/gnunet/src/transport/transport_api_core.c:714: warning: argument 'msg' of command @param is not found in the argument list of handle_set_quota(void *cls, const struct QuotaSetMessage *qm) -/home/william/Git/gnunet/src/transport/transport_api_core.c:719: warning: The following parameter of handle_set_quota(void *cls, const struct QuotaSetMessage *qm) is not documented: - parameter 'qm' -/home/william/Git/gnunet/src/transport/transport_api_monitor_peers.c:279: warning: argument 'msg' of command @param is not found in the argument list of handle_response(void *cls, const struct PeerIterateResponseMessage *pir_msg) -/home/william/Git/gnunet/src/transport/transport_api_monitor_peers.c:284: warning: The following parameter of handle_response(void *cls, const struct PeerIterateResponseMessage *pir_msg) is not documented: - parameter 'pir_msg' -/home/william/Git/gnunet/src/transport/transport_api_monitor_plugins.c:213: warning: Found unknown command '\paramm' -/home/william/Git/gnunet/src/transport/transport_api_monitor_plugins.c:214: warning: explicit link request to 'GNUNET_Ok' could not be resolved -/home/william/Git/gnunet/src/transport/transport_api_monitor_plugins.c:218: warning: The following parameter of check_event(void *cls, const struct TransportPluginMonitorMessage *tpmm) is not documented: - parameter 'tpmm' -/home/william/Git/gnunet/src/transport/transport_api_monitor_plugins.c:245: warning: Found unknown command '\paramm' -/home/william/Git/gnunet/src/transport/transport_api_monitor_plugins.c:249: warning: The following parameter of handle_event(void *cls, const struct TransportPluginMonitorMessage *tpmm) is not documented: - parameter 'tpmm' -/home/william/Git/gnunet/src/util/container_multihashmap32.c:288: warning: argument 'bme' of command @param is not found in the argument list of update_next_cache(struct GNUNET_CONTAINER_MultiHashMap32 *map, const struct MapEntry *me) -/home/william/Git/gnunet/src/util/container_multihashmap32.c:294: warning: The following parameter of update_next_cache(struct GNUNET_CONTAINER_MultiHashMap32 *map, const struct MapEntry *me) is not documented: - parameter 'me' -/home/william/Git/gnunet/src/util/crypto_cs.c:141: warning: argument 'hash' of command @param is not found in the argument list of cs_full_domain_hash(const struct GNUNET_CRYPTO_CsRPublic *r_dash, const void *msg, size_t msg_len, const struct GNUNET_CRYPTO_CsPublicKey *pub, struct GNUNET_CRYPTO_CsC *c) -/home/william/Git/gnunet/src/util/crypto_cs.c:149: warning: The following parameters of cs_full_domain_hash(const struct GNUNET_CRYPTO_CsRPublic *r_dash, const void *msg, size_t msg_len, const struct GNUNET_CRYPTO_CsPublicKey *pub, struct GNUNET_CRYPTO_CsC *c) are not documented: - parameter 'r_dash' - parameter 'msg' - parameter 'msg_len' -/home/william/Git/gnunet/src/util/crypto_rsa.c:513: warning: argument 'len' of command @param is not found in the argument list of rsa_blinding_key_derive(const struct GNUNET_CRYPTO_RsaPublicKey *pkey, const struct GNUNET_CRYPTO_RsaBlindingKeySecret *bks) -/home/william/Git/gnunet/src/util/crypto_rsa.c:521: warning: The following parameter of rsa_blinding_key_derive(const struct GNUNET_CRYPTO_RsaPublicKey *pkey, const struct GNUNET_CRYPTO_RsaBlindingKeySecret *bks) is not documented: - parameter 'pkey' -/home/william/Git/gnunet/src/util/crypto_rsa.c:708: warning: argument 'newly' of command @param is not found in the argument list of numeric_mpi_alloc_n_print(gcry_mpi_t v, char **buffer) -/home/william/Git/gnunet/src/util/crypto_rsa.c:716: warning: The following parameter of numeric_mpi_alloc_n_print(gcry_mpi_t v, char **buffer) is not documented: - parameter 'buffer' -/home/william/Git/gnunet/src/util/crypto_rsa.c:741: warning: argument 'rsize' of command @param is not found in the argument list of rsa_full_domain_hash(const struct GNUNET_CRYPTO_RsaPublicKey *pkey, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/util/dnsstub.c:430: warning: argument 'cls' from the argument list of read_response has multiple @param documentation sections -/home/william/Git/gnunet/src/util/gnunet-crypto-tvg.c:134: warning: argument 'data' of command @param is not found in the argument list of uint2j(json_t *vec, const char *label, unsigned int num) -/home/william/Git/gnunet/src/util/gnunet-crypto-tvg.c:134: warning: argument 'size' of command @param is not found in the argument list of uint2j(json_t *vec, const char *label, unsigned int num) -/home/william/Git/gnunet/src/util/gnunet-crypto-tvg.c:141: warning: The following parameter of uint2j(json_t *vec, const char *label, unsigned int num) is not documented: - parameter 'num' -/home/william/Git/gnunet/src/util/gnunet-scrypt.c:82: warning: argument 'tc' of command @param is not found in the argument list of find_proof(void *cls) -/home/william/Git/gnunet/src/util/gnunet-scrypt.c:158: warning: argument 'cfg' of command @param is not found in the argument list of run(void *cls, char *const *args, const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *config) -/home/william/Git/gnunet/src/util/gnunet-scrypt.c:165: warning: The following parameter of run(void *cls, char *const *args, const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *config) is not documented: - parameter 'config' -/home/william/Git/gnunet/src/util/gnunet-service-resolver.c:313: warning: argument 'out' of command @param is not found in the argument list of lookup_dns_servers(char ***server_addrs) -/home/william/Git/gnunet/src/util/gnunet-service-resolver.c:314: warning: Found unknown command '\server_addrs' -/home/william/Git/gnunet/src/util/gnunet-service-resolver.c:668: warning: argument 'out' of command @param is not found in the argument list of pack(const char *hostname, uint16_t type, uint16_t dns_id, char **packet_buf, size_t *packet_size) -/home/william/Git/gnunet/src/util/gnunet-service-resolver.c:668: warning: argument 'out' of command @param is not found in the argument list of pack(const char *hostname, uint16_t type, uint16_t dns_id, char **packet_buf, size_t *packet_size) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:1031: warning: explicit link request to 'gnunet_mq_impl_send_continue' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:131: warning: explicit link request to 'GNUNET_MQ_extract_nexted_mh' could not be resolved -/home/william/Git/gnunet/src/util/scheduler.c:878: warning: argument 'driver_func' of command @param is not found in the argument list of driver_add_multiple(struct GNUNET_SCHEDULER_Task *t) -/home/william/Git/gnunet/src/util/scheduler.c:878: warning: argument 'if_not_ready' of command @param is not found in the argument list of driver_add_multiple(struct GNUNET_SCHEDULER_Task *t) -/home/william/Git/gnunet/src/util/scheduler.c:878: warning: argument 'et' of command @param is not found in the argument list of driver_add_multiple(struct GNUNET_SCHEDULER_Task *t) -/home/william/Git/gnunet/src/util/scheduler.c:1404: warning: argument 'rfd' of command @param is not found in the argument list of add_without_sets(struct GNUNET_TIME_Relative delay, enum GNUNET_SCHEDULER_Priority priority, const struct GNUNET_NETWORK_Handle *read_nh, const struct GNUNET_NETWORK_Handle *write_nh, const struct GNUNET_DISK_FileHandle *read_fh, const struct GNUNET_DISK_FileHandle *write_fh, GNUNET_SCHEDULER_TaskCallback task, void *task_cls) -/home/william/Git/gnunet/src/util/scheduler.c:1404: warning: argument 'wfd' of command @param is not found in the argument list of add_without_sets(struct GNUNET_TIME_Relative delay, enum GNUNET_SCHEDULER_Priority priority, const struct GNUNET_NETWORK_Handle *read_nh, const struct GNUNET_NETWORK_Handle *write_nh, const struct GNUNET_DISK_FileHandle *read_fh, const struct GNUNET_DISK_FileHandle *write_fh, GNUNET_SCHEDULER_TaskCallback task, void *task_cls) -/home/william/Git/gnunet/src/util/scheduler.c:1430: warning: The following parameters of add_without_sets(struct GNUNET_TIME_Relative delay, enum GNUNET_SCHEDULER_Priority priority, const struct GNUNET_NETWORK_Handle *read_nh, const struct GNUNET_NETWORK_Handle *write_nh, const struct GNUNET_DISK_FileHandle *read_fh, const struct GNUNET_DISK_FileHandle *write_fh, GNUNET_SCHEDULER_TaskCallback task, void *task_cls) are not documented: - parameter 'read_nh' - parameter 'write_nh' - parameter 'read_fh' - parameter 'write_fh' -/home/william/Git/gnunet/src/util/service.c:741: warning: argument 'sock' of command @param is not found in the argument list of start_client(struct GNUNET_SERVICE_Handle *sh, struct GNUNET_NETWORK_Handle *csock) -/home/william/Git/gnunet/src/util/service.c:749: warning: The following parameter of start_client(struct GNUNET_SERVICE_Handle *sh, struct GNUNET_NETWORK_Handle *csock) is not documented: - parameter 'csock' -/home/william/Git/gnunet/src/util/socks.c:347: warning: argument 'client' of command @param is not found in the argument list of register_reciever(struct GNUNET_SOCKS_Handshake *ih, int want) -/home/william/Git/gnunet/src/util/socks.c:347: warning: argument 'handler' of command @param is not found in the argument list of register_reciever(struct GNUNET_SOCKS_Handshake *ih, int want) -/home/william/Git/gnunet/src/util/socks.c:347: warning: argument 'handler_cls' of command @param is not found in the argument list of register_reciever(struct GNUNET_SOCKS_Handshake *ih, int want) -/home/william/Git/gnunet/src/util/socks.c:353: warning: The following parameters of register_reciever(struct GNUNET_SOCKS_Handshake *ih, int want) are not documented: - parameter 'ih' - parameter 'want' -/home/william/Git/gnunet/src/util/socks.c:197: warning: argument 'c' of command @param is not found in the argument list of SOCKS5_handshake_done(struct GNUNET_SOCKS_Handshake *ih) -/home/william/Git/gnunet/src/util/socks.c:203: warning: documented empty return type of SOCKS5_handshake_done -/home/william/Git/gnunet/src/util/socks.c:323: warning: argument 'client' of command @param is not found in the argument list of receiver(void *cls, const void *buf, size_t available, const struct sockaddr *addr, socklen_t addrlen, int errCode) -/home/william/Git/gnunet/src/util/socks.c:323: warning: argument 'handler' of command @param is not found in the argument list of receiver(void *cls, const void *buf, size_t available, const struct sockaddr *addr, socklen_t addrlen, int errCode) -/home/william/Git/gnunet/src/util/socks.c:323: warning: argument 'handler_cls' of command @param is not found in the argument list of receiver(void *cls, const void *buf, size_t available, const struct sockaddr *addr, socklen_t addrlen, int errCode) -/home/william/Git/gnunet/src/util/socks.c:329: warning: The following parameters of receiver(void *cls, const void *buf, size_t available, const struct sockaddr *addr, socklen_t addrlen, int errCode) are not documented: - parameter 'cls' - parameter 'buf' - parameter 'available' - parameter 'addr' - parameter 'addrlen' - parameter 'errCode' -/home/william/Git/gnunet/src/util/socks.c:516: warning: argument 'hostname' of command @param is not found in the argument list of GNUNET_SOCKS_set_handshake_destination(struct GNUNET_SOCKS_Handshake *ih, const char *host, uint16_t port) -/home/william/Git/gnunet/src/util/socks.c:523: warning: The following parameter of GNUNET_SOCKS_set_handshake_destination(struct GNUNET_SOCKS_Handshake *ih, const char *host, uint16_t port) is not documented: - parameter 'host' -/home/william/Git/gnunet/src/util/speedup.h:37: warning: argument 'cfg' from the argument list of GNUNET_SPEEDUP_start_ has multiple @param documentation sections -/home/william/Git/gnunet/src/vpn/gnunet-service-vpn.c:695: warning: argument 'message' of command @param is not found in the argument list of check_icmp_back(void *cls, const struct GNUNET_EXIT_IcmpToVPNMessage *i2v) -/home/william/Git/gnunet/src/vpn/gnunet-service-vpn.c:704: warning: The following parameter of check_icmp_back(void *cls, const struct GNUNET_EXIT_IcmpToVPNMessage *i2v) is not documented: - parameter 'i2v' -/home/william/Git/gnunet/src/vpn/gnunet-service-vpn.c:722: warning: argument 'message' of command @param is not found in the argument list of handle_icmp_back(void *cls, const struct GNUNET_EXIT_IcmpToVPNMessage *i2v) -/home/william/Git/gnunet/src/vpn/gnunet-service-vpn.c:730: warning: The following parameter of handle_icmp_back(void *cls, const struct GNUNET_EXIT_IcmpToVPNMessage *i2v) is not documented: - parameter 'i2v' -/home/william/Git/gnunet/src/zonemaster/gnunet-service-zonemaster-monitor.c:131: warning: argument 'tc' of command @param is not found in the argument list of shutdown_task(void *cls) -/home/william/Git/gnunet/src/zonemaster/gnunet-service-zonemaster-monitor.c:208: warning: The following parameter of perform_dht_put(const struct GNUNET_IDENTITY_PrivateKey *key, const char *label, const struct GNUNET_GNSRECORD_Data *rd_public, unsigned int rd_public_count, struct GNUNET_TIME_Absolute expire, struct DhtPutActivity *ma) is not documented: - parameter 'expire' -/home/william/Git/gnunet/src/zonemaster/gnunet-service-zonemaster-monitor.c:379: warning: argument 'server' of command @param is not found in the argument list of run(void *cls, const struct GNUNET_CONFIGURATION_Handle *c, struct GNUNET_SERVICE_Handle *service) -/home/william/Git/gnunet/src/zonemaster/gnunet-service-zonemaster-monitor.c:385: warning: The following parameter of run(void *cls, const struct GNUNET_CONFIGURATION_Handle *c, struct GNUNET_SERVICE_Handle *service) is not documented: - parameter 'service' -/home/william/Git/gnunet/src/zonemaster/gnunet-service-zonemaster.c:209: warning: explicit link request to 'put_interval' could not be resolved -/home/william/Git/gnunet/src/zonemaster/gnunet-service-zonemaster.c:241: warning: argument 'tc' of command @param is not found in the argument list of shutdown_task(void *cls) -/home/william/Git/gnunet/src/zonemaster/gnunet-service-zonemaster.c:540: warning: The following parameter of perform_dht_put(const struct GNUNET_IDENTITY_PrivateKey *key, const char *label, const struct GNUNET_GNSRECORD_Data *rd_public, unsigned int rd_public_count, const struct GNUNET_TIME_Absolute expire, struct DhtPutActivity *ma) is not documented: - parameter 'expire' -/home/william/Git/gnunet/src/zonemaster/gnunet-service-zonemaster.c:810: warning: argument 'server' of command @param is not found in the argument list of run(void *cls, const struct GNUNET_CONFIGURATION_Handle *c, struct GNUNET_SERVICE_Handle *service) -/home/william/Git/gnunet/src/zonemaster/gnunet-service-zonemaster.c:816: warning: The following parameter of run(void *cls, const struct GNUNET_CONFIGURATION_Handle *c, struct GNUNET_SERVICE_Handle *service) is not documented: - parameter 'service' -/home/william/Git/gnunet/src/zonemaster/gnunet-service-zonemaster.c:209: warning: explicit link request to 'put_interval' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:244: warning: argument 'cfg' from the argument list of GNUNET_ABD_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:253: warning: argument 'handle' from the argument list of GNUNET_ABD_disconnect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:320: warning: argument 'handle' from the argument list of GNUNET_ABD_verify has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:320: warning: argument 'issuer_key' from the argument list of GNUNET_ABD_verify has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:320: warning: argument 'issuer_attribute' from the argument list of GNUNET_ABD_verify has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:320: warning: argument 'subject_key' from the argument list of GNUNET_ABD_verify has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:320: warning: argument 'delegate_count' from the argument list of GNUNET_ABD_verify has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:320: warning: argument 'delegates' from the argument list of GNUNET_ABD_verify has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:320: warning: argument 'proc' from the argument list of GNUNET_ABD_verify has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:320: warning: argument 'proc_cls' from the argument list of GNUNET_ABD_verify has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:320: warning: The following parameters of GNUNET_ABD_verify(struct GNUNET_ABD_Handle *handle, const struct GNUNET_IDENTITY_PublicKey *issuer_key, const char *issuer_attribute, const struct GNUNET_IDENTITY_PublicKey *subject_key, uint32_t delegate_count, const struct GNUNET_ABD_Delegate *delegates, enum GNUNET_ABD_AlgoDirectionFlags direction, GNUNET_ABD_CredentialResultProcessor proc, void *proc_cls, GNUNET_ABD_IntermediateResultProcessor proc2, void *proc2_cls) are not documented: - parameter 'direction' - parameter 'proc2' - parameter 'proc2_cls' -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:333: warning: The following parameters of GNUNET_ABD_collect(struct GNUNET_ABD_Handle *handle, const struct GNUNET_IDENTITY_PublicKey *issuer_key, const char *issuer_attribute, const struct GNUNET_IDENTITY_PrivateKey *subject_key, enum GNUNET_ABD_AlgoDirectionFlags direction, GNUNET_ABD_CredentialResultProcessor proc, void *proc_cls, GNUNET_ABD_IntermediateResultProcessor proc2, void *proc2_cls) are not documented: - parameter 'direction' - parameter 'proc2' - parameter 'proc2_cls' -/home/william/Git/gnunet/src/abd/delegate_misc.c:187: warning: argument 'attribute' of command @param is not found in the argument list of GNUNET_ABD_delegate_issue(const struct GNUNET_IDENTITY_PrivateKey *issuer, struct GNUNET_IDENTITY_PublicKey *subject, const char *iss_attr, const char *sub_attr, struct GNUNET_TIME_Absolute *expiration) -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:392: warning: argument 'issuer' from the argument list of GNUNET_ABD_delegate_issue has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:392: warning: argument 'subject' from the argument list of GNUNET_ABD_delegate_issue has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:392: warning: The following parameter of GNUNET_ABD_delegate_issue(const struct GNUNET_IDENTITY_PrivateKey *issuer, struct GNUNET_IDENTITY_PublicKey *subject, const char *iss_attr, const char *sub_attr, struct GNUNET_TIME_Absolute *expiration) is not documented: - parameter 'sub_attr' -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:405: warning: argument 'lr' from the argument list of GNUNET_ABD_request_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/abe/abe.c:226: warning: argument 'key' from the argument list of GNUNET_ABE_cpabe_delete_key has multiple @param documentation sections -/home/william/Git/gnunet/src/abe/abe.c:226: warning: argument 'delete_pub' from the argument list of GNUNET_ABE_cpabe_delete_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_arm_service.h:307: warning: argument 'h' from the argument list of GNUNET_ARM_disconnect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_arm_service.h:417: warning: argument 'h' from the argument list of GNUNET_ARM_monitor_stop has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:160: warning: argument 'OUT' of command @param is not found in the argument list of GNUNET_ATS_properties_hton(struct GNUNET_ATS_PropertiesNBO *nbo, const struct GNUNET_ATS_Properties *hbo) -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:171: warning: argument 'OUT' of command @param is not found in the argument list of GNUNET_ATS_properties_ntoh(struct GNUNET_ATS_Properties *hbo, const struct GNUNET_ATS_PropertiesNBO *nbo) -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:210: warning: argument 'ch' from the argument list of GNUNET_ATS_connectivity_done has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:223: warning: argument 'ch' from the argument list of GNUNET_ATS_connectivity_suggest has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:223: warning: argument 'peer' from the argument list of GNUNET_ATS_connectivity_suggest has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:223: warning: argument 'strength' from the argument list of GNUNET_ATS_connectivity_suggest has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:234: warning: argument 'sh' from the argument list of GNUNET_ATS_connectivity_suggest_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:288: warning: argument 'cfg' from the argument list of GNUNET_ATS_scheduling_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:288: warning: argument 'suggest_cb' from the argument list of GNUNET_ATS_scheduling_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:288: warning: argument 'suggest_cb_cls' from the argument list of GNUNET_ATS_scheduling_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:321: warning: argument 'sh' from the argument list of GNUNET_ATS_address_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:321: warning: argument 'address' from the argument list of GNUNET_ATS_address_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:321: warning: argument 'session' from the argument list of GNUNET_ATS_address_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:321: warning: argument 'prop' from the argument list of GNUNET_ATS_address_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:345: warning: Found unknown command '\ar' -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:358: warning: Found unknown command '\ar' -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:351: warning: argument 'ar' from the argument list of GNUNET_ATS_address_del_session has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:351: warning: argument 'session' from the argument list of GNUNET_ATS_address_del_session has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:369: warning: argument 'ar' from the argument list of GNUNET_ATS_address_update has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:369: warning: argument 'prop' from the argument list of GNUNET_ATS_address_update has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:380: warning: argument 'ar' from the argument list of GNUNET_ATS_address_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:452: warning: argument 'ph' from the argument list of GNUNET_ATS_performance_list_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:452: warning: argument 'peer' from the argument list of GNUNET_ATS_performance_list_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:452: warning: argument 'all' from the argument list of GNUNET_ATS_performance_list_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:452: warning: argument 'infocb' from the argument list of GNUNET_ATS_performance_list_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:452: warning: argument 'infocb_cls' from the argument list of GNUNET_ATS_performance_list_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:466: warning: argument 'alh' from the argument list of GNUNET_ATS_performance_list_addresses_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:517: warning: argument 'ph' from the argument list of GNUNET_ATS_reserve_bandwidth has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:517: warning: argument 'peer' from the argument list of GNUNET_ATS_reserve_bandwidth has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:517: warning: argument 'amount' from the argument list of GNUNET_ATS_reserve_bandwidth has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:517: warning: argument 'rcb' from the argument list of GNUNET_ATS_reserve_bandwidth has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:517: warning: argument 'rcb_cls' from the argument list of GNUNET_ATS_reserve_bandwidth has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:530: warning: argument 'rc' from the argument list of GNUNET_ATS_reserve_bandwidth_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:581: warning: argument 'type' from the argument list of GNUNET_ATS_print_preference_type has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:593: warning: argument 'ph' from the argument list of GNUNET_ATS_performance_change_preference has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:593: warning: argument 'peer' from the argument list of GNUNET_ATS_performance_change_preference has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:618: warning: argument 'ph' from the argument list of GNUNET_ATS_performance_give_feedback has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:618: warning: argument 'peer' from the argument list of GNUNET_ATS_performance_give_feedback has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:618: warning: argument 'scope' from the argument list of GNUNET_ATS_performance_give_feedback has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:175: warning: argument 'bps' from the argument list of GNUNET_BANDWIDTH_value_get_delay_for has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:175: warning: argument 'size' from the argument list of GNUNET_BANDWIDTH_value_get_delay_for has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:246: warning: argument 'av' from the argument list of GNUNET_BANDWIDTH_tracker_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:246: warning: argument 'update_cb' from the argument list of GNUNET_BANDWIDTH_tracker_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:246: warning: argument 'update_cb_cls' from the argument list of GNUNET_BANDWIDTH_tracker_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:246: warning: argument 'bytes_per_second_limit' from the argument list of GNUNET_BANDWIDTH_tracker_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:246: warning: argument 'max_carry_s' from the argument list of GNUNET_BANDWIDTH_tracker_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:273: warning: argument 'av' from the argument list of GNUNET_BANDWIDTH_tracker_init2 has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:273: warning: argument 'update_cb' from the argument list of GNUNET_BANDWIDTH_tracker_init2 has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:273: warning: argument 'update_cb_cls' from the argument list of GNUNET_BANDWIDTH_tracker_init2 has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:273: warning: argument 'bytes_per_second_limit' from the argument list of GNUNET_BANDWIDTH_tracker_init2 has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:273: warning: argument 'max_carry_s' from the argument list of GNUNET_BANDWIDTH_tracker_init2 has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:273: warning: argument 'excess_cb' from the argument list of GNUNET_BANDWIDTH_tracker_init2 has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:273: warning: argument 'excess_cb_cls' from the argument list of GNUNET_BANDWIDTH_tracker_init2 has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:305: warning: argument 'av' from the argument list of GNUNET_BANDWIDTH_tracker_consume has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:305: warning: argument 'size' from the argument list of GNUNET_BANDWIDTH_tracker_consume has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:305: warning: argument 'av' from the argument list of GNUNET_BANDWIDTH_tracker_get_delay has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:305: warning: argument 'size' from the argument list of GNUNET_BANDWIDTH_tracker_get_delay has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bio_lib.h:87: warning: argument 'h' from the argument list of GNUNET_BIO_read_close has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bio_lib.h:87: warning: argument 'emsg' from the argument list of GNUNET_BIO_read_close has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bio_lib.h:314: warning: argument 'h' from the argument list of GNUNET_BIO_write_float has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bio_lib.h:314: warning: argument 'what' from the argument list of GNUNET_BIO_write_float has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bio_lib.h:314: warning: argument 'f' from the argument list of GNUNET_BIO_write_float has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bio_lib.h:326: warning: argument 'h' from the argument list of GNUNET_BIO_write_double has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bio_lib.h:326: warning: argument 'what' from the argument list of GNUNET_BIO_write_double has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bio_lib.h:326: warning: argument 'f' from the argument list of GNUNET_BIO_write_double has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_block_group_lib.h:66: warning: argument 'ctx' of command @param is not found in the argument list of GNUNET_BLOCK_GROUP_bf_create(void *cls, size_t bf_size, unsigned int bf_k, enum GNUNET_BLOCK_Type type, uint32_t nonce, const void *raw_data, size_t raw_data_size) -/home/william/Git/gnunet/src/include/gnunet_block_group_lib.h:78: warning: The following parameter of GNUNET_BLOCK_GROUP_bf_create(void *cls, size_t bf_size, unsigned int bf_k, enum GNUNET_BLOCK_Type type, uint32_t nonce, const void *raw_data, size_t raw_data_size) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/include/gnunet_block_group_lib.h:94: warning: Found unknown command '\bg' -/home/william/Git/gnunet/src/include/gnunet_block_lib.h:259: warning: argument 'bf_mutator' of command @param is not found in the argument list of GNUNET_BLOCK_group_set_seen(struct GNUNET_BLOCK_Group *bg, const struct GNUNET_HashCode *seen_results, unsigned int seen_results_count) -/home/william/Git/gnunet/src/include/gnunet_block_lib.h:173: warning: The following parameter of GNUNET_BLOCK_group_set_seen(struct GNUNET_BLOCK_Group *bg, const struct GNUNET_HashCode *seen_results, unsigned int seen_results_count) is not documented: - parameter 'bg' -/home/william/Git/gnunet/src/include/gnunet_block_lib.h:277: warning: Found unknown command '\bg2' -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:189: warning: argument 'h' from the argument list of GNUNET_CADET_open_port has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:189: warning: argument 'port' from the argument list of GNUNET_CADET_open_port has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:189: warning: argument 'connects' from the argument list of GNUNET_CADET_open_port has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:189: warning: argument 'connects_cls' from the argument list of GNUNET_CADET_open_port has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:189: warning: argument 'window_changes' from the argument list of GNUNET_CADET_open_port has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:189: warning: argument 'disconnects' from the argument list of GNUNET_CADET_open_port has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:189: warning: argument 'handlers' from the argument list of GNUNET_CADET_open_port has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:205: warning: argument 'p' from the argument list of GNUNET_CADET_close_port has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:229: warning: argument 'h' from the argument list of GNUNET_CADET_channel_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:229: warning: argument 'channel_cls' from the argument list of GNUNET_CADET_channel_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:229: warning: argument 'destination' from the argument list of GNUNET_CADET_channel_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:229: warning: argument 'port' from the argument list of GNUNET_CADET_channel_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:229: warning: argument 'window_changes' from the argument list of GNUNET_CADET_channel_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:229: warning: argument 'disconnects' from the argument list of GNUNET_CADET_channel_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:229: warning: argument 'handlers' from the argument list of GNUNET_CADET_channel_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:258: warning: argument 'channel' from the argument list of GNUNET_CADET_get_mq has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:261: warning: argument 'ch' of command @param is not found in the argument list of GNUNET_CADET_receive_done(struct GNUNET_CADET_Channel *channel) -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:319: warning: argument 'channel' from the argument list of GNUNET_CADET_channel_get_info has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:381: warning: argument 'cfg' from the argument list of GNUNET_CADET_get_channel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:381: warning: argument 'peer' from the argument list of GNUNET_CADET_get_channel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:381: warning: argument 'callback' from the argument list of GNUNET_CADET_get_channel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:381: warning: argument 'callback_cls' from the argument list of GNUNET_CADET_get_channel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:387: warning: argument 'h' of command @param is not found in the argument list of GNUNET_CADET_get_channel_cancel(struct GNUNET_CADET_ChannelMonitor *cm) -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:394: warning: The following parameter of GNUNET_CADET_get_channel_cancel(struct GNUNET_CADET_ChannelMonitor *cm) is not documented: - parameter 'cm' -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:467: warning: argument 'pl' from the argument list of GNUNET_CADET_list_peers_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:527: warning: argument 'cfg' from the argument list of GNUNET_CADET_get_path has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:527: warning: argument 'id' from the argument list of GNUNET_CADET_get_path has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:527: warning: argument 'callback' from the argument list of GNUNET_CADET_get_path has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:527: warning: argument 'callback_cls' from the argument list of GNUNET_CADET_get_path has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:618: warning: argument 'lt' from the argument list of GNUNET_CADET_list_tunnels_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_client_lib.h:69: warning: argument 'cfg' from the argument list of GNUNET_CLIENT_test has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_client_lib.h:69: warning: argument 'service_name' from the argument list of GNUNET_CLIENT_test has multiple @param documentation sections -/home/william/Git/gnunet/src/util/client.c:1055: warning: argument 'connection' of command @param is not found in the argument list of GNUNET_CLIENT_connect(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *service_name, const struct GNUNET_MQ_MessageHandler *handlers, GNUNET_MQ_ErrorHandler error_handler, void *error_handler_cls) -/home/william/Git/gnunet/src/include/gnunet_client_lib.h:84: warning: argument 'handlers' from the argument list of GNUNET_CLIENT_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_client_lib.h:84: warning: argument 'error_handler' from the argument list of GNUNET_CLIENT_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_client_lib.h:84: warning: argument 'error_handler_cls' from the argument list of GNUNET_CLIENT_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:598: warning: argument 'kind' from the argument list of GNUNET_log_config_missing has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:598: warning: argument 'section' from the argument list of GNUNET_log_config_missing has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:598: warning: argument 'option' from the argument list of GNUNET_log_config_missing has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:613: warning: argument 'kind' from the argument list of GNUNET_log_config_invalid has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:613: warning: argument 'section' from the argument list of GNUNET_log_config_invalid has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:613: warning: argument 'option' from the argument list of GNUNET_log_config_invalid has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:613: warning: argument 'required' from the argument list of GNUNET_log_config_invalid has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:662: warning: argument 'n' from the argument list of GNUNET_log_skip has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:662: warning: argument 'check_reset' from the argument list of GNUNET_log_skip has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:675: warning: argument 'comp' from the argument list of GNUNET_log_setup has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:675: warning: argument 'loglevel' from the argument list of GNUNET_log_setup has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:675: warning: argument 'logfile' from the argument list of GNUNET_log_setup has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:689: warning: argument 'logger' from the argument list of GNUNET_logger_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:689: warning: argument 'logger_cls' from the argument list of GNUNET_logger_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:700: warning: argument 'logger' from the argument list of GNUNET_logger_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:700: warning: argument 'logger_cls' from the argument list of GNUNET_logger_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:739: warning: argument 'hc' from the argument list of GNUNET_h2s has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:754: warning: argument 'hc' from the argument list of GNUNET_h2s2 has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:768: warning: argument 'hc' from the argument list of GNUNET_h2s_full has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:784: warning: argument 'hc' of command @param is not found in the argument list of GNUNET_p2s(const struct GNUNET_CRYPTO_EddsaPublicKey *p) -/home/william/Git/gnunet/src/util/common_logging.c:1194: warning: The following parameter of GNUNET_p2s(const struct GNUNET_CRYPTO_EddsaPublicKey *p) is not documented: - parameter 'p' -/home/william/Git/gnunet/src/include/gnunet_common.h:797: warning: argument 'hc' of command @param is not found in the argument list of GNUNET_p2s2(const struct GNUNET_CRYPTO_EddsaPublicKey *p) -/home/william/Git/gnunet/src/util/common_logging.c:1216: warning: The following parameter of GNUNET_p2s2(const struct GNUNET_CRYPTO_EddsaPublicKey *p) is not documented: - parameter 'p' -/home/william/Git/gnunet/src/include/gnunet_common.h:810: warning: argument 'hc' of command @param is not found in the argument list of GNUNET_e2s(const struct GNUNET_CRYPTO_EcdhePublicKey *p) -/home/william/Git/gnunet/src/util/common_logging.c:1238: warning: The following parameter of GNUNET_e2s(const struct GNUNET_CRYPTO_EcdhePublicKey *p) is not documented: - parameter 'p' -/home/william/Git/gnunet/src/include/gnunet_common.h:823: warning: argument 'hc' of command @param is not found in the argument list of GNUNET_e2s2(const struct GNUNET_CRYPTO_EcdhePublicKey *p) -/home/william/Git/gnunet/src/util/common_logging.c:1260: warning: The following parameter of GNUNET_e2s2(const struct GNUNET_CRYPTO_EcdhePublicKey *p) is not documented: - parameter 'p' -/home/william/Git/gnunet/src/include/gnunet_common.h:852: warning: argument 'pid' from the argument list of GNUNET_i2s has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:868: warning: argument 'pid' from the argument list of GNUNET_i2s2 has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:882: warning: argument 'pid' from the argument list of GNUNET_i2s_full has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:897: warning: argument 'addr' from the argument list of GNUNET_a2s has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:897: warning: argument 'addrlen' from the argument list of GNUNET_a2s has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:908: warning: argument 'kind' from the argument list of GNUNET_error_type_to_string has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1496: warning: argument 'len' of command @param is not found in the argument list of GNUNET_array_concatenate(arr1, len1, arr2, len2) -/home/william/Git/gnunet/src/include/gnunet_common.h:1518: warning: The following parameter of GNUNET_array_concatenate(arr1, len1, arr2, len2) is not documented: - parameter 'len2' -/home/william/Git/gnunet/src/include/gnunet_common.h:1739: warning: argument 'msg' from the argument list of GNUNET_copy_message has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_configuration_lib.h:77: warning: argument 'cfg' from the argument list of GNUNET_CONFIGURATION_load has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_configuration_lib.h:77: warning: argument 'filename' from the argument list of GNUNET_CONFIGURATION_load has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_configuration_lib.h:174: warning: Found unknown command '\INLINE' -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:99: warning: argument 'cfg' from the argument list of GNUNET_CONSENSUS_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:99: warning: argument 'num_peers' from the argument list of GNUNET_CONSENSUS_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:99: warning: argument 'peers' from the argument list of GNUNET_CONSENSUS_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:99: warning: argument 'session_id' from the argument list of GNUNET_CONSENSUS_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:99: warning: argument 'start' from the argument list of GNUNET_CONSENSUS_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:99: warning: argument 'deadline' from the argument list of GNUNET_CONSENSUS_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:99: warning: argument 'new_element_cb' from the argument list of GNUNET_CONSENSUS_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:99: warning: argument 'new_element_cls' from the argument list of GNUNET_CONSENSUS_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:138: warning: argument 'consensus' from the argument list of GNUNET_CONSENSUS_insert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:138: warning: argument 'element' from the argument list of GNUNET_CONSENSUS_insert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:138: warning: argument 'idc' from the argument list of GNUNET_CONSENSUS_insert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:138: warning: argument 'idc_cls' from the argument list of GNUNET_CONSENSUS_insert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:152: warning: argument 'deadline' of command @param is not found in the argument list of GNUNET_CONSENSUS_conclude(struct GNUNET_CONSENSUS_Handle *consensus, GNUNET_CONSENSUS_ConcludeCallback conclude, void *conclude_cls) -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:161: warning: argument 'consensus' from the argument list of GNUNET_CONSENSUS_conclude has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:161: warning: argument 'conclude' from the argument list of GNUNET_CONSENSUS_conclude has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:161: warning: argument 'conclude_cls' from the argument list of GNUNET_CONSENSUS_conclude has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_constants.h:131: warning: explicit link request to 'GNUNET_CONSTANTS_TRANSPORT_SIZE_OUTBOUND_MESSAGE' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:796: warning: argument 'len' from the argument list of GNUNET_CONTAINER_multihashmap_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:796: warning: argument 'do_not_copy_keys' from the argument list of GNUNET_CONTAINER_multihashmap_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:808: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:824: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:824: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multihashmap_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:842: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:842: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multihashmap_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:842: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multihashmap_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:856: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap_remove_all has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:856: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multihashmap_remove_all has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:884: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap_contains has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:884: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multihashmap_contains has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:901: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap_contains_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:901: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multihashmap_contains_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:901: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multihashmap_contains_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:921: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:921: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multihashmap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:921: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multihashmap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:921: warning: argument 'opt' from the argument list of GNUNET_CONTAINER_multihashmap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:935: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap_size has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:950: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:950: warning: argument 'it' from the argument list of GNUNET_CONTAINER_multihashmap_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:950: warning: argument 'it_cls' from the argument list of GNUNET_CONTAINER_multihashmap_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:970: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap_iterator_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:990: warning: argument 'iter' from the argument list of GNUNET_CONTAINER_multihashmap_iterator_next has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:990: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multihashmap_iterator_next has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:990: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multihashmap_iterator_next has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1003: warning: argument 'iter' from the argument list of GNUNET_CONTAINER_multihashmap_iterator_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1019: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1019: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multihashmap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1019: warning: argument 'it' from the argument list of GNUNET_CONTAINER_multihashmap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1019: warning: argument 'it_cls' from the argument list of GNUNET_CONTAINER_multihashmap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1086: warning: argument 'len' from the argument list of GNUNET_CONTAINER_multipeermap_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1086: warning: argument 'do_not_copy_keys' from the argument list of GNUNET_CONTAINER_multipeermap_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1097: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multipeermap_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1113: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multipeermap_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1113: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multipeermap_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1131: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multipeermap_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1131: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multipeermap_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1131: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multipeermap_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1145: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multipeermap_remove_all has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1145: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multipeermap_remove_all has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1161: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multipeermap_contains has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1161: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multipeermap_contains has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1178: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multipeermap_contains_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1178: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multipeermap_contains_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1178: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multipeermap_contains_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1198: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multipeermap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1198: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multipeermap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1198: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multipeermap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1198: warning: argument 'opt' from the argument list of GNUNET_CONTAINER_multipeermap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1213: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multipeermap_size has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1228: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multipeermap_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1228: warning: argument 'it' from the argument list of GNUNET_CONTAINER_multipeermap_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1228: warning: argument 'it_cls' from the argument list of GNUNET_CONTAINER_multipeermap_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1249: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multipeermap_iterator_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1269: warning: argument 'iter' from the argument list of GNUNET_CONTAINER_multipeermap_iterator_next has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1269: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multipeermap_iterator_next has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1269: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multipeermap_iterator_next has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1282: warning: argument 'iter' from the argument list of GNUNET_CONTAINER_multipeermap_iterator_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1298: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multipeermap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1298: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multipeermap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1298: warning: argument 'it' from the argument list of GNUNET_CONTAINER_multipeermap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1298: warning: argument 'it_cls' from the argument list of GNUNET_CONTAINER_multipeermap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1365: warning: argument 'len' from the argument list of GNUNET_CONTAINER_multishortmap_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1365: warning: argument 'do_not_copy_keys' from the argument list of GNUNET_CONTAINER_multishortmap_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1376: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multishortmap_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1392: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multishortmap_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1392: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multishortmap_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1410: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multishortmap_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1410: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multishortmap_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1410: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multishortmap_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1425: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multishortmap_remove_all has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1425: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multishortmap_remove_all has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1441: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multishortmap_contains has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1441: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multishortmap_contains has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1458: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multishortmap_contains_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1458: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multishortmap_contains_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1458: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multishortmap_contains_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1478: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multishortmap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1478: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multishortmap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1478: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multishortmap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1478: warning: argument 'opt' from the argument list of GNUNET_CONTAINER_multishortmap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1493: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multishortmap_size has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1508: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multishortmap_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1508: warning: argument 'it' from the argument list of GNUNET_CONTAINER_multishortmap_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1508: warning: argument 'it_cls' from the argument list of GNUNET_CONTAINER_multishortmap_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1531: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multishortmap_iterator_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1551: warning: argument 'iter' from the argument list of GNUNET_CONTAINER_multishortmap_iterator_next has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1551: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multishortmap_iterator_next has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1551: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multishortmap_iterator_next has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1564: warning: argument 'iter' from the argument list of GNUNET_CONTAINER_multishortmap_iterator_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1580: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multishortmap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1580: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multishortmap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1580: warning: argument 'it' from the argument list of GNUNET_CONTAINER_multishortmap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1580: warning: argument 'it_cls' from the argument list of GNUNET_CONTAINER_multishortmap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1648: warning: argument 'len' from the argument list of GNUNET_CONTAINER_multiuuidmap_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1648: warning: argument 'do_not_copy_keys' from the argument list of GNUNET_CONTAINER_multiuuidmap_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1659: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multiuuidmap_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1675: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multiuuidmap_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1675: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multiuuidmap_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1693: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multiuuidmap_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1693: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multiuuidmap_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1693: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multiuuidmap_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1707: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multiuuidmap_remove_all has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1707: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multiuuidmap_remove_all has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1723: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multiuuidmap_contains has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1723: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multiuuidmap_contains has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1740: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multiuuidmap_contains_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1740: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multiuuidmap_contains_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1740: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multiuuidmap_contains_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1760: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multiuuidmap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1760: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multiuuidmap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1760: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multiuuidmap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1760: warning: argument 'opt' from the argument list of GNUNET_CONTAINER_multiuuidmap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1775: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multiuuidmap_size has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1790: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multiuuidmap_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1790: warning: argument 'it' from the argument list of GNUNET_CONTAINER_multiuuidmap_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1790: warning: argument 'it_cls' from the argument list of GNUNET_CONTAINER_multiuuidmap_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1813: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multiuuidmap_iterator_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1833: warning: argument 'iter' from the argument list of GNUNET_CONTAINER_multiuuidmap_iterator_next has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1833: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multiuuidmap_iterator_next has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1833: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multiuuidmap_iterator_next has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1846: warning: argument 'iter' from the argument list of GNUNET_CONTAINER_multiuuidmap_iterator_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1862: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multiuuidmap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1862: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multiuuidmap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1862: warning: argument 'it' from the argument list of GNUNET_CONTAINER_multiuuidmap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1862: warning: argument 'it_cls' from the argument list of GNUNET_CONTAINER_multiuuidmap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1928: warning: argument 'len' from the argument list of GNUNET_CONTAINER_multihashmap32_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1939: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap32_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1951: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap32_size has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1967: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap32_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1967: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multihashmap32_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1983: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap32_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1983: warning: argument 'it' from the argument list of GNUNET_CONTAINER_multihashmap32_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1983: warning: argument 'it_cls' from the argument list of GNUNET_CONTAINER_multihashmap32_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2002: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap32_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2002: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multihashmap32_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2002: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multihashmap32_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2018: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap32_remove_all has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2018: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multihashmap32_remove_all has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2034: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap32_contains has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2034: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multihashmap32_contains has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2051: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap32_contains_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2051: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multihashmap32_contains_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2051: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multihashmap32_contains_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2071: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap32_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2071: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multihashmap32_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2071: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multihashmap32_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2071: warning: argument 'opt' from the argument list of GNUNET_CONTAINER_multihashmap32_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2090: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap32_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2090: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multihashmap32_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2090: warning: argument 'it' from the argument list of GNUNET_CONTAINER_multihashmap32_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2090: warning: argument 'it_cls' from the argument list of GNUNET_CONTAINER_multihashmap32_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2541: warning: argument 'order' from the argument list of GNUNET_CONTAINER_heap_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2552: warning: argument 'heap' from the argument list of GNUNET_CONTAINER_heap_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2563: warning: argument 'heap' from the argument list of GNUNET_CONTAINER_heap_peek has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2589: warning: argument 'heap' from the argument list of GNUNET_CONTAINER_heap_get_size has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2600: warning: argument 'node' from the argument list of GNUNET_CONTAINER_heap_node_get_cost has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2632: warning: argument 'heap' from the argument list of GNUNET_CONTAINER_heap_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2632: warning: argument 'iterator' from the argument list of GNUNET_CONTAINER_heap_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2632: warning: argument 'iterator_cls' from the argument list of GNUNET_CONTAINER_heap_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2649: warning: argument 'heap' from the argument list of GNUNET_CONTAINER_heap_walk_get_next has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2662: warning: argument 'heap' from the argument list of GNUNET_CONTAINER_heap_insert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2662: warning: argument 'element' from the argument list of GNUNET_CONTAINER_heap_insert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2662: warning: argument 'cost' from the argument list of GNUNET_CONTAINER_heap_insert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2675: warning: argument 'heap' from the argument list of GNUNET_CONTAINER_heap_remove_root has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2686: warning: argument 'node' from the argument list of GNUNET_CONTAINER_heap_remove_node has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2697: warning: argument 'node' from the argument list of GNUNET_CONTAINER_heap_update_cost has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2697: warning: argument 'new_cost' from the argument list of GNUNET_CONTAINER_heap_update_cost has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:237: warning: argument 'filename' from the argument list of GNUNET_CONTAINER_bloomfilter_load has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:237: warning: argument 'size' from the argument list of GNUNET_CONTAINER_bloomfilter_load has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:237: warning: argument 'k' from the argument list of GNUNET_CONTAINER_bloomfilter_load has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:257: warning: argument 'data' from the argument list of GNUNET_CONTAINER_bloomfilter_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:257: warning: argument 'size' from the argument list of GNUNET_CONTAINER_bloomfilter_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:257: warning: argument 'k' from the argument list of GNUNET_CONTAINER_bloomfilter_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:272: warning: argument 'data' from the argument list of GNUNET_CONTAINER_bloomfilter_get_raw_data has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:272: warning: argument 'size' from the argument list of GNUNET_CONTAINER_bloomfilter_get_raw_data has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:287: warning: argument 'bf' from the argument list of GNUNET_CONTAINER_bloomfilter_test has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:287: warning: argument 'e' from the argument list of GNUNET_CONTAINER_bloomfilter_test has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:300: warning: argument 'bf' from the argument list of GNUNET_CONTAINER_bloomfilter_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:300: warning: argument 'e' from the argument list of GNUNET_CONTAINER_bloomfilter_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:312: warning: argument 'bf' from the argument list of GNUNET_CONTAINER_bloomfilter_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:312: warning: argument 'e' from the argument list of GNUNET_CONTAINER_bloomfilter_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:324: warning: argument 'bf' from the argument list of GNUNET_CONTAINER_bloomfilter_copy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:337: warning: argument 'bf' from the argument list of GNUNET_CONTAINER_bloomfilter_free has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:359: warning: argument 'bf' from the argument list of GNUNET_CONTAINER_bloomfilter_get_size has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:370: warning: argument 'bf' from the argument list of GNUNET_CONTAINER_bloomfilter_clear has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:386: warning: argument 'bf' from the argument list of GNUNET_CONTAINER_bloomfilter_or has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:386: warning: argument 'data' from the argument list of GNUNET_CONTAINER_bloomfilter_or has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:386: warning: argument 'size' from the argument list of GNUNET_CONTAINER_bloomfilter_or has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:402: warning: argument 'bf' from the argument list of GNUNET_CONTAINER_bloomfilter_or2 has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:402: warning: argument 'to_or' from the argument list of GNUNET_CONTAINER_bloomfilter_or2 has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:420: warning: argument 'bf' from the argument list of GNUNET_CONTAINER_bloomfilter_resize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:420: warning: argument 'iterator' from the argument list of GNUNET_CONTAINER_bloomfilter_resize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:420: warning: argument 'iterator_cls' from the argument list of GNUNET_CONTAINER_bloomfilter_resize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:420: warning: argument 'size' from the argument list of GNUNET_CONTAINER_bloomfilter_resize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:420: warning: argument 'k' from the argument list of GNUNET_CONTAINER_bloomfilter_resize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:454: warning: argument 'md' from the argument list of GNUNET_CONTAINER_meta_data_duplicate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:465: warning: argument 'md' from the argument list of GNUNET_CONTAINER_meta_data_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:480: warning: argument 'md1' from the argument list of GNUNET_CONTAINER_meta_data_test_equal has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:480: warning: argument 'md2' from the argument list of GNUNET_CONTAINER_meta_data_test_equal has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:504: warning: argument 'md' from the argument list of GNUNET_CONTAINER_meta_data_insert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:504: warning: argument 'plugin_name' from the argument list of GNUNET_CONTAINER_meta_data_insert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:504: warning: argument 'type' from the argument list of GNUNET_CONTAINER_meta_data_insert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:504: warning: argument 'format' from the argument list of GNUNET_CONTAINER_meta_data_insert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:504: warning: argument 'data_mime_type' from the argument list of GNUNET_CONTAINER_meta_data_insert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:504: warning: argument 'data' from the argument list of GNUNET_CONTAINER_meta_data_insert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:504: warning: argument 'data_size' from the argument list of GNUNET_CONTAINER_meta_data_insert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:522: warning: argument 'md' from the argument list of GNUNET_CONTAINER_meta_data_merge has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:522: warning: argument 'in' from the argument list of GNUNET_CONTAINER_meta_data_merge has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:538: warning: argument 'md' from the argument list of GNUNET_CONTAINER_meta_data_delete has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:538: warning: argument 'type' from the argument list of GNUNET_CONTAINER_meta_data_delete has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:538: warning: argument 'data' from the argument list of GNUNET_CONTAINER_meta_data_delete has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:538: warning: argument 'data_size' from the argument list of GNUNET_CONTAINER_meta_data_delete has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:551: warning: argument 'md' from the argument list of GNUNET_CONTAINER_meta_data_clear has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:562: warning: argument 'md' from the argument list of GNUNET_CONTAINER_meta_data_add_publication_date has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:577: warning: argument 'md' from the argument list of GNUNET_CONTAINER_meta_data_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:577: warning: argument 'iter' from the argument list of GNUNET_CONTAINER_meta_data_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:577: warning: argument 'iter_cls' from the argument list of GNUNET_CONTAINER_meta_data_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:594: warning: argument 'md' from the argument list of GNUNET_CONTAINER_meta_data_get_by_type has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:594: warning: argument 'type' from the argument list of GNUNET_CONTAINER_meta_data_get_by_type has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:612: warning: argument 'md' from the argument list of GNUNET_CONTAINER_meta_data_get_first_by_types has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:627: warning: argument 'md' from the argument list of GNUNET_CONTAINER_meta_data_get_thumbnail has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:627: warning: argument 'thumb' from the argument list of GNUNET_CONTAINER_meta_data_get_thumbnail has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:675: warning: argument 'md' from the argument list of GNUNET_CONTAINER_meta_data_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:675: warning: argument 'target' from the argument list of GNUNET_CONTAINER_meta_data_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:675: warning: argument 'max' from the argument list of GNUNET_CONTAINER_meta_data_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:675: warning: argument 'opt' from the argument list of GNUNET_CONTAINER_meta_data_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:690: warning: argument 'md' from the argument list of GNUNET_CONTAINER_meta_data_get_serialized_size has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:704: warning: argument 'input' from the argument list of GNUNET_CONTAINER_meta_data_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:704: warning: argument 'size' from the argument list of GNUNET_CONTAINER_meta_data_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:218: warning: argument 'cfg' from the argument list of GNUNET_CONVERSATION_phone_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:218: warning: argument 'ego' from the argument list of GNUNET_CONVERSATION_phone_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:218: warning: argument 'event_handler' from the argument list of GNUNET_CONVERSATION_phone_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:218: warning: argument 'event_handler_cls' from the argument list of GNUNET_CONVERSATION_phone_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:249: warning: argument 'caller' from the argument list of GNUNET_CONVERSATION_caller_pick_up has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:249: warning: argument 'event_handler' from the argument list of GNUNET_CONVERSATION_caller_pick_up has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:249: warning: argument 'event_handler_cls' from the argument list of GNUNET_CONVERSATION_caller_pick_up has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:249: warning: argument 'speaker' from the argument list of GNUNET_CONVERSATION_caller_pick_up has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:249: warning: argument 'mic' from the argument list of GNUNET_CONVERSATION_caller_pick_up has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:288: warning: argument 'caller' from the argument list of GNUNET_CONVERSATION_caller_hang_up has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:392: warning: argument 'cfg' from the argument list of GNUNET_CONVERSATION_call_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:392: warning: argument 'caller_id' from the argument list of GNUNET_CONVERSATION_call_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:392: warning: argument 'callee' from the argument list of GNUNET_CONVERSATION_call_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:392: warning: argument 'speaker' from the argument list of GNUNET_CONVERSATION_call_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:392: warning: argument 'mic' from the argument list of GNUNET_CONVERSATION_call_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:392: warning: argument 'event_handler' from the argument list of GNUNET_CONVERSATION_call_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:392: warning: argument 'event_handler_cls' from the argument list of GNUNET_CONVERSATION_call_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:420: warning: argument 'call' from the argument list of GNUNET_CONVERSATION_call_resume has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:420: warning: argument 'speaker' from the argument list of GNUNET_CONVERSATION_call_resume has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:420: warning: argument 'mic' from the argument list of GNUNET_CONVERSATION_call_resume has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_core_service.h:247: warning: argument 'cfg' from the argument list of GNUNET_CORE_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_core_service.h:247: warning: argument 'cls' from the argument list of GNUNET_CORE_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_core_service.h:247: warning: argument 'init' from the argument list of GNUNET_CORE_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_core_service.h:247: warning: argument 'connects' from the argument list of GNUNET_CORE_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_core_service.h:247: warning: argument 'disconnects' from the argument list of GNUNET_CORE_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_core_service.h:247: warning: argument 'handlers' from the argument list of GNUNET_CORE_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_core_service.h:272: warning: argument 'h' from the argument list of GNUNET_CORE_get_mq has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_core_service.h:272: warning: argument 'pid' from the argument list of GNUNET_CORE_get_mq has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2052: warning: argument 'priv' of command @param is not found in the argument list of GNUNET_CRYPTO_eddsa_verify(purp, ps, sig, pub) -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2065: warning: The following parameter of GNUNET_CRYPTO_eddsa_verify(purp, ps, sig, pub) is not documented: - parameter 'pub' -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2104: warning: argument 'priv' of command @param is not found in the argument list of GNUNET_CRYPTO_ecdsa_verify(purp, ps, sig, pub) -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2117: warning: The following parameter of GNUNET_CRYPTO_ecdsa_verify(purp, ps, sig, pub) is not documented: - parameter 'pub' -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2156: warning: argument 'priv' of command @param is not found in the argument list of GNUNET_CRYPTO_edx25519_verify(purp, ps, sig, pub) -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2169: warning: The following parameter of GNUNET_CRYPTO_edx25519_verify(purp, ps, sig, pub) is not documented: - parameter 'pub' -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:584: warning: argument 'seed' from the argument list of GNUNET_CRYPTO_seed_weak_random has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:695: warning: argument 'mode' from the argument list of GNUNET_CRYPTO_random_u32 has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:695: warning: argument 'i' from the argument list of GNUNET_CRYPTO_random_u32 has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:707: warning: argument 'mode' from the argument list of GNUNET_CRYPTO_random_u64 has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:707: warning: argument 'max' from the argument list of GNUNET_CRYPTO_random_u64 has multiple @param documentation sections -/home/william/Git/gnunet/src/util/crypto_random.c:243: warning: explicit link request to 'GNUNET_RANDOM_QUALITY_STRONG' could not be resolved -/home/william/Git/gnunet/src/util/crypto_random.c:244: warning: explicit link request to 'GNUNET_RANDOM_QUALITY_WEAK' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:720: warning: argument 'mode' from the argument list of GNUNET_CRYPTO_random_permute has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:720: warning: argument 'n' from the argument list of GNUNET_CRYPTO_random_permute has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:730: warning: argument 'key' from the argument list of GNUNET_CRYPTO_symmetric_create_session_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:746: warning: argument 'block' from the argument list of GNUNET_CRYPTO_symmetric_encrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:746: warning: argument 'size' from the argument list of GNUNET_CRYPTO_symmetric_encrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:746: warning: argument 'sessionkey' from the argument list of GNUNET_CRYPTO_symmetric_encrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:746: warning: argument 'iv' from the argument list of GNUNET_CRYPTO_symmetric_encrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:766: warning: argument 'block' from the argument list of GNUNET_CRYPTO_symmetric_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:766: warning: argument 'size' from the argument list of GNUNET_CRYPTO_symmetric_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:766: warning: argument 'sessionkey' from the argument list of GNUNET_CRYPTO_symmetric_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:766: warning: argument 'iv' from the argument list of GNUNET_CRYPTO_symmetric_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:766: warning: argument 'result' from the argument list of GNUNET_CRYPTO_symmetric_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/util/crypto_ecc_setup.c:1: warning: argument 'filename' from the argument list of GNUNET_CRYPTO_eddsa_key_from_file has multiple @param documentation sections -/home/william/Git/gnunet/src/util/crypto_ecc_setup.c:1: warning: argument 'do_create' from the argument list of GNUNET_CRYPTO_eddsa_key_from_file has multiple @param documentation sections -/home/william/Git/gnunet/src/util/crypto_ecc_setup.c:1: warning: argument 'pkey' from the argument list of GNUNET_CRYPTO_eddsa_key_from_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1510: warning: argument 'cfg' from the argument list of GNUNET_CRYPTO_eddsa_key_create_from_configuration has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1639: warning: argument 'cfg' from the argument list of GNUNET_CRYPTO_get_peer_identity has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1639: warning: argument 'dst' from the argument list of GNUNET_CRYPTO_get_peer_identity has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1823: warning: explicit link request to 'GNUNET_CRRYPTO_ecdh_eddsa' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1839: warning: explicit link request to 'GNUNET_CRRYPTO_ecdh_ecdsa' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1855: warning: explicit link request to 'GNUNET_CRRYPTO_eddsa_ecdh' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1870: warning: explicit link request to 'GNUNET_CRRYPTO_ecdsa_ecdh' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1977: warning: argument 'purp' of command @param is not found in the argument list of GNUNET_CRYPTO_edx25519_sign_(const struct GNUNET_CRYPTO_Edx25519PrivateKey *priv, const struct GNUNET_CRYPTO_EccSignaturePurpose *purpose, struct GNUNET_CRYPTO_Edx25519Signature *sig) -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1802: warning: argument 'priv' from the argument list of GNUNET_CRYPTO_edx25519_sign_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1802: warning: argument 'sig' from the argument list of GNUNET_CRYPTO_edx25519_sign_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:630: warning: argument 'buf' from the argument list of GNUNET_CRYPTO_crc16_n has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:630: warning: argument 'len' from the argument list of GNUNET_CRYPTO_crc16_n has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:643: warning: argument 'buf' from the argument list of GNUNET_CRYPTO_crc32_n has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:643: warning: argument 'len' from the argument list of GNUNET_CRYPTO_crc32_n has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1027: warning: argument 'priority' from the argument list of GNUNET_CRYPTO_hash_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1027: warning: argument 'filename' from the argument list of GNUNET_CRYPTO_hash_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1027: warning: argument 'blocksize' from the argument list of GNUNET_CRYPTO_hash_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1027: warning: argument 'callback' from the argument list of GNUNET_CRYPTO_hash_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1027: warning: argument 'callback_cls' from the argument list of GNUNET_CRYPTO_hash_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_curl_lib.h:231: warning: Found unknown command '\eh' -/home/william/Git/gnunet/src/include/gnunet_curl_lib.h:253: warning: Found unknown command '\eh' -/home/william/Git/gnunet/src/include/gnunet_curl_lib.h:311: warning: Found unknown command '\eh' -/home/william/Git/gnunet/src/include/gnunet_curl_lib.h:323: warning: argument 'max_reply_size' of command @param is not found in the argument list of GNUNET_CURL_job_add_raw(struct GNUNET_CURL_Context *ctx, CURL *eh, const struct curl_slist *job_headers, GNUNET_CURL_RawJobCompletionCallback jcc, void *jcc_cls) -/home/william/Git/gnunet/src/include/gnunet_curl_lib.h:334: warning: Found unknown command '\eh' -/home/william/Git/gnunet/src/include/gnunet_curl_lib.h:392: warning: The following parameters of GNUNET_CURL_gnunet_rc_create_with_parser(struct GNUNET_CURL_Context *ctx, GNUNET_CURL_RawParser rp, GNUNET_CURL_ResponseCleaner rc) are not documented: - parameter 'rp' - parameter 'rc' -/home/william/Git/gnunet/src/include/gnunet_datacache_lib.h:109: warning: argument 'how' of command @param is not found in the argument list of GNUNET_DATACACHE_put(struct GNUNET_DATACACHE_Handle *h, const struct GNUNET_HashCode *key, uint32_t xor_distance, size_t data_size, const char *data, enum GNUNET_BLOCK_Type type, struct GNUNET_TIME_Absolute discard_time, unsigned int path_info_len, const struct GNUNET_DHT_PathElement *path_info) -/home/william/Git/gnunet/src/include/gnunet_datacache_lib.h:80: warning: The following parameter of GNUNET_DATACACHE_put(struct GNUNET_DATACACHE_Handle *h, const struct GNUNET_HashCode *key, uint32_t xor_distance, size_t data_size, const char *data, enum GNUNET_BLOCK_Type type, struct GNUNET_TIME_Absolute discard_time, unsigned int path_info_len, const struct GNUNET_DHT_PathElement *path_info) is not documented: - parameter 'xor_distance' -/home/william/Git/gnunet/src/include/gnunet_datastore_plugin.h:139: warning: explicit link request to 'GNUNET_SYSERROR' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_datastore_plugin.h:239: warning: explicit link request to 'GNUNET_SYSERROR' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:163: warning: argument 'h' from the argument list of GNUNET_DATASTORE_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:163: warning: argument 'rid' from the argument list of GNUNET_DATASTORE_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:163: warning: argument 'key' from the argument list of GNUNET_DATASTORE_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:163: warning: argument 'size' from the argument list of GNUNET_DATASTORE_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:163: warning: argument 'data' from the argument list of GNUNET_DATASTORE_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:163: warning: argument 'type' from the argument list of GNUNET_DATASTORE_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:163: warning: argument 'priority' from the argument list of GNUNET_DATASTORE_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:163: warning: argument 'anonymity' from the argument list of GNUNET_DATASTORE_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:163: warning: argument 'replication' from the argument list of GNUNET_DATASTORE_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:163: warning: argument 'expiration' from the argument list of GNUNET_DATASTORE_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:163: warning: argument 'queue_priority' from the argument list of GNUNET_DATASTORE_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:163: warning: argument 'max_queue_size' from the argument list of GNUNET_DATASTORE_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:163: warning: argument 'cont' from the argument list of GNUNET_DATASTORE_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:163: warning: argument 'cont_cls' from the argument list of GNUNET_DATASTORE_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:200: warning: argument 'queue_priority' from the argument list of GNUNET_DATASTORE_release_reserve has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:200: warning: argument 'max_queue_size' from the argument list of GNUNET_DATASTORE_release_reserve has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:227: warning: argument 'h' from the argument list of GNUNET_DATASTORE_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:227: warning: argument 'key' from the argument list of GNUNET_DATASTORE_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:227: warning: argument 'size' from the argument list of GNUNET_DATASTORE_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:227: warning: argument 'data' from the argument list of GNUNET_DATASTORE_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:227: warning: argument 'queue_priority' from the argument list of GNUNET_DATASTORE_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:227: warning: argument 'max_queue_size' from the argument list of GNUNET_DATASTORE_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:227: warning: argument 'cont' from the argument list of GNUNET_DATASTORE_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:227: warning: argument 'cont_cls' from the argument list of GNUNET_DATASTORE_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:284: warning: argument 'h' from the argument list of GNUNET_DATASTORE_get_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:284: warning: argument 'next_uid' from the argument list of GNUNET_DATASTORE_get_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:284: warning: argument 'random' from the argument list of GNUNET_DATASTORE_get_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:284: warning: argument 'key' from the argument list of GNUNET_DATASTORE_get_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:284: warning: argument 'type' from the argument list of GNUNET_DATASTORE_get_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:284: warning: argument 'queue_priority' from the argument list of GNUNET_DATASTORE_get_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:284: warning: argument 'max_queue_size' from the argument list of GNUNET_DATASTORE_get_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:284: warning: argument 'proc' from the argument list of GNUNET_DATASTORE_get_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:284: warning: argument 'proc_cls' from the argument list of GNUNET_DATASTORE_get_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:312: warning: argument 'h' from the argument list of GNUNET_DATASTORE_get_zero_anonymity has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:312: warning: argument 'next_uid' from the argument list of GNUNET_DATASTORE_get_zero_anonymity has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:312: warning: argument 'queue_priority' from the argument list of GNUNET_DATASTORE_get_zero_anonymity has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:312: warning: argument 'max_queue_size' from the argument list of GNUNET_DATASTORE_get_zero_anonymity has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:312: warning: argument 'type' from the argument list of GNUNET_DATASTORE_get_zero_anonymity has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:312: warning: argument 'proc' from the argument list of GNUNET_DATASTORE_get_zero_anonymity has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:312: warning: argument 'proc_cls' from the argument list of GNUNET_DATASTORE_get_zero_anonymity has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_dht_service.h:297: warning: explicit link request to 'GNUNET_BLOCK_evaluate' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_disk_lib.h:673: warning: argument 'glob_patterb' of command @param is not found in the argument list of GNUNET_DISK_glob(const char *glob_pattern, GNUNET_FileNameCallback callback, void *callback_cls) -/home/william/Git/gnunet/src/include/gnunet_disk_lib.h:683: warning: The following parameter of GNUNET_DISK_glob(const char *glob_pattern, GNUNET_FileNameCallback callback, void *callback_cls) is not documented: - parameter 'glob_pattern' -/home/william/Git/gnunet/src/include/gnunet_dns_service.h:140: warning: argument 'rh' from the argument list of GNUNET_DNS_request_forward has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_dns_service.h:164: warning: argument 'rh' from the argument list of GNUNET_DNS_request_answer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_dns_service.h:164: warning: argument 'reply_length' from the argument list of GNUNET_DNS_request_answer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_dns_service.h:164: warning: argument 'reply' from the argument list of GNUNET_DNS_request_answer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_dnsparser_lib.h:581: warning: argument 'name' from the argument list of GNUNET_DNSPARSER_check_name has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_dnsparser_lib.h:718: warning: argument 'dst' from the argument list of GNUNET_DNSPARSER_builder_add_cert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_dnsparser_lib.h:718: warning: argument 'dst_len' from the argument list of GNUNET_DNSPARSER_builder_add_cert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_dnsparser_lib.h:718: warning: argument 'off' from the argument list of GNUNET_DNSPARSER_builder_add_cert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_dnsparser_lib.h:718: warning: argument 'cert' from the argument list of GNUNET_DNSPARSER_builder_add_cert has multiple @param documentation sections -/home/william/Git/gnunet/src/util/dnsstub.c:697: warning: argument 'retry_frequ' of command @param is not found in the argument list of GNUNET_DNSSTUB_set_retry(struct GNUNET_DNSSTUB_Context *ctx, struct GNUNET_TIME_Relative retry_freq) -/home/william/Git/gnunet/src/include/gnunet_dnsstub_lib.h:95: warning: argument 'ctx' from the argument list of GNUNET_DNSSTUB_set_retry has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_dnsstub_lib.h:134: warning: argument 'ctx' from the argument list of GNUNET_DNSSTUB_resolve has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_dnsstub_lib.h:134: warning: argument 'request' from the argument list of GNUNET_DNSSTUB_resolve has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_dnsstub_lib.h:134: warning: argument 'request_len' from the argument list of GNUNET_DNSSTUB_resolve has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_dnsstub_lib.h:134: warning: argument 'rc' from the argument list of GNUNET_DNSSTUB_resolve has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_dnsstub_lib.h:134: warning: argument 'rc_cls' from the argument list of GNUNET_DNSSTUB_resolve has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fragmentation_lib.h:94: warning: argument 'stats' from the argument list of GNUNET_FRAGMENT_context_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fragmentation_lib.h:94: warning: argument 'mtu' from the argument list of GNUNET_FRAGMENT_context_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fragmentation_lib.h:94: warning: argument 'tracker' from the argument list of GNUNET_FRAGMENT_context_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fragmentation_lib.h:94: warning: argument 'msg_delay' from the argument list of GNUNET_FRAGMENT_context_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fragmentation_lib.h:94: warning: argument 'ack_delay' from the argument list of GNUNET_FRAGMENT_context_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fragmentation_lib.h:94: warning: argument 'msg' from the argument list of GNUNET_FRAGMENT_context_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fragmentation_lib.h:94: warning: argument 'proc' from the argument list of GNUNET_FRAGMENT_context_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fragmentation_lib.h:94: warning: argument 'proc_cls' from the argument list of GNUNET_FRAGMENT_context_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:118: warning: argument 'uri' from the argument list of GNUNET_FS_uri_to_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:118: warning: argument 'key' from the argument list of GNUNET_FS_uri_to_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:210: warning: argument 'uri' from the argument list of GNUNET_FS_uri_ksk_get_keywords has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:210: warning: argument 'iterator' from the argument list of GNUNET_FS_uri_ksk_get_keywords has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:210: warning: argument 'iterator_cls' from the argument list of GNUNET_FS_uri_ksk_get_keywords has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:273: warning: argument 'u1' from the argument list of GNUNET_FS_uri_ksk_merge has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:273: warning: argument 'u2' from the argument list of GNUNET_FS_uri_ksk_merge has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:361: warning: argument 'ns' from the argument list of GNUNET_FS_uri_sks_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:361: warning: argument 'id' from the argument list of GNUNET_FS_uri_sks_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:374: warning: argument 'uri' from the argument list of GNUNET_FS_uri_sks_get_namespace has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:374: warning: argument 'pseudonym' from the argument list of GNUNET_FS_uri_sks_get_namespace has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:416: warning: argument 'uri' from the argument list of GNUNET_FS_uri_chk_get_file_size has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:462: warning: argument 'metadata' of command @param is not found in the argument list of GNUNET_FS_GETOPT_METADATA(char shortName, const char *name, const char *argumentHelp, const char *description, struct GNUNET_CONTAINER_MetaData **meta) -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:438: warning: The following parameter of GNUNET_FS_GETOPT_METADATA(char shortName, const char *name, const char *argumentHelp, const char *description, struct GNUNET_CONTAINER_MetaData **meta) is not documented: - parameter 'meta' -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1766: warning: argument 'h' from the argument list of GNUNET_FS_file_information_create_from_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1766: warning: argument 'client_info' from the argument list of GNUNET_FS_file_information_create_from_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1766: warning: argument 'filename' from the argument list of GNUNET_FS_file_information_create_from_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1766: warning: argument 'keywords' from the argument list of GNUNET_FS_file_information_create_from_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1766: warning: argument 'meta' from the argument list of GNUNET_FS_file_information_create_from_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1766: warning: argument 'do_index' from the argument list of GNUNET_FS_file_information_create_from_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1766: warning: argument 'bo' from the argument list of GNUNET_FS_file_information_create_from_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1795: warning: argument 'h' from the argument list of GNUNET_FS_file_information_create_from_data has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1795: warning: argument 'client_info' from the argument list of GNUNET_FS_file_information_create_from_data has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1795: warning: argument 'length' from the argument list of GNUNET_FS_file_information_create_from_data has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1795: warning: argument 'data' from the argument list of GNUNET_FS_file_information_create_from_data has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1795: warning: argument 'keywords' from the argument list of GNUNET_FS_file_information_create_from_data has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1795: warning: argument 'meta' from the argument list of GNUNET_FS_file_information_create_from_data has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1795: warning: argument 'do_index' from the argument list of GNUNET_FS_file_information_create_from_data has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1795: warning: argument 'bo' from the argument list of GNUNET_FS_file_information_create_from_data has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1853: warning: argument 'h' from the argument list of GNUNET_FS_file_information_create_from_reader has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1853: warning: argument 'client_info' from the argument list of GNUNET_FS_file_information_create_from_reader has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1853: warning: argument 'length' from the argument list of GNUNET_FS_file_information_create_from_reader has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1853: warning: argument 'reader' from the argument list of GNUNET_FS_file_information_create_from_reader has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1853: warning: argument 'reader_cls' from the argument list of GNUNET_FS_file_information_create_from_reader has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1853: warning: argument 'keywords' from the argument list of GNUNET_FS_file_information_create_from_reader has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1853: warning: argument 'meta' from the argument list of GNUNET_FS_file_information_create_from_reader has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1853: warning: argument 'do_index' from the argument list of GNUNET_FS_file_information_create_from_reader has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1853: warning: argument 'bo' from the argument list of GNUNET_FS_file_information_create_from_reader has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1880: warning: argument 'h' from the argument list of GNUNET_FS_file_information_create_empty_directory has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1880: warning: argument 'client_info' from the argument list of GNUNET_FS_file_information_create_empty_directory has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1880: warning: argument 'keywords' from the argument list of GNUNET_FS_file_information_create_empty_directory has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1880: warning: argument 'meta' from the argument list of GNUNET_FS_file_information_create_empty_directory has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1880: warning: argument 'bo' from the argument list of GNUNET_FS_file_information_create_empty_directory has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1880: warning: argument 'filename' from the argument list of GNUNET_FS_file_information_create_empty_directory has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1915: warning: argument 'dir' from the argument list of GNUNET_FS_file_information_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1915: warning: argument 'ent' from the argument list of GNUNET_FS_file_information_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2005: warning: argument 'pc' from the argument list of GNUNET_FS_publish_stop has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2042: warning: argument 'h' from the argument list of GNUNET_FS_publish_ksk has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2042: warning: argument 'ksk_uri' from the argument list of GNUNET_FS_publish_ksk has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2042: warning: argument 'meta' from the argument list of GNUNET_FS_publish_ksk has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2042: warning: argument 'uri' from the argument list of GNUNET_FS_publish_ksk has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2042: warning: argument 'bo' from the argument list of GNUNET_FS_publish_ksk has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2042: warning: argument 'options' from the argument list of GNUNET_FS_publish_ksk has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2042: warning: argument 'cont' from the argument list of GNUNET_FS_publish_ksk has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2042: warning: argument 'cont_cls' from the argument list of GNUNET_FS_publish_ksk has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2082: warning: argument 'h' from the argument list of GNUNET_FS_publish_sks has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2082: warning: argument 'ns' from the argument list of GNUNET_FS_publish_sks has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2082: warning: argument 'identifier' from the argument list of GNUNET_FS_publish_sks has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2082: warning: argument 'update' from the argument list of GNUNET_FS_publish_sks has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2082: warning: argument 'meta' from the argument list of GNUNET_FS_publish_sks has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2082: warning: argument 'uri' from the argument list of GNUNET_FS_publish_sks has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2082: warning: argument 'bo' from the argument list of GNUNET_FS_publish_sks has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2082: warning: argument 'options' from the argument list of GNUNET_FS_publish_sks has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2082: warning: argument 'cont' from the argument list of GNUNET_FS_publish_sks has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2082: warning: argument 'cont_cls' from the argument list of GNUNET_FS_publish_sks has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2131: warning: argument 'h' from the argument list of GNUNET_FS_get_indexed_files has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2131: warning: argument 'iterator' from the argument list of GNUNET_FS_get_indexed_files has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2131: warning: argument 'iterator_cls' from the argument list of GNUNET_FS_get_indexed_files has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2209: warning: argument 'h' from the argument list of GNUNET_FS_namespace_list_updateable has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2209: warning: argument 'ns' from the argument list of GNUNET_FS_namespace_list_updateable has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2209: warning: argument 'next_id' from the argument list of GNUNET_FS_namespace_list_updateable has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2209: warning: argument 'ip' from the argument list of GNUNET_FS_namespace_list_updateable has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2209: warning: argument 'ip_cls' from the argument list of GNUNET_FS_namespace_list_updateable has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2378: warning: argument 'h' from the argument list of GNUNET_FS_download_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2378: warning: argument 'uri' from the argument list of GNUNET_FS_download_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2378: warning: argument 'meta' from the argument list of GNUNET_FS_download_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2378: warning: argument 'filename' from the argument list of GNUNET_FS_download_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2378: warning: argument 'tempname' from the argument list of GNUNET_FS_download_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2378: warning: argument 'offset' from the argument list of GNUNET_FS_download_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2378: warning: argument 'length' from the argument list of GNUNET_FS_download_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2378: warning: argument 'anonymity' from the argument list of GNUNET_FS_download_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2378: warning: argument 'options' from the argument list of GNUNET_FS_download_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2378: warning: argument 'cctx' from the argument list of GNUNET_FS_download_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2378: warning: argument 'parent' from the argument list of GNUNET_FS_download_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2422: warning: argument 'h' from the argument list of GNUNET_FS_download_start_from_search has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2422: warning: argument 'sr' from the argument list of GNUNET_FS_download_start_from_search has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2422: warning: argument 'filename' from the argument list of GNUNET_FS_download_start_from_search has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2422: warning: argument 'tempname' from the argument list of GNUNET_FS_download_start_from_search has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2422: warning: argument 'offset' from the argument list of GNUNET_FS_download_start_from_search has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2422: warning: argument 'length' from the argument list of GNUNET_FS_download_start_from_search has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2422: warning: argument 'anonymity' from the argument list of GNUNET_FS_download_start_from_search has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2422: warning: argument 'options' from the argument list of GNUNET_FS_download_start_from_search has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2422: warning: argument 'cctx' from the argument list of GNUNET_FS_download_start_from_search has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2544: warning: argument 'size' from the argument list of GNUNET_FS_directory_list_contents has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2544: warning: argument 'data' from the argument list of GNUNET_FS_directory_list_contents has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2544: warning: argument 'offset' from the argument list of GNUNET_FS_directory_list_contents has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2544: warning: argument 'dep' from the argument list of GNUNET_FS_directory_list_contents has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2544: warning: argument 'dep_cls' from the argument list of GNUNET_FS_directory_list_contents has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2577: warning: argument 'bld' from the argument list of GNUNET_FS_directory_builder_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2577: warning: argument 'uri' from the argument list of GNUNET_FS_directory_builder_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2577: warning: argument 'md' from the argument list of GNUNET_FS_directory_builder_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2577: warning: argument 'data' from the argument list of GNUNET_FS_directory_builder_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2736: warning: argument 'filename' from the argument list of GNUNET_FS_directory_scan_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2736: warning: argument 'disable_extractor' from the argument list of GNUNET_FS_directory_scan_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2736: warning: argument 'ex' from the argument list of GNUNET_FS_directory_scan_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2736: warning: argument 'cb' from the argument list of GNUNET_FS_directory_scan_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2736: warning: argument 'cb_cls' from the argument list of GNUNET_FS_directory_scan_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2762: warning: argument 'ds' from the argument list of GNUNET_FS_directory_scan_get_result has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_getopt_lib.h:170: warning: argument 'val' of command @param is not found in the argument list of GNUNET_GETOPT_option_timetravel(char shortName, const char *name) -/home/william/Git/gnunet/src/include/gnunet_getopt_lib.h:404: warning: argument 'argumentHelp' of command @param is not found in the argument list of GNUNET_GETOPT_option_increment_uint(char shortName, const char *name, const char *description, unsigned int *val) -/home/william/Git/gnunet/src/include/gnunet_gns_service.h:86: warning: argument 'handle' from the argument list of GNUNET_GNS_disconnect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gns_service.h:138: warning: argument 'handle' from the argument list of GNUNET_GNS_lookup has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gns_service.h:138: warning: argument 'name' from the argument list of GNUNET_GNS_lookup has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gns_service.h:138: warning: argument 'zone' from the argument list of GNUNET_GNS_lookup has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gns_service.h:138: warning: argument 'type' from the argument list of GNUNET_GNS_lookup has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gns_service.h:138: warning: argument 'options' from the argument list of GNUNET_GNS_lookup has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gns_service.h:138: warning: argument 'proc' from the argument list of GNUNET_GNS_lookup has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gns_service.h:138: warning: argument 'proc_cls' from the argument list of GNUNET_GNS_lookup has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gns_service.h:213: warning: argument 'handle' from the argument list of GNUNET_GNS_lookup_with_tld has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gns_service.h:213: warning: argument 'name' from the argument list of GNUNET_GNS_lookup_with_tld has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gns_service.h:213: warning: argument 'type' from the argument list of GNUNET_GNS_lookup_with_tld has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gns_service.h:213: warning: argument 'options' from the argument list of GNUNET_GNS_lookup_with_tld has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gns_service.h:213: warning: argument 'proc' from the argument list of GNUNET_GNS_lookup_with_tld has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gns_service.h:213: warning: argument 'proc_cls' from the argument list of GNUNET_GNS_lookup_with_tld has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:661: warning: explicit link request to 'GNUNET_GNSRECORD_PublicKey' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_json_lib.h:53: warning: argument 'gnsrecord_object' of command @param is not found in the argument list of GNUNET_GNSRECORD_JSON_spec_gnsrecord(struct GNUNET_GNSRECORD_Data **rd, unsigned int *rd_count, char **name) -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_json_lib.h:1: warning: The following parameters of GNUNET_GNSRECORD_JSON_spec_gnsrecord(struct GNUNET_GNSRECORD_Data **rd, unsigned int *rd_count, char **name) are not documented: - parameter 'rd' - parameter 'rd_count' - parameter 'name' -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_json_lib.h:71: warning: The following parameter of GNUNET_GNSRECORD_JSON_from_gnsrecord(const char *rname, const struct GNUNET_GNSRECORD_Data *rd, unsigned int rd_count) is not documented: - parameter 'rd_count' -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:335: warning: argument 'type' from the argument list of GNUNET_GNSRECORD_value_to_string has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:335: warning: argument 'data' from the argument list of GNUNET_GNSRECORD_value_to_string has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:335: warning: argument 'data_size' from the argument list of GNUNET_GNSRECORD_value_to_string has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:350: warning: argument 'type' from the argument list of GNUNET_GNSRECORD_string_to_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:350: warning: argument 's' from the argument list of GNUNET_GNSRECORD_string_to_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:350: warning: argument 'data' from the argument list of GNUNET_GNSRECORD_string_to_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:350: warning: argument 'data_size' from the argument list of GNUNET_GNSRECORD_string_to_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:361: warning: argument 'dns_typename' from the argument list of GNUNET_GNSRECORD_typename_to_number has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:385: warning: argument 'rd_count' from the argument list of GNUNET_GNSRECORD_records_get_size has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:385: warning: argument 'rd' from the argument list of GNUNET_GNSRECORD_records_get_size has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:399: warning: argument 'rd_count' from the argument list of GNUNET_GNSRECORD_records_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:399: warning: argument 'rd' from the argument list of GNUNET_GNSRECORD_records_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:399: warning: argument 'dest_size' from the argument list of GNUNET_GNSRECORD_records_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:399: warning: argument 'dest' from the argument list of GNUNET_GNSRECORD_records_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:417: warning: argument 'len' from the argument list of GNUNET_GNSRECORD_records_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:417: warning: argument 'src' from the argument list of GNUNET_GNSRECORD_records_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:417: warning: argument 'rd_count' from the argument list of GNUNET_GNSRECORD_records_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:417: warning: argument 'dest' from the argument list of GNUNET_GNSRECORD_records_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:456: warning: argument 'z' from the argument list of GNUNET_GNSRECORD_z2s has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:470: warning: argument 'pkey' from the argument list of GNUNET_GNSRECORD_pkey_to_zkey has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:483: warning: argument 'zkey' from the argument list of GNUNET_GNSRECORD_zkey_to_pkey has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:483: warning: argument 'pkey' from the argument list of GNUNET_GNSRECORD_zkey_to_pkey has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:508: warning: argument 'pub' from the argument list of GNUNET_GNSRECORD_query_from_public_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:508: warning: argument 'label' from the argument list of GNUNET_GNSRECORD_query_from_public_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:508: warning: argument 'query' from the argument list of GNUNET_GNSRECORD_query_from_public_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:528: warning: argument 'result' of command @param is not found in the argument list of GNUNET_GNSRECORD_block_create(const struct GNUNET_IDENTITY_PrivateKey *key, struct GNUNET_TIME_Absolute expire, const char *label, const struct GNUNET_GNSRECORD_Data *rd, unsigned int rd_count, struct GNUNET_GNSRECORD_Block **block) -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:522: warning: The following parameter of GNUNET_GNSRECORD_block_create(const struct GNUNET_IDENTITY_PrivateKey *key, struct GNUNET_TIME_Absolute expire, const char *label, const struct GNUNET_GNSRECORD_Data *rd, unsigned int rd_count, struct GNUNET_GNSRECORD_Block **block) is not documented: - parameter 'block' -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:593: warning: argument 'block' from the argument list of GNUNET_GNSRECORD_block_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:593: warning: argument 'zone_key' from the argument list of GNUNET_GNSRECORD_block_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:593: warning: argument 'label' from the argument list of GNUNET_GNSRECORD_block_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:593: warning: argument 'proc' from the argument list of GNUNET_GNSRECORD_block_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:593: warning: argument 'proc_cls' from the argument list of GNUNET_GNSRECORD_block_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:607: warning: argument 'a' from the argument list of GNUNET_GNSRECORD_records_cmp has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:607: warning: argument 'b' from the argument list of GNUNET_GNSRECORD_records_cmp has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:661: warning: explicit link request to 'GNUNET_GNSRECORD_PublicKey' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:714: warning: argument 'rd_public_count' of command @param is not found in the argument list of GNUNET_GNSRECORD_normalize_record_set(const char *label, const struct GNUNET_GNSRECORD_Data *rd, unsigned int rd_count, struct GNUNET_GNSRECORD_Data *rd_public, unsigned int *rd_count_public, struct GNUNET_TIME_Absolute *min_expiry, int include_private, char **emsg) -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:636: warning: The following parameter of GNUNET_GNSRECORD_normalize_record_set(const char *label, const struct GNUNET_GNSRECORD_Data *rd, unsigned int rd_count, struct GNUNET_GNSRECORD_Data *rd_public, unsigned int *rd_count_public, struct GNUNET_TIME_Absolute *min_expiry, int include_private, char **emsg) is not documented: - parameter 'rd_count_public' -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:745: warning: argument 'rd_public_count' of command @param is not found in the argument list of GNUNET_GNSRECORD_convert_records_for_export(const char *label, const struct GNUNET_GNSRECORD_Data *rd, unsigned int rd_count, struct GNUNET_GNSRECORD_Data *rd_public, unsigned int *rd_count_public, struct GNUNET_TIME_Absolute *expiry, char **emsg) -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:636: warning: The following parameter of GNUNET_GNSRECORD_convert_records_for_export(const char *label, const struct GNUNET_GNSRECORD_Data *rd, unsigned int rd_count, struct GNUNET_GNSRECORD_Data *rd_public, unsigned int *rd_count_public, struct GNUNET_TIME_Absolute *expiry, char **emsg) is not documented: - parameter 'rd_count_public' -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:140: warning: argument 'peer' from the argument list of GNUNET_HELLO_address_allocate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:140: warning: argument 'transport_name' from the argument list of GNUNET_HELLO_address_allocate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:140: warning: argument 'address' from the argument list of GNUNET_HELLO_address_allocate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:140: warning: argument 'address_length' from the argument list of GNUNET_HELLO_address_allocate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:140: warning: argument 'local_info' from the argument list of GNUNET_HELLO_address_allocate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:166: warning: argument 'a1' from the argument list of GNUNET_HELLO_address_cmp has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:166: warning: argument 'a2' from the argument list of GNUNET_HELLO_address_cmp has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:257: warning: argument 'address' from the argument list of GNUNET_HELLO_add_address has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:257: warning: argument 'expiration' from the argument list of GNUNET_HELLO_add_address has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:257: warning: argument 'target' from the argument list of GNUNET_HELLO_add_address has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:257: warning: argument 'max' from the argument list of GNUNET_HELLO_add_address has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:321: warning: argument 'h1' from the argument list of GNUNET_HELLO_merge has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:321: warning: argument 'h2' from the argument list of GNUNET_HELLO_merge has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:321: warning: argument 'h1' from the argument list of GNUNET_HELLO_equals has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:321: warning: argument 'h2' from the argument list of GNUNET_HELLO_equals has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:321: warning: argument 'now' from the argument list of GNUNET_HELLO_equals has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:386: warning: argument 'msg' from the argument list of GNUNET_HELLO_iterate_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:386: warning: argument 'return_modified' from the argument list of GNUNET_HELLO_iterate_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:386: warning: argument 'it' from the argument list of GNUNET_HELLO_iterate_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:386: warning: argument 'it_cls' from the argument list of GNUNET_HELLO_iterate_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:406: warning: argument 'new_hello' from the argument list of GNUNET_HELLO_iterate_new_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:406: warning: argument 'old_hello' from the argument list of GNUNET_HELLO_iterate_new_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:406: warning: argument 'expiration_limit' from the argument list of GNUNET_HELLO_iterate_new_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:406: warning: argument 'it' from the argument list of GNUNET_HELLO_iterate_new_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:406: warning: argument 'it_cls' from the argument list of GNUNET_HELLO_iterate_new_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/hello/hello-ng.c:58: warning: argument 'out' of command @param is not found in the argument list of GNUNET_HELLO_sign_address(const char *address, enum GNUNET_NetworkType nt, struct GNUNET_TIME_Absolute mono_time, const struct GNUNET_CRYPTO_EddsaPrivateKey *private_key, void **result, size_t *result_size) -/home/william/Git/gnunet/src/hello/hello-ng.c:58: warning: argument 'out' of command @param is not found in the argument list of GNUNET_HELLO_sign_address(const char *address, enum GNUNET_NetworkType nt, struct GNUNET_TIME_Absolute mono_time, const struct GNUNET_CRYPTO_EddsaPrivateKey *private_key, void **result, size_t *result_size) -/home/william/Git/gnunet/src/hello/hello-ng.c:58: warning: argument 'out' of command @param is not found in the argument list of GNUNET_HELLO_sign_address(const char *address, enum GNUNET_NetworkType nt, struct GNUNET_TIME_Absolute mono_time, const struct GNUNET_CRYPTO_EddsaPrivateKey *private_key, void **result, size_t *result_size) -/home/william/Git/gnunet/src/hello/hello-ng.c:58: warning: argument 'out' of command @param is not found in the argument list of GNUNET_HELLO_sign_address(const char *address, enum GNUNET_NetworkType nt, struct GNUNET_TIME_Absolute mono_time, const struct GNUNET_CRYPTO_EddsaPrivateKey *private_key, void **result, size_t *result_size) -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:492: warning: argument 'address' from the argument list of GNUNET_HELLO_sign_address has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:492: warning: argument 'nt' from the argument list of GNUNET_HELLO_sign_address has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:492: warning: argument 'mono_time' from the argument list of GNUNET_HELLO_sign_address has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:492: warning: argument 'private_key' from the argument list of GNUNET_HELLO_sign_address has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:492: warning: argument 'result' from the argument list of GNUNET_HELLO_sign_address has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:492: warning: argument 'result_size' from the argument list of GNUNET_HELLO_sign_address has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:503: warning: argument 'out' of command @param is not found in the argument list of GNUNET_HELLO_extract_address(const void *raw, size_t raw_size, const struct GNUNET_PeerIdentity *pid, enum GNUNET_NetworkType *nt, struct GNUNET_TIME_Absolute *mono_time) -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:503: warning: argument 'out' of command @param is not found in the argument list of GNUNET_HELLO_extract_address(const void *raw, size_t raw_size, const struct GNUNET_PeerIdentity *pid, enum GNUNET_NetworkType *nt, struct GNUNET_TIME_Absolute *mono_time) -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:81: warning: argument 'with_control_pipe' from the argument list of GNUNET_HELPER_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:81: warning: argument 'binary_name' from the argument list of GNUNET_HELPER_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:81: warning: argument 'binary_argv' from the argument list of GNUNET_HELPER_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:81: warning: argument 'cb' from the argument list of GNUNET_HELPER_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:81: warning: argument 'exp_cb' from the argument list of GNUNET_HELPER_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:81: warning: argument 'cb_cls' from the argument list of GNUNET_HELPER_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:99: warning: argument 'h' from the argument list of GNUNET_HELPER_kill has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:99: warning: argument 'soft_kill' from the argument list of GNUNET_HELPER_kill has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:111: warning: argument 'h' from the argument list of GNUNET_HELPER_wait has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:132: warning: argument 'h' from the argument list of GNUNET_HELPER_stop has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:132: warning: argument 'soft_kill' from the argument list of GNUNET_HELPER_stop has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:167: warning: argument 'h' from the argument list of GNUNET_HELPER_send has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:167: warning: argument 'msg' from the argument list of GNUNET_HELPER_send has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:167: warning: argument 'can_drop' from the argument list of GNUNET_HELPER_send has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:167: warning: argument 'cont' from the argument list of GNUNET_HELPER_send has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:167: warning: argument 'cont_cls' from the argument list of GNUNET_HELPER_send has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:257: warning: argument 'cfg' from the argument list of GNUNET_IDENTITY_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:257: warning: argument 'cb' from the argument list of GNUNET_IDENTITY_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:257: warning: argument 'cb_cls' from the argument list of GNUNET_IDENTITY_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:262: warning: argument 'id' of command @param is not found in the argument list of GNUNET_IDENTITY_get(struct GNUNET_IDENTITY_Handle *h, const char *service_name, GNUNET_IDENTITY_Callback cb, void *cb_cls) -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:272: warning: argument 'service_name' from the argument list of GNUNET_IDENTITY_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:272: warning: argument 'cb' from the argument list of GNUNET_IDENTITY_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:272: warning: argument 'cb_cls' from the argument list of GNUNET_IDENTITY_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:290: warning: argument 'id' of command @param is not found in the argument list of GNUNET_IDENTITY_set(struct GNUNET_IDENTITY_Handle *h, const char *service_name, struct GNUNET_IDENTITY_Ego *ego, GNUNET_IDENTITY_Continuation cont, void *cont_cls) -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:301: warning: argument 'service_name' from the argument list of GNUNET_IDENTITY_set has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:301: warning: argument 'ego' from the argument list of GNUNET_IDENTITY_set has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:301: warning: argument 'cont' from the argument list of GNUNET_IDENTITY_set has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:301: warning: argument 'cont_cls' from the argument list of GNUNET_IDENTITY_set has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:314: warning: argument 'h' from the argument list of GNUNET_IDENTITY_disconnect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:352: warning: argument 'id' of command @param is not found in the argument list of GNUNET_IDENTITY_rename(struct GNUNET_IDENTITY_Handle *h, const char *old_name, const char *new_name, GNUNET_IDENTITY_Continuation cb, void *cb_cls) -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:363: warning: argument 'old_name' from the argument list of GNUNET_IDENTITY_rename has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:363: warning: argument 'new_name' from the argument list of GNUNET_IDENTITY_rename has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:363: warning: argument 'cb' from the argument list of GNUNET_IDENTITY_rename has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:363: warning: argument 'cb_cls' from the argument list of GNUNET_IDENTITY_rename has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:370: warning: argument 'id' of command @param is not found in the argument list of GNUNET_IDENTITY_delete(struct GNUNET_IDENTITY_Handle *h, const char *name, GNUNET_IDENTITY_Continuation cb, void *cb_cls) -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:380: warning: argument 'name' from the argument list of GNUNET_IDENTITY_delete has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:380: warning: argument 'cb' from the argument list of GNUNET_IDENTITY_delete has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:380: warning: argument 'cb_cls' from the argument list of GNUNET_IDENTITY_delete has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:465: warning: argument 'sig' of command @param is not found in the argument list of GNUNET_IDENTITY_signature_get_raw_length_by_type(const uint32_t type) -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:475: warning: The following parameter of GNUNET_IDENTITY_signature_get_raw_length_by_type(const uint32_t type) is not documented: - parameter 'type' -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:832: warning: argument 'name' of command @param is not found in the argument list of GNUNET_IDENTITY_ego_lookup_by_suffix(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *suffix, GNUNET_IDENTITY_EgoSuffixCallback cb, void *cb_cls) -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:845: warning: argument 'cfg' from the argument list of GNUNET_IDENTITY_ego_lookup_by_suffix has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:845: warning: argument 'cb' from the argument list of GNUNET_IDENTITY_ego_lookup_by_suffix has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:845: warning: argument 'cb_cls' from the argument list of GNUNET_IDENTITY_ego_lookup_by_suffix has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:858: warning: argument 'el' from the argument list of GNUNET_IDENTITY_ego_lookup_by_suffix_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:794: warning: found tag without matching -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:794: warning: found tag without matching -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:609: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MESSENGER_connect(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *name, GNUNET_MESSENGER_IdentityCallback identity_callback, void *identity_cls, GNUNET_MESSENGER_MessageCallback msg_callback, void *msg_cls) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:609: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MESSENGER_connect(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *name, GNUNET_MESSENGER_IdentityCallback identity_callback, void *identity_cls, GNUNET_MESSENGER_MessageCallback msg_callback, void *msg_cls) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:609: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MESSENGER_connect(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *name, GNUNET_MESSENGER_IdentityCallback identity_callback, void *identity_cls, GNUNET_MESSENGER_MessageCallback msg_callback, void *msg_cls) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:609: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MESSENGER_connect(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *name, GNUNET_MESSENGER_IdentityCallback identity_callback, void *identity_cls, GNUNET_MESSENGER_MessageCallback msg_callback, void *msg_cls) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:622: warning: The following parameters of GNUNET_MESSENGER_connect(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *name, GNUNET_MESSENGER_IdentityCallback identity_callback, void *identity_cls, GNUNET_MESSENGER_MessageCallback msg_callback, void *msg_cls) are not documented: - parameter 'identity_cls' - parameter 'msg_cls' -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:629: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MESSENGER_update(struct GNUNET_MESSENGER_Handle *handle) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:629: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MESSENGER_update(struct GNUNET_MESSENGER_Handle *handle) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:641: warning: The following parameter of GNUNET_MESSENGER_update(struct GNUNET_MESSENGER_Handle *handle) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:645: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MESSENGER_disconnect(struct GNUNET_MESSENGER_Handle *handle) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:645: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MESSENGER_disconnect(struct GNUNET_MESSENGER_Handle *handle) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:649: warning: The following parameter of GNUNET_MESSENGER_disconnect(struct GNUNET_MESSENGER_Handle *handle) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:660: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MESSENGER_set_name(struct GNUNET_MESSENGER_Handle *handle, const char *name) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:660: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MESSENGER_set_name(struct GNUNET_MESSENGER_Handle *handle, const char *name) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:670: warning: The following parameter of GNUNET_MESSENGER_set_name(struct GNUNET_MESSENGER_Handle *handle, const char *name) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:682: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MESSENGER_open_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:682: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MESSENGER_open_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:699: warning: The following parameter of GNUNET_MESSENGER_open_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:704: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MESSENGER_enter_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:704: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MESSENGER_enter_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:721: warning: The following parameter of GNUNET_MESSENGER_enter_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:725: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MESSENGER_close_room(struct GNUNET_MESSENGER_Room *room) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:725: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MESSENGER_close_room(struct GNUNET_MESSENGER_Room *room) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:735: warning: The following parameter of GNUNET_MESSENGER_close_room(struct GNUNET_MESSENGER_Room *room) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:794: warning: found tag without matching -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:794: warning: found tag without matching -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:794: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MESSENGER_send_message(struct GNUNET_MESSENGER_Room *room, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_MESSENGER_Contact *contact) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:794: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MESSENGER_send_message(struct GNUNET_MESSENGER_Room *room, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_MESSENGER_Contact *contact) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:813: warning: The following parameter of GNUNET_MESSENGER_send_message(struct GNUNET_MESSENGER_Room *room, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_MESSENGER_Contact *contact) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:131: warning: explicit link request to 'GNUNET_MQ_extract_nexted_mh' could not be resolved -[generated]:27: warning: end of comment block while expecting command -[generated]:5: warning: found tag without matching -[generated]:39: warning: end of comment block while expecting command -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:1031: warning: explicit link request to 'gnunet_mq_impl_send_continue' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:623: warning: argument 'an' of command @param is not found in the argument list of GNUNET_MQ_check_zero_termination(m) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:633: warning: The following parameter of GNUNET_MQ_check_zero_termination(m) is not documented: - parameter 'm' -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:647: warning: argument 'an' of command @param is not found in the argument list of GNUNET_MQ_check_boxed_message(m) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:659: warning: The following parameter of GNUNET_MQ_check_boxed_message(m) is not documented: - parameter 'm' -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:275: warning: explicit link request to 'GNUNET_MQ_PREF_CORKING_ALLOWED' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:131: warning: explicit link request to 'GNUNET_MQ_extract_nexted_mh' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:385: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_head(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:385: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_head(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:385: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_head(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:385: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_head(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:385: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_head(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:385: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_head(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:398: warning: The following parameters of GNUNET_MQ_dll_insert_head(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) are not documented: - parameter 'env_head' - parameter 'env_tail' - parameter 'env' -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:403: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_tail(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:403: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_tail(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:403: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_tail(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:403: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_tail(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:403: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_tail(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:403: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_tail(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:416: warning: The following parameters of GNUNET_MQ_dll_insert_tail(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) are not documented: - parameter 'env_head' - parameter 'env_tail' - parameter 'env' -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:422: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MQ_dll_remove(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:422: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MQ_dll_remove(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:422: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MQ_dll_remove(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:422: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MQ_dll_remove(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:422: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MQ_dll_remove(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:422: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MQ_dll_remove(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:434: warning: The following parameters of GNUNET_MQ_dll_remove(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) are not documented: - parameter 'env_head' - parameter 'env_tail' - parameter 'env' -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:1031: warning: explicit link request to 'gnunet_mq_impl_send_continue' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_mst_lib.h:64: warning: explicit link request to 'GNUNET_mst_destroy' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_mst_lib.h:107: warning: argument 'mst' from the argument list of GNUNET_MST_from_buffer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_mst_lib.h:107: warning: argument 'buf' from the argument list of GNUNET_MST_from_buffer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_mst_lib.h:107: warning: argument 'size' from the argument list of GNUNET_MST_from_buffer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_mst_lib.h:107: warning: argument 'purge' from the argument list of GNUNET_MST_from_buffer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_mst_lib.h:107: warning: argument 'one_shot' from the argument list of GNUNET_MST_from_buffer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_mst_lib.h:116: warning: argument 'buf' of command @param is not found in the argument list of GNUNET_MST_read(struct GNUNET_MessageStreamTokenizer *mst, struct GNUNET_NETWORK_Handle *sock, int purge, int one_shot) -/home/william/Git/gnunet/src/include/gnunet_mst_lib.h:116: warning: argument 'size' of command @param is not found in the argument list of GNUNET_MST_read(struct GNUNET_MessageStreamTokenizer *mst, struct GNUNET_NETWORK_Handle *sock, int purge, int one_shot) -/home/william/Git/gnunet/src/include/gnunet_mst_lib.h:129: warning: The following parameter of GNUNET_MST_read(struct GNUNET_MessageStreamTokenizer *mst, struct GNUNET_NETWORK_Handle *sock, int purge, int one_shot) is not documented: - parameter 'sock' -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:470: warning: explicit link request to 'GNUNET_MY_exect_prepared()' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:355: warning: Found unknown command '\spec' -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:356: warning: Found unknown command '\spec' -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:125: warning: Found unknown command '\oaran' -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:74: warning: argument 'ptr' from the argument list of GNUNET_MY_query_param_fixed_size has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:145: warning: argument 'mc' from the argument list of GNUNET_MY_exec_prepared has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:145: warning: argument 'sh' from the argument list of GNUNET_MY_exec_prepared has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:145: warning: argument 'params' from the argument list of GNUNET_MY_exec_prepared has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:260: warning: Found unknown command '\spec' -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:261: warning: Found unknown command '\oaran' -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:260: warning: argument 'name' of command @param is not found in the argument list of GNUNET_MY_result_spec_fixed_size(void *ptr, size_t ptr_size) -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:260: warning: argument 'dst' of command @param is not found in the argument list of GNUNET_MY_result_spec_fixed_size(void *ptr, size_t ptr_size) -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:185: warning: The following parameter of GNUNET_MY_result_spec_fixed_size(void *ptr, size_t ptr_size) is not documented: - parameter 'ptr' -/home/william/Git/gnunet/src/my/my_result_helper.c:132: warning: argument 'sptr' of command @param is not found in the argument list of GNUNET_MY_result_spec_variable_size(void **dst, size_t *ptr_size) -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:185: warning: argument 'dst' from the argument list of GNUNET_MY_result_spec_variable_size has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:377: warning: argument 'name' of command @param is not found in the argument list of GNUNET_MY_result_spec_rsa_public_key(struct GNUNET_CRYPTO_RsaPublicKey **rsa) -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:406: warning: argument 'name' of command @param is not found in the argument list of GNUNET_MY_result_spec_absolute_time(struct GNUNET_TIME_Absolute *at) -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:470: warning: explicit link request to 'GNUNET_MY_exect_prepared()' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:473: warning: explicit link request to 'GNUNET_MY_exect_prepared()' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:477: warning: argument 'qp' from the argument list of GNUNET_MY_cleanup_query has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:477: warning: argument 'qbind' from the argument list of GNUNET_MY_cleanup_query has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:488: warning: argument 'rs' from the argument list of GNUNET_MY_cleanup_result has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_mysql_lib.h:107: warning: argument 'mc' from the argument list of GNUNET_MYSQL_statements_invalidate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_mysql_lib.h:119: warning: argument 'sh' from the argument list of GNUNET_MYSQL_statement_get_stmt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namecache_service.h:80: warning: argument 'cfg' from the argument list of GNUNET_NAMECACHE_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namecache_service.h:91: warning: argument 'h' from the argument list of GNUNET_NAMECACHE_disconnect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namecache_service.h:151: warning: argument 'h' from the argument list of GNUNET_NAMECACHE_lookup_block has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namecache_service.h:151: warning: argument 'derived_hash' from the argument list of GNUNET_NAMECACHE_lookup_block has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namecache_service.h:151: warning: argument 'proc' from the argument list of GNUNET_NAMECACHE_lookup_block has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namecache_service.h:151: warning: argument 'proc_cls' from the argument list of GNUNET_NAMECACHE_lookup_block has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namecache_service.h:166: warning: argument 'qe' from the argument list of GNUNET_NAMECACHE_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:81: warning: argument 'cfg' from the argument list of GNUNET_NAMESTORE_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:92: warning: argument 'h' from the argument list of GNUNET_NAMESTORE_disconnect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:254: warning: argument 'qe' from the argument list of GNUNET_NAMESTORE_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:283: warning: argument 'h' from the argument list of GNUNET_NAMESTORE_zone_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:283: warning: argument 'zone' from the argument list of GNUNET_NAMESTORE_zone_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:283: warning: argument 'error_cb' from the argument list of GNUNET_NAMESTORE_zone_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:283: warning: argument 'error_cb_cls' from the argument list of GNUNET_NAMESTORE_zone_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:283: warning: argument 'proc' from the argument list of GNUNET_NAMESTORE_zone_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:283: warning: argument 'proc_cls' from the argument list of GNUNET_NAMESTORE_zone_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:283: warning: argument 'finish_cb' from the argument list of GNUNET_NAMESTORE_zone_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:283: warning: argument 'finish_cb_cls' from the argument list of GNUNET_NAMESTORE_zone_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:315: warning: argument 'it' from the argument list of GNUNET_NAMESTORE_zone_iteration_stop has multiple @param documentation sections -/home/william/Git/gnunet/src/namestore/namestore_api_monitor.c:279: warning: argument 'cls' of command @param is not found in the argument list of GNUNET_NAMESTORE_zone_monitor_start(const struct GNUNET_CONFIGURATION_Handle *cfg, const struct GNUNET_IDENTITY_PrivateKey *zone, int iterate_first, GNUNET_SCHEDULER_TaskCallback error_cb, void *error_cb_cls, GNUNET_NAMESTORE_RecordMonitor monitor, void *monitor_cls, GNUNET_SCHEDULER_TaskCallback sync_cb, void *sync_cb_cls) -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:352: warning: argument 'cfg' from the argument list of GNUNET_NAMESTORE_zone_monitor_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:352: warning: argument 'zone' from the argument list of GNUNET_NAMESTORE_zone_monitor_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:352: warning: argument 'iterate_first' from the argument list of GNUNET_NAMESTORE_zone_monitor_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:352: warning: argument 'error_cb' from the argument list of GNUNET_NAMESTORE_zone_monitor_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:352: warning: argument 'error_cb_cls' from the argument list of GNUNET_NAMESTORE_zone_monitor_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:352: warning: argument 'monitor' from the argument list of GNUNET_NAMESTORE_zone_monitor_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:352: warning: argument 'monitor_cls' from the argument list of GNUNET_NAMESTORE_zone_monitor_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:352: warning: argument 'sync_cb' from the argument list of GNUNET_NAMESTORE_zone_monitor_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:335: warning: argument 'cfg' from the argument list of GNUNET_NAT_register has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:335: warning: argument 'config_section' from the argument list of GNUNET_NAT_register has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:335: warning: argument 'proto' from the argument list of GNUNET_NAT_register has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:335: warning: argument 'num_addrs' from the argument list of GNUNET_NAT_register has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:335: warning: argument 'addrs' from the argument list of GNUNET_NAT_register has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:335: warning: argument 'addrlens' from the argument list of GNUNET_NAT_register has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:335: warning: argument 'address_callback' from the argument list of GNUNET_NAT_register has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:335: warning: argument 'reversal_callback' from the argument list of GNUNET_NAT_register has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:335: warning: argument 'callback_cls' from the argument list of GNUNET_NAT_register has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:391: warning: argument 'nh' from the argument list of GNUNET_NAT_unregister has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:460: warning: argument 'server' from the argument list of GNUNET_NAT_stun_make_request has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:460: warning: argument 'port' from the argument list of GNUNET_NAT_stun_make_request has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:460: warning: argument 'sock' from the argument list of GNUNET_NAT_stun_make_request has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:460: warning: argument 'cb' from the argument list of GNUNET_NAT_stun_make_request has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:460: warning: argument 'cb_cls' from the argument list of GNUNET_NAT_stun_make_request has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:193: warning: argument 'desc' from the argument list of GNUNET_NETWORK_socket_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:193: warning: argument 'address' from the argument list of GNUNET_NETWORK_socket_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:193: warning: argument 'address_len' from the argument list of GNUNET_NETWORK_socket_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:193: warning: argument 'desc' from the argument list of GNUNET_NETWORK_socket_getsockopt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:193: warning: argument 'level' from the argument list of GNUNET_NETWORK_socket_getsockopt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:193: warning: argument 'optname' from the argument list of GNUNET_NETWORK_socket_getsockopt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:193: warning: argument 'optval' from the argument list of GNUNET_NETWORK_socket_getsockopt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:193: warning: argument 'optlen' from the argument list of GNUNET_NETWORK_socket_getsockopt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:193: warning: argument 'desc' from the argument list of GNUNET_NETWORK_socket_listen has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:193: warning: argument 'backlog' from the argument list of GNUNET_NETWORK_socket_listen has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:262: warning: argument 'desc' from the argument list of GNUNET_NETWORK_socket_recvfrom has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:262: warning: argument 'buffer' from the argument list of GNUNET_NETWORK_socket_recvfrom has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:262: warning: argument 'length' from the argument list of GNUNET_NETWORK_socket_recvfrom has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:262: warning: argument 'src_addr' from the argument list of GNUNET_NETWORK_socket_recvfrom has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:262: warning: argument 'addrlen' from the argument list of GNUNET_NETWORK_socket_recvfrom has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:278: warning: argument 'desc' from the argument list of GNUNET_NETWORK_socket_recv has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:278: warning: argument 'buffer' from the argument list of GNUNET_NETWORK_socket_recv has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:278: warning: argument 'length' from the argument list of GNUNET_NETWORK_socket_recv has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:293: warning: argument 'rfds' from the argument list of GNUNET_NETWORK_socket_select has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:293: warning: argument 'wfds' from the argument list of GNUNET_NETWORK_socket_select has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:293: warning: argument 'efds' from the argument list of GNUNET_NETWORK_socket_select has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:293: warning: argument 'timeout' from the argument list of GNUNET_NETWORK_socket_select has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:308: warning: argument 'desc' from the argument list of GNUNET_NETWORK_socket_send has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:308: warning: argument 'buffer' from the argument list of GNUNET_NETWORK_socket_send has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:308: warning: argument 'length' from the argument list of GNUNET_NETWORK_socket_send has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:325: warning: argument 'desc' from the argument list of GNUNET_NETWORK_socket_sendto has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:325: warning: argument 'message' from the argument list of GNUNET_NETWORK_socket_sendto has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:325: warning: argument 'length' from the argument list of GNUNET_NETWORK_socket_sendto has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:325: warning: argument 'dest_addr' from the argument list of GNUNET_NETWORK_socket_sendto has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:325: warning: argument 'dest_len' from the argument list of GNUNET_NETWORK_socket_sendto has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:397: warning: argument 'fds' from the argument list of GNUNET_NETWORK_fdset_zero has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:419: warning: argument 'fds' from the argument list of GNUNET_NETWORK_fdset_isset has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:419: warning: argument 'desc' from the argument list of GNUNET_NETWORK_fdset_isset has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:430: warning: argument 'dst' from the argument list of GNUNET_NETWORK_fdset_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:430: warning: argument 'src' from the argument list of GNUNET_NETWORK_fdset_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:462: warning: argument 'desc' from the argument list of GNUNET_NETWORK_get_addr has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:483: warning: argument 'to' from the argument list of GNUNET_NETWORK_fdset_copy_native has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:483: warning: argument 'from' from the argument list of GNUNET_NETWORK_fdset_copy_native has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:483: warning: argument 'nfds' from the argument list of GNUNET_NETWORK_fdset_copy_native has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:507: warning: argument 'to' from the argument list of GNUNET_NETWORK_fdset_test_native has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:507: warning: argument 'nfd' from the argument list of GNUNET_NETWORK_fdset_test_native has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:530: warning: argument 'fds' from the argument list of GNUNET_NETWORK_fdset_handle_set_first has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:530: warning: argument 'h' from the argument list of GNUNET_NETWORK_fdset_handle_set_first has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nse_service.h:99: warning: argument 'cfg' from the argument list of GNUNET_NSE_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nse_service.h:99: warning: argument 'func' from the argument list of GNUNET_NSE_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nse_service.h:99: warning: argument 'func_cls' from the argument list of GNUNET_NSE_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nt_lib.h:90: warning: explicit link request to 'GNUNET_ATS_interface_scanner_init()' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_nt_lib.h:81: warning: argument 'is' from the argument list of GNUNET_NT_scanner_get_type has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nt_lib.h:81: warning: argument 'addr' from the argument list of GNUNET_NT_scanner_get_type has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nt_lib.h:81: warning: argument 'addrlen' from the argument list of GNUNET_NT_scanner_get_type has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nt_lib.h:119: warning: argument 'is' from the argument list of GNUNET_NT_scanner_done has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:330: warning: argument 'pd' from the argument list of GNUNET_OS_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:476: warning: argument 'std_inheritance' from the argument list of GNUNET_OS_start_process_vap has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:476: warning: argument 'pipe_stdin' from the argument list of GNUNET_OS_start_process_vap has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:476: warning: argument 'pipe_stdout' from the argument list of GNUNET_OS_start_process_vap has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:476: warning: argument 'pipe_stderr' from the argument list of GNUNET_OS_start_process_vap has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:476: warning: argument 'filename' from the argument list of GNUNET_OS_start_process_vap has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:476: warning: argument 'argv' from the argument list of GNUNET_OS_start_process_vap has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:496: warning: argument 'std_inheritance' from the argument list of GNUNET_OS_start_process has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:496: warning: argument 'pipe_stdin' from the argument list of GNUNET_OS_start_process has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:496: warning: argument 'pipe_stdout' from the argument list of GNUNET_OS_start_process has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:496: warning: argument 'filename' from the argument list of GNUNET_OS_start_process has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:515: warning: argument 'std_inheritance' from the argument list of GNUNET_OS_start_process_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:515: warning: argument 'pipe_stdin' from the argument list of GNUNET_OS_start_process_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:515: warning: argument 'pipe_stdout' from the argument list of GNUNET_OS_start_process_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:515: warning: argument 'pipe_stderr' from the argument list of GNUNET_OS_start_process_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:515: warning: argument 'filename' from the argument list of GNUNET_OS_start_process_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:515: warning: argument 'va' from the argument list of GNUNET_OS_start_process_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:533: warning: argument 'std_inheritance' from the argument list of GNUNET_OS_start_process_v has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:533: warning: argument 'lsocks' from the argument list of GNUNET_OS_start_process_v has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:533: warning: argument 'filename' from the argument list of GNUNET_OS_start_process_v has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:533: warning: argument 'argv' from the argument list of GNUNET_OS_start_process_v has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:584: warning: argument 'cmd' from the argument list of GNUNET_OS_command_stop has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:599: warning: argument 'proc' from the argument list of GNUNET_OS_command_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:599: warning: argument 'proc_cls' from the argument list of GNUNET_OS_command_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:599: warning: argument 'timeout' from the argument list of GNUNET_OS_command_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:599: warning: argument 'binary' from the argument list of GNUNET_OS_command_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:616: warning: argument 'proc' from the argument list of GNUNET_OS_process_status has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:616: warning: argument 'type' from the argument list of GNUNET_OS_process_status has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:616: warning: argument 'code' from the argument list of GNUNET_OS_process_status has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:632: warning: argument 'proc' from the argument list of GNUNET_OS_process_wait has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:645: warning: argument 'proc' from the argument list of GNUNET_OS_process_wait_status has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:645: warning: argument 'type' from the argument list of GNUNET_OS_process_wait_status has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:645: warning: argument 'code' from the argument list of GNUNET_OS_process_wait_status has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:659: warning: argument 'cls' from the argument list of GNUNET_OS_install_parent_control_handler has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peer_lib.h:96: warning: argument 'ids' from the argument list of GNUNET_PEER_decrement_rcs has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peer_lib.h:96: warning: argument 'count' from the argument list of GNUNET_PEER_decrement_rcs has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peer_lib.h:118: warning: argument 'id' from the argument list of GNUNET_PEER_resolve2 has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peerinfo_service.h:70: warning: argument 'cfg' from the argument list of GNUNET_PEERINFO_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peerinfo_service.h:105: warning: argument 'h' from the argument list of GNUNET_PEERINFO_add_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peerinfo_service.h:105: warning: argument 'hello' from the argument list of GNUNET_PEERINFO_add_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peerinfo_service.h:105: warning: argument 'cont' from the argument list of GNUNET_PEERINFO_add_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peerinfo_service.h:105: warning: argument 'cont_cls' from the argument list of GNUNET_PEERINFO_add_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/peerinfo/peerinfo_api.c:470: warning: argument 'timeout' of command @param is not found in the argument list of GNUNET_PEERINFO_iterate(struct GNUNET_PEERINFO_Handle *h, int include_friend_only, const struct GNUNET_PeerIdentity *peer, GNUNET_PEERINFO_Processor callback, void *callback_cls) -/home/william/Git/gnunet/src/include/gnunet_peerinfo_service.h:151: warning: argument 'h' from the argument list of GNUNET_PEERINFO_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peerinfo_service.h:151: warning: argument 'include_friend_only' from the argument list of GNUNET_PEERINFO_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peerinfo_service.h:151: warning: argument 'peer' from the argument list of GNUNET_PEERINFO_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peerinfo_service.h:151: warning: argument 'callback' from the argument list of GNUNET_PEERINFO_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peerinfo_service.h:151: warning: argument 'callback_cls' from the argument list of GNUNET_PEERINFO_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peerstore_service.h:254: warning: argument 'h' from the argument list of GNUNET_PEERSTORE_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peerstore_service.h:254: warning: argument 'sub_system' from the argument list of GNUNET_PEERSTORE_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peerstore_service.h:254: warning: argument 'peer' from the argument list of GNUNET_PEERSTORE_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peerstore_service.h:254: warning: argument 'key' from the argument list of GNUNET_PEERSTORE_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peerstore_service.h:254: warning: argument 'callback' from the argument list of GNUNET_PEERSTORE_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peerstore_service.h:254: warning: argument 'callback_cls' from the argument list of GNUNET_PEERSTORE_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_plugin_lib.h:73: warning: argument 'library_name' from the argument list of GNUNET_PLUGIN_test has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_plugin_lib.h:89: warning: argument 'library_name' from the argument list of GNUNET_PLUGIN_load has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_plugin_lib.h:89: warning: argument 'arg' from the argument list of GNUNET_PLUGIN_load has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_plugin_lib.h:122: warning: argument 'basename' from the argument list of GNUNET_PLUGIN_load_all has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_plugin_lib.h:122: warning: argument 'arg' from the argument list of GNUNET_PLUGIN_load_all has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_plugin_lib.h:122: warning: argument 'cb' from the argument list of GNUNET_PLUGIN_load_all has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_plugin_lib.h:122: warning: argument 'cb_cls' from the argument list of GNUNET_PLUGIN_load_all has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_plugin_lib.h:160: warning: argument 'library_name' from the argument list of GNUNET_PLUGIN_unload has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_plugin_lib.h:160: warning: argument 'arg' from the argument list of GNUNET_PLUGIN_unload has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_program_lib.h:80: warning: explicit link request to 'a' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_program_lib.h:107: warning: explicit link request to 'a' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:347: warning: argument 'attr_name' from the argument list of GNUNET_RECLAIM_attribute_new has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:347: warning: argument 'credential' from the argument list of GNUNET_RECLAIM_attribute_new has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:347: warning: argument 'type' from the argument list of GNUNET_RECLAIM_attribute_new has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:347: warning: argument 'data' from the argument list of GNUNET_RECLAIM_attribute_new has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:347: warning: argument 'data_size' from the argument list of GNUNET_RECLAIM_attribute_new has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:355: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_attribute_list_serialize_get_size(const struct GNUNET_RECLAIM_AttributeList *al) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:362: warning: The following parameter of GNUNET_RECLAIM_attribute_list_serialize_get_size(const struct GNUNET_RECLAIM_AttributeList *al) is not documented: - parameter 'al' -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:366: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_attribute_list_destroy(struct GNUNET_RECLAIM_AttributeList *al) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:372: warning: The following parameter of GNUNET_RECLAIM_attribute_list_destroy(struct GNUNET_RECLAIM_AttributeList *al) is not documented: - parameter 'al' -/home/william/Git/gnunet/src/reclaim/reclaim_attribute.c:295: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_attribute_list_add(struct GNUNET_RECLAIM_AttributeList *al, const char *attr_name, const struct GNUNET_RECLAIM_Identifier *credential, uint32_t type, const void *data, size_t data_size) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:387: warning: argument 'attr_name' from the argument list of GNUNET_RECLAIM_attribute_list_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:387: warning: argument 'type' from the argument list of GNUNET_RECLAIM_attribute_list_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:387: warning: argument 'data' from the argument list of GNUNET_RECLAIM_attribute_list_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:387: warning: argument 'data_size' from the argument list of GNUNET_RECLAIM_attribute_list_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:387: warning: The following parameter of GNUNET_RECLAIM_attribute_list_add(struct GNUNET_RECLAIM_AttributeList *al, const char *attr_name, const struct GNUNET_RECLAIM_Identifier *credential, uint32_t type, const void *data, size_t data_size) is not documented: - parameter 'al' -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:396: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_attribute_list_serialize(const struct GNUNET_RECLAIM_AttributeList *al, char *result) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:404: warning: The following parameter of GNUNET_RECLAIM_attribute_list_serialize(const struct GNUNET_RECLAIM_AttributeList *al, char *result) is not documented: - parameter 'al' -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:452: warning: argument 'data' from the argument list of GNUNET_RECLAIM_attribute_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:452: warning: argument 'data_size' from the argument list of GNUNET_RECLAIM_attribute_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:456: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_attribute_list_dup(const struct GNUNET_RECLAIM_AttributeList *al) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:462: warning: The following parameter of GNUNET_RECLAIM_attribute_list_dup(const struct GNUNET_RECLAIM_AttributeList *al) is not documented: - parameter 'al' -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:515: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_credential_list_serialize_get_size(const struct GNUNET_RECLAIM_CredentialList *credentials) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:522: warning: The following parameter of GNUNET_RECLAIM_credential_list_serialize_get_size(const struct GNUNET_RECLAIM_CredentialList *credentials) is not documented: - parameter 'credentials' -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:526: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_credential_list_destroy(struct GNUNET_RECLAIM_CredentialList *al) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:526: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_credential_list_destroy(struct GNUNET_RECLAIM_CredentialList *al) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:532: warning: The following parameter of GNUNET_RECLAIM_credential_list_destroy(struct GNUNET_RECLAIM_CredentialList *al) is not documented: - parameter 'al' -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:536: warning: argument 'attr_name' of command @param is not found in the argument list of GNUNET_RECLAIM_credential_list_add(struct GNUNET_RECLAIM_CredentialList *attrs, const char *att_name, uint32_t type, const void *data, size_t data_size) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:545: warning: The following parameters of GNUNET_RECLAIM_credential_list_add(struct GNUNET_RECLAIM_CredentialList *attrs, const char *att_name, uint32_t type, const void *data, size_t data_size) are not documented: - parameter 'attrs' - parameter 'att_name' -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:553: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_credential_list_serialize(const struct GNUNET_RECLAIM_CredentialList *credentials, char *result) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:561: warning: The following parameter of GNUNET_RECLAIM_credential_list_serialize(const struct GNUNET_RECLAIM_CredentialList *credentials, char *result) is not documented: - parameter 'credentials' -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:574: warning: argument 'data' from the argument list of GNUNET_RECLAIM_credential_list_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:574: warning: argument 'data_size' from the argument list of GNUNET_RECLAIM_credential_list_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/reclaim/reclaim_credential.c:442: warning: argument 'attr' of command @param is not found in the argument list of GNUNET_RECLAIM_credential_serialize_get_size(const struct GNUNET_RECLAIM_Credential *credential) -/home/william/Git/gnunet/src/reclaim/reclaim_credential.c:457: warning: argument 'attr' of command @param is not found in the argument list of GNUNET_RECLAIM_credential_serialize(const struct GNUNET_RECLAIM_Credential *credential, char *result) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:595: warning: argument 'result' from the argument list of GNUNET_RECLAIM_credential_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/reclaim/reclaim_credential.c:255: warning: argument 'name' of command @param is not found in the argument list of GNUNET_RECLAIM_credential_new(const char *attr_name, uint32_t type, const void *data, size_t data_size) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:622: warning: argument 'type' from the argument list of GNUNET_RECLAIM_credential_new has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:622: warning: argument 'data' from the argument list of GNUNET_RECLAIM_credential_new has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:622: warning: argument 'data_size' from the argument list of GNUNET_RECLAIM_credential_new has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:674: warning: argument 'typename' of command @param is not found in the argument list of GNUNET_RECLAIM_credential_get_attributes(const struct GNUNET_RECLAIM_Credential *cred) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:681: warning: The following parameter of GNUNET_RECLAIM_credential_get_attributes(const struct GNUNET_RECLAIM_Credential *cred) is not documented: - parameter 'cred' -/home/william/Git/gnunet/src/reclaim/reclaim_credential.c:739: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_presentation_list_serialize_get_size(const struct GNUNET_RECLAIM_PresentationList *presentations) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:704: warning: argument 'presentations' of command @param is not found in the argument list of GNUNET_RECLAIM_presentation_list_destroy(struct GNUNET_RECLAIM_PresentationList *al) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:704: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_presentation_list_destroy(struct GNUNET_RECLAIM_PresentationList *al) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:710: warning: The following parameter of GNUNET_RECLAIM_presentation_list_destroy(struct GNUNET_RECLAIM_PresentationList *al) is not documented: - parameter 'al' -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:714: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_presentation_list_serialize(const struct GNUNET_RECLAIM_PresentationList *presentations, char *result) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:722: warning: argument 'result' from the argument list of GNUNET_RECLAIM_presentation_list_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:735: warning: argument 'data' from the argument list of GNUNET_RECLAIM_presentation_list_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:735: warning: argument 'data_size' from the argument list of GNUNET_RECLAIM_presentation_list_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/reclaim/reclaim_credential.c:889: warning: argument 'attr' of command @param is not found in the argument list of GNUNET_RECLAIM_presentation_serialize_get_size(const struct GNUNET_RECLAIM_Presentation *presentation) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:748: warning: argument 'attr' of command @param is not found in the argument list of GNUNET_RECLAIM_presentation_serialize(const struct GNUNET_RECLAIM_Presentation *presentation, char *result) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:756: warning: argument 'result' from the argument list of GNUNET_RECLAIM_presentation_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:770: warning: argument 'data' from the argument list of GNUNET_RECLAIM_presentation_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:770: warning: argument 'data_size' from the argument list of GNUNET_RECLAIM_presentation_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:782: warning: argument 'type' from the argument list of GNUNET_RECLAIM_presentation_value_to_string has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:782: warning: argument 'data' from the argument list of GNUNET_RECLAIM_presentation_value_to_string has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:782: warning: argument 'data_size' from the argument list of GNUNET_RECLAIM_presentation_value_to_string has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:802: warning: argument 'type' from the argument list of GNUNET_RECLAIM_presentation_string_to_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:802: warning: argument 's' from the argument list of GNUNET_RECLAIM_presentation_string_to_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:802: warning: argument 'data' from the argument list of GNUNET_RECLAIM_presentation_string_to_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:802: warning: argument 'data_size' from the argument list of GNUNET_RECLAIM_presentation_string_to_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:815: warning: argument 'type' from the argument list of GNUNET_RECLAIM_presentation_number_to_typename has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:845: warning: argument 'cred' from the argument list of GNUNET_RECLAIM_credential_get_presentation has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:845: warning: argument 'attrs' from the argument list of GNUNET_RECLAIM_credential_get_presentation has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:173: warning: argument 'cfg' from the argument list of GNUNET_RECLAIM_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:189: warning: argument 'h' from the argument list of GNUNET_RECLAIM_attribute_store has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:189: warning: argument 'pkey' from the argument list of GNUNET_RECLAIM_attribute_store has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:189: warning: argument 'attr' from the argument list of GNUNET_RECLAIM_attribute_store has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:189: warning: argument 'exp_interval' from the argument list of GNUNET_RECLAIM_attribute_store has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:189: warning: argument 'cont' from the argument list of GNUNET_RECLAIM_attribute_store has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:189: warning: argument 'cont_cls' from the argument list of GNUNET_RECLAIM_attribute_store has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:210: warning: argument 'h' from the argument list of GNUNET_RECLAIM_credential_store has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:210: warning: argument 'pkey' from the argument list of GNUNET_RECLAIM_credential_store has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:210: warning: argument 'attr' from the argument list of GNUNET_RECLAIM_credential_store has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:210: warning: argument 'exp_interval' from the argument list of GNUNET_RECLAIM_credential_store has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:210: warning: argument 'cont' from the argument list of GNUNET_RECLAIM_credential_store has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:210: warning: argument 'cont_cls' from the argument list of GNUNET_RECLAIM_credential_store has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:237: warning: argument 'cred' of command @param is not found in the argument list of GNUNET_RECLAIM_credential_delete(struct GNUNET_RECLAIM_Handle *h, const struct GNUNET_IDENTITY_PrivateKey *pkey, const struct GNUNET_RECLAIM_Credential *attr, GNUNET_RECLAIM_ContinuationWithStatus cont, void *cont_cls) -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:249: warning: argument 'h' from the argument list of GNUNET_RECLAIM_credential_delete has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:249: warning: argument 'pkey' from the argument list of GNUNET_RECLAIM_credential_delete has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:249: warning: argument 'cont' from the argument list of GNUNET_RECLAIM_credential_delete has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:249: warning: argument 'cont_cls' from the argument list of GNUNET_RECLAIM_credential_delete has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:296: warning: argument 'it' from the argument list of GNUNET_RECLAIM_get_attributes_next has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:348: warning: argument 'it' of command @param is not found in the argument list of GNUNET_RECLAIM_get_credentials_next(struct GNUNET_RECLAIM_CredentialIterator *ait) -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:348: warning: argument 'it' of command @param is not found in the argument list of GNUNET_RECLAIM_get_credentials_next(struct GNUNET_RECLAIM_CredentialIterator *ait) -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:355: warning: The following parameter of GNUNET_RECLAIM_get_credentials_next(struct GNUNET_RECLAIM_CredentialIterator *ait) is not documented: - parameter 'ait' -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:359: warning: argument 'it' of command @param is not found in the argument list of GNUNET_RECLAIM_get_credentials_stop(struct GNUNET_RECLAIM_CredentialIterator *ait) -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:367: warning: The following parameter of GNUNET_RECLAIM_get_credentials_stop(struct GNUNET_RECLAIM_CredentialIterator *ait) is not documented: - parameter 'ait' -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:386: warning: Found unknown command '\GNUNET_RECLAIM_ticket_consume' -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:385: warning: argument 'h' from the argument list of GNUNET_RECLAIM_ticket_issue has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:385: warning: argument 'iss' from the argument list of GNUNET_RECLAIM_ticket_issue has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:385: warning: argument 'rp' from the argument list of GNUNET_RECLAIM_ticket_issue has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:385: warning: argument 'attrs' from the argument list of GNUNET_RECLAIM_ticket_issue has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:385: warning: argument 'cb' from the argument list of GNUNET_RECLAIM_ticket_issue has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:385: warning: argument 'cb_cls' from the argument list of GNUNET_RECLAIM_ticket_issue has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:427: warning: argument 'h' from the argument list of GNUNET_RECLAIM_ticket_consume has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:427: warning: argument 'identity' from the argument list of GNUNET_RECLAIM_ticket_consume has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:427: warning: argument 'ticket' from the argument list of GNUNET_RECLAIM_ticket_consume has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:427: warning: argument 'cb' from the argument list of GNUNET_RECLAIM_ticket_consume has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:427: warning: argument 'cb_cls' from the argument list of GNUNET_RECLAIM_ticket_consume has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:452: warning: argument 'h' from the argument list of GNUNET_RECLAIM_ticket_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:452: warning: argument 'identity' from the argument list of GNUNET_RECLAIM_ticket_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:452: warning: argument 'error_cb' from the argument list of GNUNET_RECLAIM_ticket_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:452: warning: argument 'error_cb_cls' from the argument list of GNUNET_RECLAIM_ticket_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:452: warning: argument 'proc' from the argument list of GNUNET_RECLAIM_ticket_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:452: warning: argument 'proc_cls' from the argument list of GNUNET_RECLAIM_ticket_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:452: warning: argument 'finish_cb' from the argument list of GNUNET_RECLAIM_ticket_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:452: warning: argument 'finish_cb_cls' from the argument list of GNUNET_RECLAIM_ticket_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:487: warning: argument 'h' from the argument list of GNUNET_RECLAIM_disconnect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:499: warning: argument 'op' from the argument list of GNUNET_RECLAIM_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_regex_service.h:83: warning: argument 'cfg' from the argument list of GNUNET_REGEX_announce has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_regex_service.h:83: warning: argument 'regex' from the argument list of GNUNET_REGEX_announce has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_regex_service.h:83: warning: argument 'refresh_delay' from the argument list of GNUNET_REGEX_announce has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_regex_service.h:83: warning: argument 'compression' from the argument list of GNUNET_REGEX_announce has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_regex_service.h:95: warning: argument 'a' from the argument list of GNUNET_REGEX_announce_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_regex_service.h:130: warning: argument 'cfg' from the argument list of GNUNET_REGEX_search has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_regex_service.h:130: warning: argument 'string' from the argument list of GNUNET_REGEX_search has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_regex_service.h:130: warning: argument 'callback' from the argument list of GNUNET_REGEX_search has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_regex_service.h:130: warning: argument 'callback_cls' from the argument list of GNUNET_REGEX_search has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_regex_service.h:142: warning: argument 's' from the argument list of GNUNET_REGEX_search_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_resolver_service.h:111: warning: argument 'af' from the argument list of GNUNET_RESOLVER_hostname_resolve has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_resolver_service.h:111: warning: argument 'timeout' from the argument list of GNUNET_RESOLVER_hostname_resolve has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_resolver_service.h:111: warning: argument 'callback' from the argument list of GNUNET_RESOLVER_hostname_resolve has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_resolver_service.h:111: warning: argument 'cls' from the argument list of GNUNET_RESOLVER_hostname_resolve has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_resolver_service.h:149: warning: argument 'sa' from the argument list of GNUNET_RESOLVER_hostname_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_resolver_service.h:149: warning: argument 'salen' from the argument list of GNUNET_RESOLVER_hostname_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_resolver_service.h:149: warning: argument 'do_resolve' from the argument list of GNUNET_RESOLVER_hostname_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_resolver_service.h:149: warning: argument 'timeout' from the argument list of GNUNET_RESOLVER_hostname_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_resolver_service.h:149: warning: argument 'callback' from the argument list of GNUNET_RESOLVER_hostname_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_resolver_service.h:149: warning: argument 'cls' from the argument list of GNUNET_RESOLVER_hostname_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_rest_lib.h:121: warning: argument 'url' from the argument list of GNUNET_REST_namespace_match has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_rest_lib.h:121: warning: argument 'namespace' from the argument list of GNUNET_REST_namespace_match has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_rest_lib.h:130: warning: argument 'data' from the argument list of GNUNET_REST_create_response has multiple @param documentation sections -/home/william/Git/gnunet/src/revocation/revocation_api.c:286: warning: argument 'key' of command @param is not found in the argument list of GNUNET_REVOCATION_revoke(const struct GNUNET_CONFIGURATION_Handle *cfg, const struct GNUNET_REVOCATION_PowP *pow, GNUNET_REVOCATION_Callback func, void *func_cls) -/home/william/Git/gnunet/src/revocation/revocation_api.c:286: warning: argument 'sig' of command @param is not found in the argument list of GNUNET_REVOCATION_revoke(const struct GNUNET_CONFIGURATION_Handle *cfg, const struct GNUNET_REVOCATION_PowP *pow, GNUNET_REVOCATION_Callback func, void *func_cls) -/home/william/Git/gnunet/src/revocation/revocation_api.c:298: warning: explicit link request to 'GNUNET_REVOCATION_sign_revocation' could not be resolved -/home/william/Git/gnunet/src/revocation/revocation_api.c:286: warning: argument 'ts' of command @param is not found in the argument list of GNUNET_REVOCATION_revoke(const struct GNUNET_CONFIGURATION_Handle *cfg, const struct GNUNET_REVOCATION_PowP *pow, GNUNET_REVOCATION_Callback func, void *func_cls) -/home/william/Git/gnunet/src/include/gnunet_revocation_service.h:186: warning: argument 'cfg' from the argument list of GNUNET_REVOCATION_revoke has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_revocation_service.h:186: warning: argument 'pow' from the argument list of GNUNET_REVOCATION_revoke has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_revocation_service.h:186: warning: argument 'func' from the argument list of GNUNET_REVOCATION_revoke has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_revocation_service.h:186: warning: argument 'func_cls' from the argument list of GNUNET_REVOCATION_revoke has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_revocation_service.h:202: warning: argument 'matching_bits' of command @param is not found in the argument list of GNUNET_REVOCATION_check_pow(const struct GNUNET_REVOCATION_PowP *pow, unsigned int difficulty, struct GNUNET_TIME_Relative epoch_duration) -/home/william/Git/gnunet/src/include/gnunet_revocation_service.h:197: warning: The following parameter of GNUNET_REVOCATION_check_pow(const struct GNUNET_REVOCATION_PowP *pow, unsigned int difficulty, struct GNUNET_TIME_Relative epoch_duration) is not documented: - parameter 'difficulty' -/home/william/Git/gnunet/src/include/gnunet_revocation_service.h:221: warning: argument 'key' from the argument list of GNUNET_REVOCATION_pow_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_revocation_service.h:221: warning: argument 'pow' from the argument list of GNUNET_REVOCATION_pow_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_revocation_service.h:240: warning: argument 'epochs' of command @param is not found in the argument list of GNUNET_REVOCATION_pow_round(struct GNUNET_REVOCATION_PowCalculationHandle *pc) -/home/william/Git/gnunet/src/include/gnunet_revocation_service.h:240: warning: argument 'pow' of command @param is not found in the argument list of GNUNET_REVOCATION_pow_round(struct GNUNET_REVOCATION_PowCalculationHandle *pc) -/home/william/Git/gnunet/src/include/gnunet_revocation_service.h:240: warning: argument 'difficulty' of command @param is not found in the argument list of GNUNET_REVOCATION_pow_round(struct GNUNET_REVOCATION_PowCalculationHandle *pc) -/home/william/Git/gnunet/src/include/gnunet_revocation_service.h:235: warning: argument 'pc' from the argument list of GNUNET_REVOCATION_pow_round has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_revocation_service.h:258: warning: documented empty return type of GNUNET_REVOCATION_pow_stop -/home/william/Git/gnunet/src/include/gnunet_rps_service.h:96: warning: argument 'cfg' from the argument list of GNUNET_RPS_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_rps_service.h:106: warning: argument 'h' from the argument list of GNUNET_RPS_sub_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_rps_service.h:106: warning: argument 'shared_value' from the argument list of GNUNET_RPS_sub_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_rps_service.h:117: warning: argument 'h' from the argument list of GNUNET_RPS_sub_stop has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_rps_service.h:117: warning: argument 'shared_value' from the argument list of GNUNET_RPS_sub_stop has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/rps_api.c:942: warning: argument 'h' of command @param is not found in the argument list of GNUNET_RPS_request_peers(struct GNUNET_RPS_Handle *rps_handle, uint32_t num_req_peers, GNUNET_RPS_NotifyReadyCB ready_cb, void *cls) -/home/william/Git/gnunet/src/rps/rps_api.c:942: warning: argument 'n' of command @param is not found in the argument list of GNUNET_RPS_request_peers(struct GNUNET_RPS_Handle *rps_handle, uint32_t num_req_peers, GNUNET_RPS_NotifyReadyCB ready_cb, void *cls) -/home/william/Git/gnunet/src/include/gnunet_rps_service.h:136: warning: argument 'ready_cb' from the argument list of GNUNET_RPS_request_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_rps_service.h:136: warning: argument 'cls' from the argument list of GNUNET_RPS_request_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_rps_service.h:172: warning: argument 'rh' from the argument list of GNUNET_RPS_request_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_rps_service.h:211: warning: argument 'num_req_peers' of command @param is not found in the argument list of GNUNET_RPS_view_request(struct GNUNET_RPS_Handle *rps_handle, uint32_t num_updates, GNUNET_RPS_NotifyReadyCB view_update_cb, void *cls) -/home/william/Git/gnunet/src/include/gnunet_rps_service.h:211: warning: argument 'ready_cb' of command @param is not found in the argument list of GNUNET_RPS_view_request(struct GNUNET_RPS_Handle *rps_handle, uint32_t num_updates, GNUNET_RPS_NotifyReadyCB view_update_cb, void *cls) -/home/william/Git/gnunet/src/include/gnunet_rps_service.h:221: warning: The following parameters of GNUNET_RPS_view_request(struct GNUNET_RPS_Handle *rps_handle, uint32_t num_updates, GNUNET_RPS_NotifyReadyCB view_update_cb, void *cls) are not documented: - parameter 'num_updates' - parameter 'view_update_cb' -/home/william/Git/gnunet/src/include/gnunet_rps_service.h:227: warning: argument 'ready_cb' of command @param is not found in the argument list of GNUNET_RPS_stream_request(struct GNUNET_RPS_Handle *rps_handle, GNUNET_RPS_NotifyReadyCB stream_input_cb, void *cls) -/home/william/Git/gnunet/src/include/gnunet_rps_service.h:235: warning: The following parameter of GNUNET_RPS_stream_request(struct GNUNET_RPS_Handle *rps_handle, GNUNET_RPS_NotifyReadyCB stream_input_cb, void *cls) is not documented: - parameter 'stream_input_cb' -/home/william/Git/gnunet/src/include/gnunet_scalarproduct_service.h:158: warning: argument 'cfg' from the argument list of GNUNET_SCALARPRODUCT_start_computation has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scalarproduct_service.h:158: warning: argument 'session_key' from the argument list of GNUNET_SCALARPRODUCT_start_computation has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scalarproduct_service.h:158: warning: argument 'peer' from the argument list of GNUNET_SCALARPRODUCT_start_computation has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scalarproduct_service.h:158: warning: argument 'elements' from the argument list of GNUNET_SCALARPRODUCT_start_computation has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scalarproduct_service.h:158: warning: argument 'element_count' from the argument list of GNUNET_SCALARPRODUCT_start_computation has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scalarproduct_service.h:158: warning: argument 'cont' from the argument list of GNUNET_SCALARPRODUCT_start_computation has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scalarproduct_service.h:158: warning: argument 'cont_cls' from the argument list of GNUNET_SCALARPRODUCT_start_computation has multiple @param documentation sections -/home/william/Git/gnunet/src/scalarproduct/scalarproduct_api.c:213: warning: argument 'key' of command @param is not found in the argument list of GNUNET_SCALARPRODUCT_accept_computation(const struct GNUNET_CONFIGURATION_Handle *cfg, const struct GNUNET_HashCode *session_key, const struct GNUNET_SCALARPRODUCT_Element *elements, uint32_t element_count, GNUNET_SCALARPRODUCT_ContinuationWithStatus cont, void *cont_cls) -/home/william/Git/gnunet/src/include/gnunet_scalarproduct_service.h:180: warning: argument 'cfg' from the argument list of GNUNET_SCALARPRODUCT_accept_computation has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scalarproduct_service.h:180: warning: argument 'elements' from the argument list of GNUNET_SCALARPRODUCT_accept_computation has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scalarproduct_service.h:180: warning: argument 'element_count' from the argument list of GNUNET_SCALARPRODUCT_accept_computation has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scalarproduct_service.h:180: warning: argument 'cont' from the argument list of GNUNET_SCALARPRODUCT_accept_computation has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scalarproduct_service.h:180: warning: argument 'cont_cls' from the argument list of GNUNET_SCALARPRODUCT_accept_computation has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scheduler_lib.h:422: warning: argument 'task' from the argument list of GNUNET_SCHEDULER_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scheduler_lib.h:422: warning: argument 'task_cls' from the argument list of GNUNET_SCHEDULER_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scheduler_lib.h:464: warning: argument 'p' from the argument list of GNUNET_SCHEDULER_get_load has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scheduler_lib.h:576: warning: argument 'lifeness' from the argument list of GNUNET_SCHEDULER_add_now_with_lifeness has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scheduler_lib.h:576: warning: argument 'task' from the argument list of GNUNET_SCHEDULER_add_now_with_lifeness has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scheduler_lib.h:576: warning: argument 'task_cls' from the argument list of GNUNET_SCHEDULER_add_now_with_lifeness has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scheduler_lib.h:593: warning: argument 'delay' from the argument list of GNUNET_SCHEDULER_add_delayed has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scheduler_lib.h:593: warning: argument 'task' from the argument list of GNUNET_SCHEDULER_add_delayed has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scheduler_lib.h:593: warning: argument 'task_cls' from the argument list of GNUNET_SCHEDULER_add_delayed has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scheduler_lib.h:906: warning: argument 'new_select' from the argument list of GNUNET_SCHEDULER_set_select has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scheduler_lib.h:906: warning: argument 'new_select_cls' from the argument list of GNUNET_SCHEDULER_set_select has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scheduler_lib.h:906: warning: documented empty return type of GNUNET_SCHEDULER_set_select -/home/william/Git/gnunet/src/include/gnunet_secretsharing_service.h:235: warning: argument 'message' of command @param is not found in the argument list of GNUNET_SECRETSHARING_encrypt(const struct GNUNET_SECRETSHARING_PublicKey *public_key, const struct GNUNET_SECRETSHARING_Plaintext *plaintext, struct GNUNET_SECRETSHARING_Ciphertext *result_ciphertext) -/home/william/Git/gnunet/src/include/gnunet_secretsharing_service.h:235: warning: argument 'message_size' of command @param is not found in the argument list of GNUNET_SECRETSHARING_encrypt(const struct GNUNET_SECRETSHARING_PublicKey *public_key, const struct GNUNET_SECRETSHARING_Plaintext *plaintext, struct GNUNET_SECRETSHARING_Ciphertext *result_ciphertext) -/home/william/Git/gnunet/src/include/gnunet_secretsharing_service.h:249: warning: The following parameter of GNUNET_SECRETSHARING_encrypt(const struct GNUNET_SECRETSHARING_PublicKey *public_key, const struct GNUNET_SECRETSHARING_Plaintext *plaintext, struct GNUNET_SECRETSHARING_Ciphertext *result_ciphertext) is not documented: - parameter 'plaintext' -/home/william/Git/gnunet/src/include/gnunet_secretsharing_service.h:274: warning: argument 'share' from the argument list of GNUNET_SECRETSHARING_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_secretsharing_service.h:274: warning: argument 'ciphertext' from the argument list of GNUNET_SECRETSHARING_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_secretsharing_service.h:274: warning: argument 'decrypt_cb' from the argument list of GNUNET_SECRETSHARING_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_secretsharing_service.h:274: warning: argument 'decrypt_cb_cls' from the argument list of GNUNET_SECRETSHARING_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_service_lib.h:255: warning: argument 'options' of command @param is not found in the argument list of GNUNET_SERVICE_MAIN(service_name, service_options, init_cb, connect_cb, disconnect_cb, cls,...) -/home/william/Git/gnunet/src/include/gnunet_service_lib.h:255: warning: argument 'service_init_cb' of command @param is not found in the argument list of GNUNET_SERVICE_MAIN(service_name, service_options, init_cb, connect_cb, disconnect_cb, cls,...) -/home/william/Git/gnunet/src/include/gnunet_service_lib.h:313: warning: The following parameters of GNUNET_SERVICE_MAIN(service_name, service_options, init_cb, connect_cb, disconnect_cb, cls,...) are not documented: - parameter 'service_options' - parameter 'init_cb' - parameter '...' -/home/william/Git/gnunet/src/include/gnunet_service_lib.h:401: warning: argument 'c' from the argument list of GNUNET_SERVICE_client_drop has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_service_lib.h:415: warning: explicit link request to 'GNUNET_SERVICE_stop_listening()' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:176: warning: explicit link request to 'GNUNET_SETI_STATUS_OK' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:221: warning: explicit link request to 'GNUNET_SETU_STATUS_OK' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_set_service.h:364: warning: argument 'set' from the argument list of GNUNET_SET_add_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:364: warning: argument 'element' from the argument list of GNUNET_SET_add_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:364: warning: argument 'cont' from the argument list of GNUNET_SET_add_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:364: warning: argument 'cont_cls' from the argument list of GNUNET_SET_add_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:384: warning: argument 'set' from the argument list of GNUNET_SET_remove_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:384: warning: argument 'element' from the argument list of GNUNET_SET_remove_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:384: warning: argument 'cont' from the argument list of GNUNET_SET_remove_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:384: warning: argument 'cont_cls' from the argument list of GNUNET_SET_remove_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:405: warning: argument 'set' from the argument list of GNUNET_SET_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:423: warning: argument 'other_peer' from the argument list of GNUNET_SET_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:423: warning: argument 'app_id' from the argument list of GNUNET_SET_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:423: warning: argument 'context_msg' from the argument list of GNUNET_SET_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:423: warning: argument 'result_mode' from the argument list of GNUNET_SET_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:423: warning: argument 'result_cb' from the argument list of GNUNET_SET_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:423: warning: argument 'result_cls' from the argument list of GNUNET_SET_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:423: warning: The following parameter of GNUNET_SET_prepare(const struct GNUNET_PeerIdentity *other_peer, const struct GNUNET_HashCode *app_id, const struct GNUNET_MessageHeader *context_msg, enum GNUNET_SET_ResultMode result_mode, struct GNUNET_SET_Option options[], GNUNET_SET_ResultIterator result_cb, void *result_cls) is not documented: - parameter 'options' -/home/william/Git/gnunet/src/include/gnunet_set_service.h:447: warning: argument 'cfg' from the argument list of GNUNET_SET_listen has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:447: warning: argument 'operation' from the argument list of GNUNET_SET_listen has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:447: warning: argument 'app_id' from the argument list of GNUNET_SET_listen has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:447: warning: argument 'listen_cb' from the argument list of GNUNET_SET_listen has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:447: warning: argument 'listen_cls' from the argument list of GNUNET_SET_listen has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:463: warning: argument 'lh' from the argument list of GNUNET_SET_listen_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:481: warning: argument 'request' from the argument list of GNUNET_SET_accept has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:481: warning: argument 'result_mode' from the argument list of GNUNET_SET_accept has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:481: warning: argument 'result_cb' from the argument list of GNUNET_SET_accept has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:481: warning: argument 'result_cls' from the argument list of GNUNET_SET_accept has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:481: warning: The following parameter of GNUNET_SET_accept(struct GNUNET_SET_Request *request, enum GNUNET_SET_ResultMode result_mode, struct GNUNET_SET_Option options[], GNUNET_SET_ResultIterator result_cb, void *result_cls) is not documented: - parameter 'options' -/home/william/Git/gnunet/src/include/gnunet_set_service.h:514: warning: argument 'oh' from the argument list of GNUNET_SET_operation_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:531: warning: argument 'set' from the argument list of GNUNET_SET_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:531: warning: argument 'iter' from the argument list of GNUNET_SET_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:531: warning: argument 'iter_cls' from the argument list of GNUNET_SET_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:566: warning: argument 'element' from the argument list of GNUNET_SET_element_hash has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:566: warning: argument 'ret_hash' from the argument list of GNUNET_SET_element_hash has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:218: warning: argument 'cfg' from the argument list of GNUNET_SETI_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:232: warning: argument 'set' from the argument list of GNUNET_SETI_add_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:232: warning: argument 'element' from the argument list of GNUNET_SETI_add_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:232: warning: argument 'cb' from the argument list of GNUNET_SETI_add_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:232: warning: argument 'cb_cls' from the argument list of GNUNET_SETI_add_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:245: warning: argument 'set' from the argument list of GNUNET_SETI_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:262: warning: argument 'other_peer' from the argument list of GNUNET_SETI_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:262: warning: argument 'app_id' from the argument list of GNUNET_SETI_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:262: warning: argument 'context_msg' from the argument list of GNUNET_SETI_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:262: warning: argument 'options' from the argument list of GNUNET_SETI_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:262: warning: argument 'result_cb' from the argument list of GNUNET_SETI_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:262: warning: argument 'result_cls' from the argument list of GNUNET_SETI_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:284: warning: argument 'cfg' from the argument list of GNUNET_SETI_listen has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:284: warning: argument 'app_id' from the argument list of GNUNET_SETI_listen has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:284: warning: argument 'listen_cb' from the argument list of GNUNET_SETI_listen has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:284: warning: argument 'listen_cls' from the argument list of GNUNET_SETI_listen has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:299: warning: argument 'lh' from the argument list of GNUNET_SETI_listen_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:316: warning: argument 'request' from the argument list of GNUNET_SETI_accept has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:316: warning: argument 'options' from the argument list of GNUNET_SETI_accept has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:316: warning: argument 'result_cb' from the argument list of GNUNET_SETI_accept has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:316: warning: argument 'result_cls' from the argument list of GNUNET_SETI_accept has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:348: warning: argument 'oh' from the argument list of GNUNET_SETI_operation_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:277: warning: argument 'set' from the argument list of GNUNET_SETU_add_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:277: warning: argument 'element' from the argument list of GNUNET_SETU_add_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:277: warning: argument 'cb' from the argument list of GNUNET_SETU_add_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:277: warning: argument 'cb_cls' from the argument list of GNUNET_SETU_add_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:290: warning: argument 'set' from the argument list of GNUNET_SETU_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:307: warning: argument 'other_peer' from the argument list of GNUNET_SETU_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:307: warning: argument 'app_id' from the argument list of GNUNET_SETU_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:307: warning: argument 'context_msg' from the argument list of GNUNET_SETU_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:307: warning: argument 'result_cb' from the argument list of GNUNET_SETU_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:307: warning: argument 'result_cls' from the argument list of GNUNET_SETU_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:329: warning: argument 'cfg' from the argument list of GNUNET_SETU_listen has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:329: warning: argument 'app_id' from the argument list of GNUNET_SETU_listen has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:329: warning: argument 'listen_cb' from the argument list of GNUNET_SETU_listen has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:329: warning: argument 'listen_cls' from the argument list of GNUNET_SETU_listen has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:344: warning: argument 'lh' from the argument list of GNUNET_SETU_listen_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:347: warning: argument 'result_mode' of command @param is not found in the argument list of GNUNET_SETU_accept(struct GNUNET_SETU_Request *request, const struct GNUNET_SETU_Option options[], GNUNET_SETU_ResultIterator result_cb, void *result_cls) -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:361: warning: argument 'request' from the argument list of GNUNET_SETU_accept has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:361: warning: argument 'result_cb' from the argument list of GNUNET_SETU_accept has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:361: warning: argument 'result_cls' from the argument list of GNUNET_SETU_accept has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:393: warning: argument 'oh' from the argument list of GNUNET_SETU_operation_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_statistics_service.h:174: warning: argument 'handle' from the argument list of GNUNET_STATISTICS_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_statistics_service.h:174: warning: argument 'subsystem' from the argument list of GNUNET_STATISTICS_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_statistics_service.h:174: warning: argument 'name' from the argument list of GNUNET_STATISTICS_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_statistics_service.h:174: warning: argument 'cont' from the argument list of GNUNET_STATISTICS_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_statistics_service.h:174: warning: argument 'proc' from the argument list of GNUNET_STATISTICS_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_statistics_service.h:174: warning: argument 'cls' from the argument list of GNUNET_STATISTICS_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_statistics_service.h:189: warning: argument 'gh' from the argument list of GNUNET_STATISTICS_get_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_statistics_service.h:202: warning: argument 'handle' from the argument list of GNUNET_STATISTICS_set has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_statistics_service.h:202: warning: argument 'name' from the argument list of GNUNET_STATISTICS_set has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_statistics_service.h:202: warning: argument 'value' from the argument list of GNUNET_STATISTICS_set has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_statistics_service.h:202: warning: argument 'make_persistent' from the argument list of GNUNET_STATISTICS_set has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_statistics_service.h:218: warning: argument 'handle' from the argument list of GNUNET_STATISTICS_update has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_statistics_service.h:218: warning: argument 'name' from the argument list of GNUNET_STATISTICS_update has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_statistics_service.h:218: warning: argument 'delta' from the argument list of GNUNET_STATISTICS_update has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_statistics_service.h:218: warning: argument 'make_persistent' from the argument list of GNUNET_STATISTICS_update has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_strings_lib.h:388: warning: argument 'data' of command @param is not found in the argument list of GNUNET_STRINGS_base64_encode(const void *in, size_t len, char **output) -/home/william/Git/gnunet/src/include/gnunet_strings_lib.h:396: warning: The following parameter of GNUNET_STRINGS_base64_encode(const void *in, size_t len, char **output) is not documented: - parameter 'in' -/home/william/Git/gnunet/src/include/gnunet_strings_lib.h:403: warning: argument 'output' of command @param is not found in the argument list of GNUNET_STRINGS_urlencode(const char *data, size_t len, char **out) -/home/william/Git/gnunet/src/include/gnunet_strings_lib.h:411: warning: The following parameter of GNUNET_STRINGS_urlencode(const char *data, size_t len, char **out) is not documented: - parameter 'out' -/home/william/Git/gnunet/src/include/gnunet_strings_lib.h:446: warning: argument 'output' of command @param is not found in the argument list of GNUNET_STRINGS_base64url_decode(const char *data, size_t len, void **out) -/home/william/Git/gnunet/src/include/gnunet_strings_lib.h:456: warning: The following parameter of GNUNET_STRINGS_base64url_decode(const char *data, size_t len, void **out) is not documented: - parameter 'out' -/home/william/Git/gnunet/src/include/gnunet_testbed_logger_service.h:71: warning: argument 'h' from the argument list of GNUNET_TESTBED_LOGGER_disconnect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_logger_service.h:109: warning: argument 'h' from the argument list of GNUNET_TESTBED_LOGGER_flush has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_logger_service.h:109: warning: argument 'cb' from the argument list of GNUNET_TESTBED_LOGGER_flush has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_logger_service.h:109: warning: argument 'cb_cls' from the argument list of GNUNET_TESTBED_LOGGER_flush has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:117: warning: argument 'id' from the argument list of GNUNET_TESTBED_host_create_with_id has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:117: warning: argument 'hostname' from the argument list of GNUNET_TESTBED_host_create_with_id has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:117: warning: argument 'username' from the argument list of GNUNET_TESTBED_host_create_with_id has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:117: warning: argument 'cfg' from the argument list of GNUNET_TESTBED_host_create_with_id has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:117: warning: argument 'port' from the argument list of GNUNET_TESTBED_host_create_with_id has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:138: warning: argument 'filename' from the argument list of GNUNET_TESTBED_hosts_load_from_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:138: warning: argument 'cfg' from the argument list of GNUNET_TESTBED_hosts_load_from_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:138: warning: argument 'hosts' from the argument list of GNUNET_TESTBED_hosts_load_from_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:479: warning: argument 'host' from the argument list of GNUNET_TESTBED_controller_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:479: warning: argument 'event_mask' from the argument list of GNUNET_TESTBED_controller_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:479: warning: argument 'cc' from the argument list of GNUNET_TESTBED_controller_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:479: warning: argument 'cc_cls' from the argument list of GNUNET_TESTBED_controller_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:529: warning: argument 'controller' from the argument list of GNUNET_TESTBED_register_host has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:529: warning: argument 'host' from the argument list of GNUNET_TESTBED_register_host has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:529: warning: argument 'cc' from the argument list of GNUNET_TESTBED_register_host has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:529: warning: argument 'cc_cls' from the argument list of GNUNET_TESTBED_register_host has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:545: warning: argument 'handle' from the argument list of GNUNET_TESTBED_cancel_registration has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:593: warning: argument 'op_cls' from the argument list of GNUNET_TESTBED_controller_link has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:593: warning: argument 'master' from the argument list of GNUNET_TESTBED_controller_link has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:593: warning: argument 'delegated_host' from the argument list of GNUNET_TESTBED_controller_link has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:593: warning: argument 'slave_host' from the argument list of GNUNET_TESTBED_controller_link has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:593: warning: argument 'is_subordinate' from the argument list of GNUNET_TESTBED_controller_link has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:616: warning: argument 'op_cls' from the argument list of GNUNET_TESTBED_get_slave_config has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:616: warning: argument 'master' from the argument list of GNUNET_TESTBED_get_slave_config has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:616: warning: argument 'slave_host' from the argument list of GNUNET_TESTBED_get_slave_config has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:666: warning: argument 'controller' from the argument list of GNUNET_TESTBED_peer_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:666: warning: argument 'host' from the argument list of GNUNET_TESTBED_peer_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:666: warning: argument 'cfg' from the argument list of GNUNET_TESTBED_peer_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:666: warning: argument 'cb' from the argument list of GNUNET_TESTBED_peer_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:666: warning: argument 'cls' from the argument list of GNUNET_TESTBED_peer_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:696: warning: argument 'op_cls' from the argument list of GNUNET_TESTBED_peer_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:696: warning: argument 'peer' from the argument list of GNUNET_TESTBED_peer_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:696: warning: argument 'pcc' from the argument list of GNUNET_TESTBED_peer_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:696: warning: argument 'pcc_cls' from the argument list of GNUNET_TESTBED_peer_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:715: warning: argument 'op_cls' from the argument list of GNUNET_TESTBED_peer_stop has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:715: warning: argument 'peer' from the argument list of GNUNET_TESTBED_peer_stop has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:715: warning: argument 'pcc' from the argument list of GNUNET_TESTBED_peer_stop has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:715: warning: argument 'pcc_cls' from the argument list of GNUNET_TESTBED_peer_stop has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:783: warning: argument 'peer' from the argument list of GNUNET_TESTBED_peer_get_information has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:783: warning: argument 'pit' from the argument list of GNUNET_TESTBED_peer_get_information has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:783: warning: argument 'cb' from the argument list of GNUNET_TESTBED_peer_get_information has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:783: warning: argument 'cb_cls' from the argument list of GNUNET_TESTBED_peer_get_information has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:799: warning: argument 'peer' from the argument list of GNUNET_TESTBED_peer_update_configuration has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:799: warning: argument 'cfg' from the argument list of GNUNET_TESTBED_peer_update_configuration has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:831: warning: argument 'op_cls' from the argument list of GNUNET_TESTBED_peer_manage_service has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:831: warning: argument 'peer' from the argument list of GNUNET_TESTBED_peer_manage_service has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:831: warning: argument 'service_name' from the argument list of GNUNET_TESTBED_peer_manage_service has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:831: warning: argument 'cb' from the argument list of GNUNET_TESTBED_peer_manage_service has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:831: warning: argument 'cb_cls' from the argument list of GNUNET_TESTBED_peer_manage_service has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:831: warning: argument 'start' from the argument list of GNUNET_TESTBED_peer_manage_service has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1041: warning: argument 'op_cls' from the argument list of GNUNET_TESTBED_underlay_configure_topology_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1041: warning: argument 'num_peers' from the argument list of GNUNET_TESTBED_underlay_configure_topology_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1041: warning: argument 'peers' from the argument list of GNUNET_TESTBED_underlay_configure_topology_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1041: warning: argument 'topo' from the argument list of GNUNET_TESTBED_underlay_configure_topology_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1041: warning: argument 'ap' from the argument list of GNUNET_TESTBED_underlay_configure_topology_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1063: warning: argument 'op_cls' from the argument list of GNUNET_TESTBED_underlay_configure_topology has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1063: warning: argument 'num_peers' from the argument list of GNUNET_TESTBED_underlay_configure_topology has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1063: warning: argument 'peers' from the argument list of GNUNET_TESTBED_underlay_configure_topology has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1063: warning: argument 'topo' from the argument list of GNUNET_TESTBED_underlay_configure_topology has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1086: warning: argument 'op_cls' from the argument list of GNUNET_TESTBED_overlay_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1086: warning: argument 'cb' from the argument list of GNUNET_TESTBED_overlay_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1086: warning: argument 'cb_cls' from the argument list of GNUNET_TESTBED_overlay_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1086: warning: argument 'p1' from the argument list of GNUNET_TESTBED_overlay_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1086: warning: argument 'p2' from the argument list of GNUNET_TESTBED_overlay_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1130: warning: argument 'op_cls' from the argument list of GNUNET_TESTBED_overlay_configure_topology_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1130: warning: argument 'num_peers' from the argument list of GNUNET_TESTBED_overlay_configure_topology_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1130: warning: argument 'peers' from the argument list of GNUNET_TESTBED_overlay_configure_topology_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1130: warning: argument 'max_connections' from the argument list of GNUNET_TESTBED_overlay_configure_topology_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1130: warning: argument 'comp_cb' from the argument list of GNUNET_TESTBED_overlay_configure_topology_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1130: warning: argument 'comp_cb_cls' from the argument list of GNUNET_TESTBED_overlay_configure_topology_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1130: warning: argument 'topo' from the argument list of GNUNET_TESTBED_overlay_configure_topology_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1130: warning: argument 'va' from the argument list of GNUNET_TESTBED_overlay_configure_topology_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1186: warning: argument 'controller' from the argument list of GNUNET_TESTBED_overlay_write_topology_to_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1186: warning: argument 'filename' from the argument list of GNUNET_TESTBED_overlay_write_topology_to_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1259: warning: argument 'op_cls' from the argument list of GNUNET_TESTBED_service_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1259: warning: argument 'peer' from the argument list of GNUNET_TESTBED_service_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1259: warning: argument 'service_name' from the argument list of GNUNET_TESTBED_service_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1259: warning: argument 'cb' from the argument list of GNUNET_TESTBED_service_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1259: warning: argument 'cb_cls' from the argument list of GNUNET_TESTBED_service_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1259: warning: argument 'ca' from the argument list of GNUNET_TESTBED_service_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1259: warning: argument 'da' from the argument list of GNUNET_TESTBED_service_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1259: warning: argument 'cada_cls' from the argument list of GNUNET_TESTBED_service_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1331: warning: argument 'num_peers' from the argument list of GNUNET_TESTBED_get_statistics has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1331: warning: argument 'peers' from the argument list of GNUNET_TESTBED_get_statistics has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1331: warning: argument 'subsystem' from the argument list of GNUNET_TESTBED_get_statistics has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1331: warning: argument 'name' from the argument list of GNUNET_TESTBED_get_statistics has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1331: warning: argument 'proc' from the argument list of GNUNET_TESTBED_get_statistics has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1331: warning: argument 'cont' from the argument list of GNUNET_TESTBED_get_statistics has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1331: warning: argument 'cls' from the argument list of GNUNET_TESTBED_get_statistics has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1414: warning: argument 'host_filename' from the argument list of GNUNET_TESTBED_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1414: warning: argument 'cfg' from the argument list of GNUNET_TESTBED_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1414: warning: argument 'num_peers' from the argument list of GNUNET_TESTBED_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1414: warning: argument 'event_mask' from the argument list of GNUNET_TESTBED_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1414: warning: argument 'cc' from the argument list of GNUNET_TESTBED_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1414: warning: argument 'cc_cls' from the argument list of GNUNET_TESTBED_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1414: warning: argument 'test_master' from the argument list of GNUNET_TESTBED_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1414: warning: argument 'test_master_cls' from the argument list of GNUNET_TESTBED_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1463: warning: argument 'testname' from the argument list of GNUNET_TESTBED_test_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1463: warning: argument 'cfg_filename' from the argument list of GNUNET_TESTBED_test_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1463: warning: argument 'num_peers' from the argument list of GNUNET_TESTBED_test_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1463: warning: argument 'event_mask' from the argument list of GNUNET_TESTBED_test_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1463: warning: argument 'cc' from the argument list of GNUNET_TESTBED_test_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1463: warning: argument 'cc_cls' from the argument list of GNUNET_TESTBED_test_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1463: warning: argument 'test_master' from the argument list of GNUNET_TESTBED_test_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1463: warning: argument 'test_master_cls' from the argument list of GNUNET_TESTBED_test_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1535: warning: argument 'cb_cls' of command @param is not found in the argument list of GNUNET_TESTBED_barrier_init(struct GNUNET_TESTBED_Controller *controller, const char *name, unsigned int quorum, GNUNET_TESTBED_barrier_status_cb cb, void *cls) -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1550: warning: argument 'controller' from the argument list of GNUNET_TESTBED_barrier_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1550: warning: argument 'name' from the argument list of GNUNET_TESTBED_barrier_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1550: warning: argument 'quorum' from the argument list of GNUNET_TESTBED_barrier_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1550: warning: argument 'cb' from the argument list of GNUNET_TESTBED_barrier_init has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api_barriers.c:163: warning: argument 'cls' of command @param is not found in the argument list of GNUNET_TESTBED_barrier_wait(const char *name, GNUNET_TESTBED_barrier_wait_cb cb, void *cb_cls) -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1600: warning: argument 'name' from the argument list of GNUNET_TESTBED_barrier_wait has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1600: warning: argument 'cb' from the argument list of GNUNET_TESTBED_barrier_wait has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1612: warning: argument 'h' from the argument list of GNUNET_TESTBED_barrier_wait_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:161: warning: argument 'testdir' from the argument list of GNUNET_TESTING_system_create_with_portrange has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:161: warning: argument 'trusted_ip' from the argument list of GNUNET_TESTING_system_create_with_portrange has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:161: warning: argument 'hostname' from the argument list of GNUNET_TESTING_system_create_with_portrange has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:161: warning: argument 'shared_services' from the argument list of GNUNET_TESTING_system_create_with_portrange has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:161: warning: argument 'lowport' from the argument list of GNUNET_TESTING_system_create_with_portrange has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:161: warning: argument 'highport' from the argument list of GNUNET_TESTING_system_create_with_portrange has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:201: warning: argument 'system' from the argument list of GNUNET_TESTING_hostkey_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:201: warning: argument 'key_number' from the argument list of GNUNET_TESTING_hostkey_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:201: warning: argument 'id' from the argument list of GNUNET_TESTING_hostkey_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:213: warning: argument 'system' from the argument list of GNUNET_TESTING_reserve_port has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:224: warning: argument 'system' from the argument list of GNUNET_TESTING_release_port has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:224: warning: argument 'port' from the argument list of GNUNET_TESTING_release_port has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:246: warning: argument 'system' from the argument list of GNUNET_TESTING_configuration_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:246: warning: argument 'cfg' from the argument list of GNUNET_TESTING_configuration_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:305: warning: argument 'peer' from the argument list of GNUNET_TESTING_peer_stop has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:367: warning: argument 'peer' from the argument list of GNUNET_TESTING_peer_stop_async has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:367: warning: argument 'cb' from the argument list of GNUNET_TESTING_peer_stop_async has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:367: warning: argument 'cb_cls' from the argument list of GNUNET_TESTING_peer_stop_async has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:416: warning: argument 'testdir' from the argument list of GNUNET_TESTING_peer_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:416: warning: argument 'cfgfilename' from the argument list of GNUNET_TESTING_peer_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:416: warning: argument 'tm' from the argument list of GNUNET_TESTING_peer_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:416: warning: argument 'tm_cls' from the argument list of GNUNET_TESTING_peer_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:444: warning: argument 'testdir' from the argument list of GNUNET_TESTING_service_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:444: warning: argument 'service_name' from the argument list of GNUNET_TESTING_service_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:444: warning: argument 'cfgfilename' from the argument list of GNUNET_TESTING_service_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:444: warning: argument 'tm' from the argument list of GNUNET_TESTING_service_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:444: warning: argument 'tm_cls' from the argument list of GNUNET_TESTING_service_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_time_lib.h:239: warning: argument 't' of command @param is not found in the argument list of GNUNET_TIME_absolute2s(struct GNUNET_TIME_Absolute ts) -/home/william/Git/gnunet/src/include/gnunet_time_lib.h:249: warning: The following parameter of GNUNET_TIME_absolute2s(struct GNUNET_TIME_Absolute ts) is not documented: - parameter 'ts' -/home/william/Git/gnunet/src/include/gnunet_transport_application_service.h:58: warning: argument 'cfg' from the argument list of GNUNET_TRANSPORT_application_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_application_service.h:68: warning: argument 'ch' from the argument list of GNUNET_TRANSPORT_application_done has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:167: warning: explicit link request to 'GNUNET_TRANSPORT_PS_CONNECT_RECV_ATS' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:168: warning: explicit link request to 'GNUNET_TRANSPORT_PS_CONNECT_RECV_ACK' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:175: warning: explicit link request to 'GNUNET_TRANSPORT_PS_CONNECT_SENT' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:192: warning: explicit link request to 'GNUNET_TRANSPORT_PS_CONNECTED_SWITCHING_SYN_SENT' could not be resolved -/home/william/Git/gnunet/src/transport/transport_api2_communication.c:798: warning: argument 'mtu' of command @param is not found in the argument list of GNUNET_TRANSPORT_communicator_connect(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *config_section, const char *addr_prefix, enum GNUNET_TRANSPORT_CommunicatorCharacteristics cc, GNUNET_TRANSPORT_CommunicatorMqInit mq_init, void *mq_init_cls, GNUNET_TRANSPORT_CommunicatorNotify notify_cb, void *notify_cb_cls) -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:154: warning: argument 'cfg' from the argument list of GNUNET_TRANSPORT_communicator_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:154: warning: argument 'config_section' from the argument list of GNUNET_TRANSPORT_communicator_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:154: warning: argument 'addr_prefix' from the argument list of GNUNET_TRANSPORT_communicator_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:154: warning: argument 'cc' from the argument list of GNUNET_TRANSPORT_communicator_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:154: warning: argument 'mq_init' from the argument list of GNUNET_TRANSPORT_communicator_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:154: warning: argument 'mq_init_cls' from the argument list of GNUNET_TRANSPORT_communicator_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:154: warning: argument 'notify_cb' from the argument list of GNUNET_TRANSPORT_communicator_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:154: warning: argument 'notify_cb_cls' from the argument list of GNUNET_TRANSPORT_communicator_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport_api2_communication.c:876: warning: argument 'handle' of command @param is not found in the argument list of GNUNET_TRANSPORT_communicator_receive(struct GNUNET_TRANSPORT_CommunicatorHandle *ch, const struct GNUNET_PeerIdentity *sender, const struct GNUNET_MessageHeader *msg, struct GNUNET_TIME_Relative expected_addr_validity, GNUNET_TRANSPORT_MessageCompletedCallback cb, void *cb_cls) -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:212: warning: argument 'sender' from the argument list of GNUNET_TRANSPORT_communicator_receive has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:212: warning: argument 'msg' from the argument list of GNUNET_TRANSPORT_communicator_receive has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:212: warning: argument 'expected_addr_validity' from the argument list of GNUNET_TRANSPORT_communicator_receive has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:212: warning: argument 'cb' from the argument list of GNUNET_TRANSPORT_communicator_receive has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:212: warning: argument 'cb_cls' from the argument list of GNUNET_TRANSPORT_communicator_receive has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:252: warning: argument 'cc' of command @param is not found in the argument list of GNUNET_TRANSPORT_communicator_mq_add(struct GNUNET_TRANSPORT_CommunicatorHandle *ch, const struct GNUNET_PeerIdentity *peer, const char *address, uint32_t mtu, uint64_t q_len, uint32_t priority, enum GNUNET_NetworkType nt, enum GNUNET_TRANSPORT_ConnectionStatus cs, struct GNUNET_MQ_Handle *mq) -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:271: warning: argument 'ch' from the argument list of GNUNET_TRANSPORT_communicator_mq_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:271: warning: argument 'peer' from the argument list of GNUNET_TRANSPORT_communicator_mq_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:271: warning: argument 'address' from the argument list of GNUNET_TRANSPORT_communicator_mq_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:271: warning: argument 'mtu' from the argument list of GNUNET_TRANSPORT_communicator_mq_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:271: warning: argument 'q_len' from the argument list of GNUNET_TRANSPORT_communicator_mq_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:271: warning: argument 'priority' from the argument list of GNUNET_TRANSPORT_communicator_mq_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:271: warning: argument 'nt' from the argument list of GNUNET_TRANSPORT_communicator_mq_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:271: warning: argument 'cs' from the argument list of GNUNET_TRANSPORT_communicator_mq_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:271: warning: argument 'mq' from the argument list of GNUNET_TRANSPORT_communicator_mq_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:282: warning: argument 'qh' of command @param is not found in the argument list of GNUNET_TRANSPORT_communicator_mq_update(struct GNUNET_TRANSPORT_CommunicatorHandle *ch, const struct GNUNET_TRANSPORT_QueueHandle *u_qh, uint64_t q_len, uint32_t priority) -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:292: warning: The following parameter of GNUNET_TRANSPORT_communicator_mq_update(struct GNUNET_TRANSPORT_CommunicatorHandle *ch, const struct GNUNET_TRANSPORT_QueueHandle *u_qh, uint64_t q_len, uint32_t priority) is not documented: - parameter 'u_qh' -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:370: warning: argument 'ch' from the argument list of GNUNET_TRANSPORT_communicator_notify has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:370: warning: argument 'pid' from the argument list of GNUNET_TRANSPORT_communicator_notify has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:370: warning: argument 'comm' from the argument list of GNUNET_TRANSPORT_communicator_notify has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:370: warning: argument 'header' from the argument list of GNUNET_TRANSPORT_communicator_notify has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_core_service.h:95: warning: argument 'neb' of command @param is not found in the argument list of GNUNET_TRANSPORT_core_connect(const struct GNUNET_CONFIGURATION_Handle *cfg, const struct GNUNET_PeerIdentity *self, const struct GNUNET_MQ_MessageHandler *handlers, void *cls, GNUNET_TRANSPORT_NotifyConnect nc, GNUNET_TRANSPORT_NotifyDisconnect nd) -/home/william/Git/gnunet/src/include/gnunet_transport_core_service.h:113: warning: argument 'handlers' from the argument list of GNUNET_TRANSPORT_core_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_core_service.h:127: warning: argument 'handle' from the argument list of GNUNET_TRANSPORT_core_disconnect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_hello_service.h:145: warning: argument 'cfg' from the argument list of GNUNET_TRANSPORT_hello_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_hello_service.h:145: warning: argument 'ac' from the argument list of GNUNET_TRANSPORT_hello_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_hello_service.h:145: warning: argument 'rec' from the argument list of GNUNET_TRANSPORT_hello_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_hello_service.h:145: warning: argument 'rec_cls' from the argument list of GNUNET_TRANSPORT_hello_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_manipulation_service.h:82: warning: argument 'handle' from the argument list of GNUNET_TRANSPORT_manipulation_disconnect has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport_api2_monitor.c:279: warning: argument 'pmc' of command @param is not found in the argument list of GNUNET_TRANSPORT_monitor_cancel(struct GNUNET_TRANSPORT_MonitorContext *mc) -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:93: warning: argument 'ohh' from the argument list of GNUNET_TRANSPORT_offer_hello_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:296: warning: argument 'state' from the argument list of GNUNET_TRANSPORT_ps2s has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:369: warning: argument 'cfg' from the argument list of GNUNET_TRANSPORT_monitor_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:369: warning: argument 'peer' from the argument list of GNUNET_TRANSPORT_monitor_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:369: warning: argument 'one_shot' from the argument list of GNUNET_TRANSPORT_monitor_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:369: warning: argument 'peer_callback' from the argument list of GNUNET_TRANSPORT_monitor_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:369: warning: argument 'peer_callback_cls' from the argument list of GNUNET_TRANSPORT_monitor_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport_api_monitor_plugins.c:441: warning: explicit link request to 'GNUNET_TRANSPORT_SS_FINI' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:581: warning: argument 'pm' from the argument list of GNUNET_TRANSPORT_monitor_plugins_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport_api_core.c:844: warning: argument 'rec' of command @param is not found in the argument list of GNUNET_TRANSPORT_core_connect(const struct GNUNET_CONFIGURATION_Handle *cfg, const struct GNUNET_PeerIdentity *self, const struct GNUNET_MQ_MessageHandler *handlers, void *cls, GNUNET_TRANSPORT_NotifyConnect nc, GNUNET_TRANSPORT_NotifyDisconnect nd, GNUNET_TRANSPORT_NotifyExcessBandwidth neb) -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:669: warning: argument 'cfg' from the argument list of GNUNET_TRANSPORT_core_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:669: warning: argument 'self' from the argument list of GNUNET_TRANSPORT_core_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:669: warning: argument 'handlers' from the argument list of GNUNET_TRANSPORT_core_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:669: warning: argument 'cls' from the argument list of GNUNET_TRANSPORT_core_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:669: warning: argument 'nc' from the argument list of GNUNET_TRANSPORT_core_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:669: warning: argument 'nd' from the argument list of GNUNET_TRANSPORT_core_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:669: warning: argument 'neb' from the argument list of GNUNET_TRANSPORT_core_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_plugin.h:132: warning: explicit link request to 'GNUNET_ATS_address_get_type()' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:777: warning: argument 'ip' from the argument list of GNUNET_TUN_initialize_ipv6_header has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:777: warning: argument 'protocol' from the argument list of GNUNET_TUN_initialize_ipv6_header has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:777: warning: argument 'payload_length' from the argument list of GNUNET_TUN_initialize_ipv6_header has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:777: warning: argument 'src' from the argument list of GNUNET_TUN_initialize_ipv6_header has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:777: warning: argument 'dst' from the argument list of GNUNET_TUN_initialize_ipv6_header has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:792: warning: argument 'ip' from the argument list of GNUNET_TUN_calculate_tcp4_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:792: warning: argument 'tcp' from the argument list of GNUNET_TUN_calculate_tcp4_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:792: warning: argument 'payload' from the argument list of GNUNET_TUN_calculate_tcp4_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:792: warning: argument 'payload_length' from the argument list of GNUNET_TUN_calculate_tcp4_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:806: warning: argument 'ip' from the argument list of GNUNET_TUN_calculate_tcp6_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:806: warning: argument 'tcp' from the argument list of GNUNET_TUN_calculate_tcp6_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:806: warning: argument 'payload' from the argument list of GNUNET_TUN_calculate_tcp6_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:806: warning: argument 'payload_length' from the argument list of GNUNET_TUN_calculate_tcp6_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:820: warning: argument 'ip' from the argument list of GNUNET_TUN_calculate_udp4_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:820: warning: argument 'udp' from the argument list of GNUNET_TUN_calculate_udp4_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:820: warning: argument 'payload' from the argument list of GNUNET_TUN_calculate_udp4_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:820: warning: argument 'payload_length' from the argument list of GNUNET_TUN_calculate_udp4_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:835: warning: argument 'ip' from the argument list of GNUNET_TUN_calculate_udp6_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:835: warning: argument 'udp' from the argument list of GNUNET_TUN_calculate_udp6_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:835: warning: argument 'payload' from the argument list of GNUNET_TUN_calculate_udp6_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:835: warning: argument 'payload_length' from the argument list of GNUNET_TUN_calculate_udp6_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:849: warning: argument 'icmp' from the argument list of GNUNET_TUN_calculate_icmp_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:849: warning: argument 'payload' from the argument list of GNUNET_TUN_calculate_icmp_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:849: warning: argument 'payload_length' from the argument list of GNUNET_TUN_calculate_icmp_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:863: warning: argument 'ip' from the argument list of GNUNET_TUN_ipv4toregexsearch has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:863: warning: argument 'port' from the argument list of GNUNET_TUN_ipv4toregexsearch has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:863: warning: argument 'rxstr' from the argument list of GNUNET_TUN_ipv4toregexsearch has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:877: warning: argument 'ipv6' from the argument list of GNUNET_TUN_ipv6toregexsearch has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:877: warning: argument 'port' from the argument list of GNUNET_TUN_ipv6toregexsearch has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:877: warning: argument 'rxstr' from the argument list of GNUNET_TUN_ipv6toregexsearch has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:892: warning: argument 'policy' from the argument list of GNUNET_TUN_ipv6policy2regex has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:905: warning: argument 'policy' from the argument list of GNUNET_TUN_ipv4policy2regex has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:917: warning: argument 'service_name' from the argument list of GNUNET_TUN_service_name_to_hash has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:917: warning: argument 'hc' from the argument list of GNUNET_TUN_service_name_to_hash has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_vpn_service.h:101: warning: argument 'vh' from the argument list of GNUNET_VPN_redirect_to_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_vpn_service.h:101: warning: argument 'result_af' from the argument list of GNUNET_VPN_redirect_to_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_vpn_service.h:101: warning: argument 'protocol' from the argument list of GNUNET_VPN_redirect_to_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_vpn_service.h:101: warning: argument 'peer' from the argument list of GNUNET_VPN_redirect_to_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_vpn_service.h:101: warning: argument 'serv' from the argument list of GNUNET_VPN_redirect_to_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_vpn_service.h:101: warning: argument 'expiration_time' from the argument list of GNUNET_VPN_redirect_to_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_vpn_service.h:101: warning: argument 'cb' from the argument list of GNUNET_VPN_redirect_to_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_vpn_service.h:101: warning: argument 'cb_cls' from the argument list of GNUNET_VPN_redirect_to_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_vpn_service.h:135: warning: argument 'vh' from the argument list of GNUNET_VPN_redirect_to_ip has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_vpn_service.h:135: warning: argument 'result_af' from the argument list of GNUNET_VPN_redirect_to_ip has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_vpn_service.h:135: warning: argument 'addr_af' from the argument list of GNUNET_VPN_redirect_to_ip has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_vpn_service.h:135: warning: argument 'addr' from the argument list of GNUNET_VPN_redirect_to_ip has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_vpn_service.h:135: warning: argument 'expiration_time' from the argument list of GNUNET_VPN_redirect_to_ip has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_vpn_service.h:135: warning: argument 'cb' from the argument list of GNUNET_VPN_redirect_to_ip has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_vpn_service.h:135: warning: argument 'cb_cls' from the argument list of GNUNET_VPN_redirect_to_ip has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_buffer_lib.h:113: warning: argument 'buf' from the argument list of GNUNET_buffer_write_str has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_buffer_lib.h:113: warning: argument 'str' from the argument list of GNUNET_buffer_write_str has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_child_management_lib.h:55: warning: argument 'cp' of command @param is not found in the argument list of GNUNET_wait_child(struct GNUNET_OS_Process *proc, GNUNET_ChildCompletedCallback cb, void *cb_cls) -/home/william/Git/gnunet/src/include/gnunet_child_management_lib.h:66: warning: argument 'proc' from the argument list of GNUNET_wait_child has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_child_management_lib.h:66: warning: argument 'cb_cls' from the argument list of GNUNET_wait_child has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1173: warning: argument 'd' from the argument list of GNUNET_hton_double has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1185: warning: argument 'd' from the argument list of GNUNET_ntoh_double has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1578: warning: argument 'size' from the argument list of GNUNET_xmalloc_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1578: warning: argument 'filename' from the argument list of GNUNET_xmalloc_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1578: warning: argument 'linenumber' from the argument list of GNUNET_xmalloc_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1639: warning: argument 'buf' from the argument list of GNUNET_xmemdup_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1639: warning: argument 'size' from the argument list of GNUNET_xmemdup_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1639: warning: argument 'filename' from the argument list of GNUNET_xmemdup_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1639: warning: argument 'linenumber' from the argument list of GNUNET_xmemdup_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1658: warning: argument 'size' from the argument list of GNUNET_xmalloc_unchecked_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1658: warning: argument 'filename' from the argument list of GNUNET_xmalloc_unchecked_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1658: warning: argument 'linenumber' from the argument list of GNUNET_xmalloc_unchecked_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1679: warning: argument 'ptr' from the argument list of GNUNET_xfree_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1679: warning: argument 'filename' from the argument list of GNUNET_xfree_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1679: warning: argument 'linenumber' from the argument list of GNUNET_xfree_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1690: warning: argument 'str' from the argument list of GNUNET_xstrdup_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1690: warning: argument 'filename' from the argument list of GNUNET_xstrdup_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1690: warning: argument 'linenumber' from the argument list of GNUNET_xstrdup_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1702: warning: argument 'str' from the argument list of GNUNET_xstrndup_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1702: warning: argument 'len' from the argument list of GNUNET_xstrndup_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1702: warning: argument 'filename' from the argument list of GNUNET_xstrndup_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1702: warning: argument 'linenumber' from the argument list of GNUNET_xstrndup_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1723: warning: argument 'old' from the argument list of GNUNET_xgrow_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1723: warning: argument 'elementSize' from the argument list of GNUNET_xgrow_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1723: warning: argument 'oldCount' from the argument list of GNUNET_xgrow_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1723: warning: argument 'newCount' from the argument list of GNUNET_xgrow_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1723: warning: argument 'filename' from the argument list of GNUNET_xgrow_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1723: warning: argument 'linenumber' from the argument list of GNUNET_xgrow_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1744: warning: argument 'out' of command @param is not found in the argument list of GNUNET_async_scope_enter(const struct GNUNET_AsyncScopeId *aid, struct GNUNET_AsyncScopeSave *old_scope) -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2110: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap32_iterator_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2141: warning: argument 'iter' from the argument list of GNUNET_CONTAINER_multihashmap32_iterator_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:608: warning: argument 'sum' from the argument list of GNUNET_CRYPTO_crc16_step has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:608: warning: argument 'buf' from the argument list of GNUNET_CRYPTO_crc16_step has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:608: warning: argument 'len' from the argument list of GNUNET_CRYPTO_crc16_step has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:618: warning: argument 'sum' from the argument list of GNUNET_CRYPTO_crc16_finish has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:801: warning: argument 'iv' from the argument list of GNUNET_CRYPTO_symmetric_derive_iv_v has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:801: warning: argument 'skey' from the argument list of GNUNET_CRYPTO_symmetric_derive_iv_v has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:801: warning: argument 'salt' from the argument list of GNUNET_CRYPTO_symmetric_derive_iv_v has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:801: warning: argument 'salt_len' from the argument list of GNUNET_CRYPTO_symmetric_derive_iv_v has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:801: warning: argument 'argp' from the argument list of GNUNET_CRYPTO_symmetric_derive_iv_v has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:897: warning: argument 'salt' from the argument list of GNUNET_CRYPTO_pow_hash has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:897: warning: argument 'buf' from the argument list of GNUNET_CRYPTO_pow_hash has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:897: warning: argument 'buf_len' from the argument list of GNUNET_CRYPTO_pow_hash has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:897: warning: argument 'result' from the argument list of GNUNET_CRYPTO_pow_hash has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1424: warning: argument 'priv' of command @param is not found in the argument list of GNUNET_CRYPTO_eddsa_private_key_from_string(const char *enc, size_t enclen, struct GNUNET_CRYPTO_EddsaPrivateKey *pub) -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1403: warning: The following parameter of GNUNET_CRYPTO_eddsa_private_key_from_string(const char *enc, size_t enclen, struct GNUNET_CRYPTO_EddsaPrivateKey *pub) is not documented: - parameter 'pub' -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1683: warning: argument 'dlc' of command @param is not found in the argument list of GNUNET_CRYPTO_ecc_dlog(struct GNUNET_CRYPTO_EccDlogContext *edc, const struct GNUNET_CRYPTO_EccPoint *input) -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1691: warning: The following parameter of GNUNET_CRYPTO_ecc_dlog(struct GNUNET_CRYPTO_EccDlogContext *edc, const struct GNUNET_CRYPTO_EccPoint *input) is not documented: - parameter 'edc' -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2221: warning: argument 'purp' of command @param is not found in the argument list of GNUNET_CRYPTO_ecdsa_sign_derived(const struct GNUNET_CRYPTO_EcdsaPrivateKey *pkey, const char *label, const char *context, const struct GNUNET_CRYPTO_EccSignaturePurpose *purpose, struct GNUNET_CRYPTO_EcdsaSignature *sig) -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2213: warning: The following parameter of GNUNET_CRYPTO_ecdsa_sign_derived(const struct GNUNET_CRYPTO_EcdsaPrivateKey *pkey, const char *label, const char *context, const struct GNUNET_CRYPTO_EccSignaturePurpose *purpose, struct GNUNET_CRYPTO_EcdsaSignature *sig) is not documented: - parameter 'purpose' -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2285: warning: argument 'purp' of command @param is not found in the argument list of GNUNET_CRYPTO_eddsa_sign_derived(const struct GNUNET_CRYPTO_EddsaPrivateKey *pkey, const char *label, const char *context, const struct GNUNET_CRYPTO_EccSignaturePurpose *purpose, struct GNUNET_CRYPTO_EddsaSignature *sig) -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2276: warning: The following parameter of GNUNET_CRYPTO_eddsa_sign_derived(const struct GNUNET_CRYPTO_EddsaPrivateKey *pkey, const char *label, const char *context, const struct GNUNET_CRYPTO_EccSignaturePurpose *purpose, struct GNUNET_CRYPTO_EddsaSignature *sig) is not documented: - parameter 'purpose' -/home/william/Git/gnunet/src/util/crypto_paillier.c:331: warning: Found unknown command '\private_key' -/home/william/Git/gnunet/src/util/crypto_paillier.c:336: warning: Found unknown command '\private_key' -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2423: warning: argument 'private_key' from the argument list of GNUNET_CRYPTO_paillier_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2423: warning: argument 'public_key' from the argument list of GNUNET_CRYPTO_paillier_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2423: warning: argument 'ciphertext' from the argument list of GNUNET_CRYPTO_paillier_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2423: warning: argument 'm' from the argument list of GNUNET_CRYPTO_paillier_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2444: warning: argument 'public_key' from the argument list of GNUNET_CRYPTO_paillier_hom_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2444: warning: argument 'c1' from the argument list of GNUNET_CRYPTO_paillier_hom_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2444: warning: argument 'c2' from the argument list of GNUNET_CRYPTO_paillier_hom_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2444: warning: argument 'result' from the argument list of GNUNET_CRYPTO_paillier_hom_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2673: warning: argument 'bkey' of command @param is not found in the argument list of GNUNET_CRYPTO_rsa_blind(const struct GNUNET_HashCode *hash, const struct GNUNET_CRYPTO_RsaBlindingKeySecret *bks, struct GNUNET_CRYPTO_RsaPublicKey *pkey, void **buf, size_t *buf_size) -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2684: warning: The following parameter of GNUNET_CRYPTO_rsa_blind(const struct GNUNET_HashCode *hash, const struct GNUNET_CRYPTO_RsaBlindingKeySecret *bks, struct GNUNET_CRYPTO_RsaPublicKey *pkey, void **buf, size_t *buf_size) is not documented: - parameter 'bks' -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2763: warning: explicit link request to 'GNUNET_CRYPTO_rsa_sign()' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_op_lib.h:87: warning: argument 'h' from the argument list of GNUNET_OP_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_op_lib.h:87: warning: argument 'op_id' from the argument list of GNUNET_OP_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_op_lib.h:87: warning: argument 'result_cb' from the argument list of GNUNET_OP_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_op_lib.h:87: warning: argument 'cls' from the argument list of GNUNET_OP_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_op_lib.h:87: warning: argument 'ctx' from the argument list of GNUNET_OP_get has multiple @param documentation sections -/home/william/Git/gnunet/src/hello/hello-uri.c:102: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_HELLO' could not be resolved -/home/william/Git/gnunet/src/hello/hello-uri.c:102: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_HELLO' could not be resolved -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.h:192: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_CADET_CONNECTION_INITIATOR' could not be resolved -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.h:192: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_CADET_CONNECTION_INITIATOR' could not be resolved -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.c:227: warning: Found unknown command '\path_tails' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.c:213: warning: Found unknown command '\GCP_get_desirability_of_path' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.c:227: warning: Found unknown command '\path_tails' -/home/william/Git/gnunet/src/conversation/conversation.h:265: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_CONVERSATION_RING' could not be resolved -/home/william/Git/gnunet/src/conversation/conversation.h:265: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_CONVERSATION_RING' could not be resolved -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.c:170: warning: Found unknown command '\HKr' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_paths.c:310: warning: explicit link request to 'find_peer_at()' could not be resolved -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_paths.c:310: warning: explicit link request to 'find_peer_at()' could not be resolved -/home/william/Git/gnunet/src/util/configuration.c:137: warning: Found unknown command '\inline' -/home/william/Git/gnunet/src/util/configuration.c:137: warning: Found unknown command '\inline' -/home/william/Git/gnunet/src/util/configuration.c:91: warning: Found unknown command '\inline' -/home/william/Git/gnunet/src/hello/hello-uri.c:136: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_HELLO' could not be resolved -/home/william/Git/gnunet/src/hello/hello-uri.c:136: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_HELLO' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:1727: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_EPHEMERAL' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:1727: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_EPHEMERAL' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:606: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_DV_HOP' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:606: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_DV_HOP' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:562: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_DV_INITIATOR' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:562: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_DV_INITIATOR' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:640: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_DV_HOP' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:640: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_DV_HOP' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:365: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_EPHEMERAL' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:365: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_EPHEMERAL' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.c:204: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_DISCONNECT' could not be resolved -/home/william/Git/gnunet/src/cadet/cadet_protocol.h:80: warning: explicit link request to 'GNUNET_CADET_OPTION_DEFAULT' could not be resolved -/home/william/Git/gnunet/src/cadet/cadet_protocol.h:81: warning: explicit link request to 'GNUNET_CADET_OPTION_NOBUFFER' could not be resolved -/home/william/Git/gnunet/src/cadet/cadet.h:301: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_CADET_LOCAL_INFO_TUNNEL' could not be resolved -/home/william/Git/gnunet/src/cadet/cadet.h:302: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_CADET_LOCAL_INFO_PEER' could not be resolved -/home/william/Git/gnunet/src/cadet/cadet.h:301: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_CADET_LOCAL_INFO_TUNNEL' could not be resolved -/home/william/Git/gnunet/src/cadet/cadet.h:302: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_CADET_LOCAL_INFO_PEER' could not be resolved -/home/william/Git/gnunet/src/cadet/cadet.h:460: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_CADET_LOCAL_INFO_TUNNEL' could not be resolved -/home/william/Git/gnunet/src/cadet/cadet.h:460: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_CADET_LOCAL_INFO_TUNNEL' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_dht_service.h:128: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_DHT_HOP' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_dht_service.h:128: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_DHT_HOP' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_dht_service.h:177: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_DHT_HOP' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_dht_service.h:177: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_DHT_HOP' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_dhtu_plugin.h:120: warning: Found unknown command '\para' -/home/william/Git/gnunet/src/exit/exit.h:96: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_VPN_TCP_DATA' could not be resolved -/home/william/Git/gnunet/src/exit/exit.h:96: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_VPN_TCP_DATA' could not be resolved -/home/william/Git/gnunet/src/nat-auto/nat-auto.h:72: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_NAT_REQUEST_AUTO_CFG' could not be resolved -/home/william/Git/gnunet/src/nat-auto/nat-auto.h:72: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_NAT_REQUEST_AUTO_CFG' could not be resolved -/home/william/Git/gnunet/src/secretsharing/secretsharing_protocol.h:115: warning: Found unknown command '\beta' -/home/william/Git/gnunet/src/secretsharing/secretsharing_protocol.h:115: warning: Found unknown command '\beta' -/home/william/Git/gnunet/src/secretsharing/secretsharing_protocol.h:120: warning: Found unknown command '\beta' -/home/william/Git/gnunet/src/secretsharing/secretsharing_protocol.h:120: warning: Found unknown command '\beta' -/home/william/Git/gnunet/src/secretsharing/secretsharing_protocol.h:125: warning: Found unknown command '\beta' -/home/william/Git/gnunet/src/secretsharing/secretsharing_protocol.h:125: warning: Found unknown command '\cdot' -/home/william/Git/gnunet/src/testbed/testbed.h:739: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_UNDERLAYLINKMODELMSG' could not be resolved -/home/william/Git/gnunet/src/testbed/testbed.h:739: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_UNDERLAYLINKMODELMSG' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_testing_ng_lib.h:116: warning: explicit link request to 'GNUNET_TESTING_interpreter_next()' could not be resolved -/home/william/Git/gnunet/src/hello/hello-uri.c:51: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_HELLO' could not be resolved -/home/william/Git/gnunet/src/hello/hello-uri.c:51: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_HELLO' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-transport.c:1041: warning: explicit link request to 'send_validation_information()' could not be resolved -/home/william/Git/gnunet/src/testing/testing_api_loop.c:516: warning: explicit link request to 'EXIT_FAILURE' could not be resolved -/home/william/Git/gnunet/src/testing/testing_api_loop.c:516: warning: explicit link request to 'EXIT_FAILURE' could not be resolved -/home/william/Git/gnunet/src/hello/hello.c:385: warning: explicit link request to 'GNUNET_HELLO_Merge' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.c:435: warning: explicit link request to 'S_CONNECTED' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:2142: warning: explicit link request to 'PMT_FRAGMENT_BOx' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:2142: warning: explicit link request to 'PMT_FRAGMENT_BOx' could not be resolved -/home/william/Git/gnunet/src/datastore/plugin_datastore_postgres.c:591: warning: explicit link request to 'repl_iter()' could not be resolved -/home/william/Git/gnunet/src/fs/fs.h:82: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_PEER_PLACEMENT' could not be resolved -/home/william/Git/gnunet/src/fs/fs.h:116: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_PEER_PLACEMENT' could not be resolved -/home/william/Git/gnunet/src/hello/hello-ng.c:39: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_ADDRESS' could not be resolved -/home/william/Git/gnunet/src/hello/hello-ng.c:39: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_ADDRESS' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:192: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_COMMUNICATOR_TCP_HANDSHAKE' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:192: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_COMMUNICATOR_TCP_HANDSHAKE' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:227: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_COMMUNICATOR_TCP_HANDSHAKE_ACK' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:227: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_COMMUNICATOR_TCP_HANDSHAKE_ACK' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:155: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_COMMUNICATOR_TCP_HANDSHAKE_ACK' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:155: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_COMMUNICATOR_TCP_HANDSHAKE_ACK' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:117: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_COMMUNICATOR_TCP_HANDSHAKE' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:117: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_COMMUNICATOR_TCP_HANDSHAKE' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:299: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_COMMUNICATOR_TCP_REKEY' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:299: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_COMMUNICATOR_TCP_REKEY' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:317: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_COMMUNICATOR_TCP_REKEY' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:317: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_COMMUNICATOR_TCP_REKEY' could not be resolved -/home/william/Git/gnunet/src/util/gnunet-crypto-tvg.c:61: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TEST' could not be resolved -/home/william/Git/gnunet/src/core/gnunet-service-core.c:380: warning: explicit link request to 'client_tokenizer_callback()' could not be resolved -/home/william/Git/gnunet/src/core/gnunet-service-core.c:380: warning: explicit link request to 'client_tokenizer_callback()' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:411: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_EPHEMERAL' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:411: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_EPHEMERAL' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:705: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_DV_INITIATOR' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:705: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_DV_INITIATOR' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-transport_validation.c:202: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_PONG_OWN' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-transport_validation.c:202: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_PONG_OWN' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:853: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_CHALLENGE' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:853: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_CHALLENGE' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:872: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_ADDRESS_VALIDATION_CHALLENGE' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:888: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_CHALLENGE' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:872: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_ADDRESS_VALIDATION_CHALLENGE' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:888: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_CHALLENGE' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:317: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_COMMUNICATOR_UDP_BROADCAST' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:317: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_COMMUNICATOR_UDP_BROADCAST' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:286: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_COMMUNICATOR_UDP_BROADCAST' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:286: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_COMMUNICATOR_UDP_BROADCAST' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:229: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_COMMUNICATOR_UDP_HANDSHAKE' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:229: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_COMMUNICATOR_UDP_HANDSHAKE' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:166: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_COMMUNICATOR_UDP_HANDSHAKE' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:166: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_COMMUNICATOR_UDP_HANDSHAKE' could not be resolved -/home/william/Git/gnunet/src/transport/transport.h:388: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TRANSPORT_MONITOR_VALIDATION_RESPONSE' could not be resolved -/home/william/Git/gnunet/src/transport/transport.h:388: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TRANSPORT_MONITOR_VALIDATION_RESPONSE' could not be resolved -/home/william/Git/gnunet/src/transport/transport.h:449: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TRANSPORT_MONITOR_VALIDATION_REQUEST' could not be resolved -/home/william/Git/gnunet/src/transport/transport.h:449: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TRANSPORT_MONITOR_VALIDATION_REQUEST' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:1351: warning: explicit link request to 'core_visibility_check()' could not be resolved -/home/william/Git/gnunet/src/namestore/namestore.h:348: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_MONITOR_NEXT' could not be resolved -/home/william/Git/gnunet/src/namestore/namestore.h:348: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_MONITOR_NEXT' could not be resolved -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_paths.c:310: warning: explicit link request to 'find_peer_at()' could not be resolved -/home/william/Git/gnunet/src/core/gnunet-service-core.c:380: warning: explicit link request to 'client_tokenizer_callback()' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:872: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_ADDRESS_VALIDATION_CHALLENGE' could not be resolved -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_paths.c:310: warning: explicit link request to 'find_peer_at()' could not be resolved -/home/william/Git/gnunet/src/core/gnunet-service-core.c:380: warning: explicit link request to 'client_tokenizer_callback()' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:872: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_ADDRESS_VALIDATION_CHALLENGE' could not be resolved -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_paths.c:310: warning: explicit link request to 'find_peer_at()' could not be resolved -/home/william/Git/gnunet/src/core/gnunet-service-core.c:380: warning: explicit link request to 'client_tokenizer_callback()' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:872: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_ADDRESS_VALIDATION_CHALLENGE' could not be resolved -/home/william/Git/gnunet/src/hello/hello-uri.c:102: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_HELLO' could not be resolved -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.h:192: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_CADET_CONNECTION_INITIATOR' could not be resolved -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.c:213: warning: Found unknown command '\GCP_get_desirability_of_path' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.c:227: warning: Found unknown command '\path_tails' -/home/william/Git/gnunet/src/conversation/conversation.h:265: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_CONVERSATION_RING' could not be resolved -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.c:170: warning: Found unknown command '\HKr' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_paths.c:310: warning: explicit link request to 'find_peer_at()' could not be resolved -/home/william/Git/gnunet/src/util/configuration.c:137: warning: Found unknown command '\inline' -/home/william/Git/gnunet/src/util/configuration.c:91: warning: Found unknown command '\inline' -/home/william/Git/gnunet/src/hello/hello-uri.c:136: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_HELLO' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:1727: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_EPHEMERAL' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:606: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_DV_HOP' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:562: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_DV_INITIATOR' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:640: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_DV_HOP' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:365: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_EPHEMERAL' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.c:204: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_DISCONNECT' could not be resolved -/home/william/Git/gnunet/src/cadet/cadet_protocol.h:80: warning: explicit link request to 'GNUNET_CADET_OPTION_DEFAULT' could not be resolved -/home/william/Git/gnunet/src/cadet/cadet_protocol.h:81: warning: explicit link request to 'GNUNET_CADET_OPTION_NOBUFFER' could not be resolved -/home/william/Git/gnunet/src/cadet/cadet.h:301: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_CADET_LOCAL_INFO_TUNNEL' could not be resolved -/home/william/Git/gnunet/src/cadet/cadet.h:302: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_CADET_LOCAL_INFO_PEER' could not be resolved -/home/william/Git/gnunet/src/cadet/cadet.h:460: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_CADET_LOCAL_INFO_TUNNEL' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_dht_service.h:128: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_DHT_HOP' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_dht_service.h:177: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_DHT_HOP' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_dhtu_plugin.h:120: warning: Found unknown command '\para' -/home/william/Git/gnunet/src/exit/exit.h:96: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_VPN_TCP_DATA' could not be resolved -/home/william/Git/gnunet/src/nat-auto/nat-auto.h:72: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_NAT_REQUEST_AUTO_CFG' could not be resolved -/home/william/Git/gnunet/src/secretsharing/secretsharing_protocol.h:115: warning: Found unknown command '\beta' -/home/william/Git/gnunet/src/secretsharing/secretsharing_protocol.h:115: warning: Found unknown command '\beta' -/home/william/Git/gnunet/src/secretsharing/secretsharing_protocol.h:120: warning: Found unknown command '\beta' -/home/william/Git/gnunet/src/secretsharing/secretsharing_protocol.h:120: warning: Found unknown command '\beta' -/home/william/Git/gnunet/src/secretsharing/secretsharing_protocol.h:125: warning: Found unknown command '\beta' -/home/william/Git/gnunet/src/secretsharing/secretsharing_protocol.h:125: warning: Found unknown command '\cdot' -/home/william/Git/gnunet/src/testbed/testbed.h:739: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_UNDERLAYLINKMODELMSG' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_testing_ng_lib.h:116: warning: explicit link request to 'GNUNET_TESTING_interpreter_next()' could not be resolved -/home/william/Git/gnunet/src/hello/hello-uri.c:51: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_HELLO' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-transport.c:1041: warning: explicit link request to 'send_validation_information()' could not be resolved -/home/william/Git/gnunet/src/testing/testing_api_loop.c:516: warning: explicit link request to 'EXIT_FAILURE' could not be resolved -/home/william/Git/gnunet/src/hello/hello.c:385: warning: explicit link request to 'GNUNET_HELLO_Merge' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.c:435: warning: explicit link request to 'S_CONNECTED' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:2142: warning: explicit link request to 'PMT_FRAGMENT_BOx' could not be resolved -/home/william/Git/gnunet/src/datastore/plugin_datastore_postgres.c:591: warning: explicit link request to 'repl_iter()' could not be resolved -/home/william/Git/gnunet/src/fs/fs.h:82: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_PEER_PLACEMENT' could not be resolved -/home/william/Git/gnunet/src/fs/fs.h:116: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_PEER_PLACEMENT' could not be resolved -/home/william/Git/gnunet/src/hello/hello-ng.c:39: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_ADDRESS' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:192: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_COMMUNICATOR_TCP_HANDSHAKE' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:227: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_COMMUNICATOR_TCP_HANDSHAKE_ACK' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:155: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_COMMUNICATOR_TCP_HANDSHAKE_ACK' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:117: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_COMMUNICATOR_TCP_HANDSHAKE' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:299: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_COMMUNICATOR_TCP_REKEY' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:317: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_COMMUNICATOR_TCP_REKEY' could not be resolved -/home/william/Git/gnunet/src/util/gnunet-crypto-tvg.c:61: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TEST' could not be resolved -/home/william/Git/gnunet/src/core/gnunet-service-core.c:380: warning: explicit link request to 'client_tokenizer_callback()' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:411: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_EPHEMERAL' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:705: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_DV_INITIATOR' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-transport_validation.c:202: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_PONG_OWN' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:853: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_CHALLENGE' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:888: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_CHALLENGE' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:872: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_ADDRESS_VALIDATION_CHALLENGE' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:317: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_COMMUNICATOR_UDP_BROADCAST' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:286: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_COMMUNICATOR_UDP_BROADCAST' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:229: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_COMMUNICATOR_UDP_HANDSHAKE' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:166: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_COMMUNICATOR_UDP_HANDSHAKE' could not be resolved -/home/william/Git/gnunet/src/transport/transport.h:388: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TRANSPORT_MONITOR_VALIDATION_RESPONSE' could not be resolved -/home/william/Git/gnunet/src/transport/transport.h:449: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TRANSPORT_MONITOR_VALIDATION_REQUEST' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:1351: warning: explicit link request to 'core_visibility_check()' could not be resolved -/home/william/Git/gnunet/src/namestore/namestore.h:348: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_MONITOR_NEXT' could not be resolved -/home/william/Git/gnunet/src/abd/abd_api.c:424: warning: The following parameters of GNUNET_ABD_collect(struct GNUNET_ABD_Handle *handle, const struct GNUNET_IDENTITY_PublicKey *issuer_key, const char *issuer_attribute, const struct GNUNET_IDENTITY_PrivateKey *subject_key, enum GNUNET_ABD_AlgoDirectionFlags direction, GNUNET_ABD_CredentialResultProcessor proc, void *proc_cls, GNUNET_ABD_IntermediateResultProcessor proc2, void *proc2_cls) are not documented: - parameter 'direction' - parameter 'proc2' - parameter 'proc2_cls' -/home/william/Git/gnunet/src/abd/abd_api.c:498: warning: The following parameters of GNUNET_ABD_verify(struct GNUNET_ABD_Handle *handle, const struct GNUNET_IDENTITY_PublicKey *issuer_key, const char *issuer_attribute, const struct GNUNET_IDENTITY_PublicKey *subject_key, uint32_t delegate_count, const struct GNUNET_ABD_Delegate *delegates, enum GNUNET_ABD_AlgoDirectionFlags direction, GNUNET_ABD_CredentialResultProcessor proc, void *proc_cls, GNUNET_ABD_IntermediateResultProcessor proc2, void *proc2_cls) are not documented: - parameter 'direction' - parameter 'proc2' - parameter 'proc2_cls' -/home/william/Git/gnunet/src/abd/abd_serialization.c:143: warning: explicit link request to 'GNUNET_ABD_Credential' could not be resolved -/home/william/Git/gnunet/src/abd/abd_serialization.c:172: warning: explicit link request to 'GNUNET_ABD_Credential' could not be resolved -/home/william/Git/gnunet/src/abd/abd_serialization.c:264: warning: explicit link request to 'GNUNET_ABD_Credential' could not be resolved -/home/william/Git/gnunet/src/abd/abd_serialization.c:296: warning: explicit link request to 'GNUNET_ABD_Credential' could not be resolved -/home/william/Git/gnunet/src/abd/abd_serialization.h:45: warning: argument 'ds_count' from the argument list of GNUNET_ABD_delegation_set_get_size has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:45: warning: argument 'dsr' from the argument list of GNUNET_ABD_delegation_set_get_size has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:59: warning: argument 'd_count' from the argument list of GNUNET_ABD_delegation_set_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:59: warning: argument 'dsr' from the argument list of GNUNET_ABD_delegation_set_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:59: warning: argument 'dest_size' from the argument list of GNUNET_ABD_delegation_set_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:59: warning: argument 'dest' from the argument list of GNUNET_ABD_delegation_set_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:76: warning: argument 'len' from the argument list of GNUNET_ABD_delegation_set_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:76: warning: argument 'src' from the argument list of GNUNET_ABD_delegation_set_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:76: warning: argument 'd_count' from the argument list of GNUNET_ABD_delegation_set_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:76: warning: argument 'dsr' from the argument list of GNUNET_ABD_delegation_set_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.c:270: warning: explicit link request to 'GNUNET_ABD_Credential' could not be resolved -/home/william/Git/gnunet/src/abd/abd_serialization.h:93: warning: argument 'd_count' from the argument list of GNUNET_ABD_delegation_chain_get_size has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:93: warning: argument 'dd' from the argument list of GNUNET_ABD_delegation_chain_get_size has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:93: warning: argument 'c_count' from the argument list of GNUNET_ABD_delegation_chain_get_size has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:93: warning: argument 'cd' from the argument list of GNUNET_ABD_delegation_chain_get_size has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.c:304: warning: explicit link request to 'GNUNET_ABD_Credential' could not be resolved -/home/william/Git/gnunet/src/abd/abd_serialization.h:111: warning: argument 'd_count' from the argument list of GNUNET_ABD_delegation_chain_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:111: warning: argument 'dd' from the argument list of GNUNET_ABD_delegation_chain_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:111: warning: argument 'c_count' from the argument list of GNUNET_ABD_delegation_chain_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:111: warning: argument 'cd' from the argument list of GNUNET_ABD_delegation_chain_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:111: warning: argument 'dest_size' from the argument list of GNUNET_ABD_delegation_chain_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:111: warning: argument 'dest' from the argument list of GNUNET_ABD_delegation_chain_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:132: warning: argument 'len' from the argument list of GNUNET_ABD_delegation_chain_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:132: warning: argument 'src' from the argument list of GNUNET_ABD_delegation_chain_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:132: warning: argument 'd_count' from the argument list of GNUNET_ABD_delegation_chain_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:132: warning: argument 'dd' from the argument list of GNUNET_ABD_delegation_chain_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:132: warning: argument 'c_count' from the argument list of GNUNET_ABD_delegation_chain_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.h:132: warning: argument 'cd' from the argument list of GNUNET_ABD_delegation_chain_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/abd/abd_serialization.c:143: warning: explicit link request to 'GNUNET_ABD_Credential' could not be resolved -/home/william/Git/gnunet/src/abd/abd_serialization.c:172: warning: explicit link request to 'GNUNET_ABD_Credential' could not be resolved -/home/william/Git/gnunet/src/abd/delegate_misc.c:197: warning: The following parameters of GNUNET_ABD_delegate_issue(const struct GNUNET_IDENTITY_PrivateKey *issuer, struct GNUNET_IDENTITY_PublicKey *subject, const char *iss_attr, const char *sub_attr, struct GNUNET_TIME_Absolute *expiration) are not documented: - parameter 'sub_attr' - parameter 'expiration' -/home/william/Git/gnunet/src/abd/gnunet-abd.c:430: warning: argument 'out' of command @param is not found in the argument list of parse_expiration(const char *expirationstring, int *etime_is_rel, uint64_t *etime) -/home/william/Git/gnunet/src/abd/gnunet-abd.c:430: warning: argument 'out' of command @param is not found in the argument list of parse_expiration(const char *expirationstring, int *etime_is_rel, uint64_t *etime) -/home/william/Git/gnunet/src/abe/abe.c:181: warning: documented empty return type of GNUNET_ABE_cpabe_delete_master_key -/home/william/Git/gnunet/src/abe/abe.c:226: warning: argument 'key' from the argument list of GNUNET_ABE_cpabe_delete_key has multiple @param documentation sections -/home/william/Git/gnunet/src/abe/abe.c:226: warning: argument 'delete_pub' from the argument list of GNUNET_ABE_cpabe_delete_key has multiple @param documentation sections -/home/william/Git/gnunet/src/abe/abe.c:226: warning: documented empty return type of GNUNET_ABE_cpabe_delete_key -/home/william/Git/gnunet/src/arm/gnunet-arm.c:728: warning: argument 'cls' from the argument list of action_loop has multiple @param documentation sections -/home/william/Git/gnunet/src/arm/gnunet-service-arm.c:1359: warning: argument 'message' of command @param is not found in the argument list of handle_list(void *cls, const struct GNUNET_ARM_Message *request) -/home/william/Git/gnunet/src/arm/gnunet-service-arm.c:1364: warning: The following parameter of handle_list(void *cls, const struct GNUNET_ARM_Message *request) is not documented: - parameter 'request' -/home/william/Git/gnunet/src/ats/ats_api_scanner.c:31: warning: argument 'OUT' of command @param is not found in the argument list of GNUNET_ATS_properties_hton(struct GNUNET_ATS_PropertiesNBO *nbo, const struct GNUNET_ATS_Properties *hbo) -/home/william/Git/gnunet/src/ats/ats_api_scanner.c:49: warning: argument 'OUT' of command @param is not found in the argument list of GNUNET_ATS_properties_ntoh(struct GNUNET_ATS_Properties *hbo, const struct GNUNET_ATS_PropertiesNBO *nbo) -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:348: warning: Found unknown command '\ar' -/home/william/Git/gnunet/src/ats/gnunet-service-ats_addresses.c:670: warning: argument 'cls' of command @param is not found in the argument list of GAS_handle_request_address_list(struct GNUNET_SERVICE_Client *client, const struct AddressListRequestMessage *alrm) -/home/william/Git/gnunet/src/ats/gnunet-service-ats_addresses.c:675: warning: The following parameter of GAS_handle_request_address_list(struct GNUNET_SERVICE_Client *client, const struct AddressListRequestMessage *alrm) is not documented: - parameter 'client' -/home/william/Git/gnunet/src/ats/gnunet-service-ats_addresses.h:394: warning: argument 'peer' from the argument list of GAS_addresses_add has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_addresses.h:394: warning: argument 'plugin_name' from the argument list of GAS_addresses_add has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_addresses.h:394: warning: argument 'plugin_addr' from the argument list of GAS_addresses_add has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_addresses.h:394: warning: argument 'plugin_addr_len' from the argument list of GAS_addresses_add has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_addresses.h:394: warning: argument 'local_address_info' from the argument list of GAS_addresses_add has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_addresses.h:394: warning: argument 'session_id' from the argument list of GAS_addresses_add has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_addresses.h:394: warning: argument 'prop' from the argument list of GAS_addresses_add has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_addresses.h:411: warning: argument 'peer' from the argument list of GAS_addresses_update has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_addresses.h:411: warning: argument 'session_id' from the argument list of GAS_addresses_update has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_addresses.h:411: warning: argument 'prop' from the argument list of GAS_addresses_update has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_addresses.h:472: warning: argument 'peer' from the argument list of GAS_addresses_get_peer_info has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_addresses.h:472: warning: argument 'pi_it' from the argument list of GAS_addresses_get_peer_info has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_addresses.h:472: warning: argument 'pi_it_cls' from the argument list of GAS_addresses_get_peer_info has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_addresses.c:670: warning: argument 'cls' of command @param is not found in the argument list of GAS_handle_request_address_list(struct GNUNET_SERVICE_Client *client, const struct AddressListRequestMessage *alrm) -/home/william/Git/gnunet/src/ats/gnunet-service-ats_addresses.h:484: warning: argument 'alrm' from the argument list of GAS_handle_request_address_list has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_connectivity.h:45: warning: argument 'message' of command @param is not found in the argument list of GAS_handle_request_address(struct GNUNET_SERVICE_Client *client, const struct RequestAddressMessage *msg) -/home/william/Git/gnunet/src/ats/gnunet-service-ats_connectivity.c:82: warning: The following parameter of GAS_handle_request_address(struct GNUNET_SERVICE_Client *client, const struct RequestAddressMessage *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/ats/gnunet-service-ats_connectivity.h:45: warning: argument 'message' of command @param is not found in the argument list of GAS_handle_request_address(struct GNUNET_SERVICE_Client *client, const struct RequestAddressMessage *msg) -/home/william/Git/gnunet/src/ats/gnunet-service-ats_connectivity.h:52: warning: argument 'client' from the argument list of GAS_handle_request_address has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_connectivity.h:63: warning: argument 'client' from the argument list of GAS_handle_request_address_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_connectivity.h:63: warning: argument 'msg' from the argument list of GAS_handle_request_address_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_normalization.h:43: warning: argument 'address' from the argument list of GAS_normalization_update_property has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_plugins.h:44: warning: argument 'cfg' from the argument list of GAS_plugin_init has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_plugins.h:73: warning: argument 'address' from the argument list of GAS_plugin_notify_property_changed has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_plugins.c:498: warning: argument 'addr_net' of command @param is not found in the argument list of GAS_plugin_new_address(struct ATS_Address *new_address) -/home/william/Git/gnunet/src/ats/gnunet-service-ats_plugins.h:84: warning: argument 'new_address' from the argument list of GAS_plugin_new_address has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_preferences.h:80: warning: argument 'cls' from the argument list of GAS_preference_get_by_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_preferences.h:80: warning: argument 'id' from the argument list of GAS_preference_get_by_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_preferences.h:90: warning: argument 'client' from the argument list of GAS_preference_client_disconnect has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_reservations.h:61: warning: argument 'server' of command @param is not found in the argument list of GAS_reservations_init(void) -/home/william/Git/gnunet/src/ats/gnunet-service-ats_reservations.c:140: warning: argument 'message' of command @param is not found in the argument list of GAS_handle_reservation_request(struct GNUNET_SERVICE_Client *client, const struct ReservationRequestMessage *msg) -/home/william/Git/gnunet/src/ats/gnunet-service-ats_reservations.h:54: warning: argument 'client' from the argument list of GAS_handle_reservation_request has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_reservations.h:61: warning: argument 'server' of command @param is not found in the argument list of GAS_reservations_init(void) -/home/william/Git/gnunet/src/ats/gnunet-service-ats_scheduling.h:63: warning: argument 'peer' from the argument list of GAS_scheduling_transmit_address_suggestion has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_scheduling.h:63: warning: argument 'session_id' from the argument list of GAS_scheduling_transmit_address_suggestion has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_scheduling.h:63: warning: argument 'bandwidth_out' from the argument list of GAS_scheduling_transmit_address_suggestion has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_scheduling.h:63: warning: argument 'bandwidth_in' from the argument list of GAS_scheduling_transmit_address_suggestion has multiple @param documentation sections -/home/william/Git/gnunet/src/ats/gnunet-service-ats_scheduling.c:119: warning: argument 'client' of command @param is not found in the argument list of GAS_handle_address_add(const struct AddressAddMessage *m) -/home/william/Git/gnunet/src/ats/gnunet-service-ats_scheduling.h:79: warning: argument 'm' from the argument list of GAS_handle_address_add has multiple @param documentation sections -/home/william/Git/gnunet/src/block/bg_bf.c:162: warning: argument 'ctx' of command @param is not found in the argument list of GNUNET_BLOCK_GROUP_bf_create(void *cls, size_t bf_size, unsigned int bf_k, enum GNUNET_BLOCK_Type type, uint32_t nonce, const void *raw_data, size_t raw_data_size) -/home/william/Git/gnunet/src/block/bg_bf.c:174: warning: The following parameter of GNUNET_BLOCK_GROUP_bf_create(void *cls, size_t bf_size, unsigned int bf_k, enum GNUNET_BLOCK_Type type, uint32_t nonce, const void *raw_data, size_t raw_data_size) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/block/bg_bf.c:210: warning: Found unknown command '\bg' -/home/william/Git/gnunet/src/include/gnunet_block_lib.h:277: warning: Found unknown command '\bg2' -/home/william/Git/gnunet/src/include/gnunet_block_lib.h:259: warning: argument 'bf_mutator' of command @param is not found in the argument list of GNUNET_BLOCK_group_set_seen(struct GNUNET_BLOCK_Group *bg, const struct GNUNET_HashCode *seen_results, unsigned int seen_results_count) -/home/william/Git/gnunet/src/block/block.c:228: warning: The following parameter of GNUNET_BLOCK_group_set_seen(struct GNUNET_BLOCK_Group *bg, const struct GNUNET_HashCode *seen_results, unsigned int seen_results_count) is not documented: - parameter 'bg' -/home/william/Git/gnunet/src/block/plugin_block_template.c:48: warning: argument 'ctx' of command @param is not found in the argument list of block_plugin_template_create_group(void *cls, enum GNUNET_BLOCK_Type type, uint32_t nonce, const void *raw_data, size_t raw_data_size, va_list va) -/home/william/Git/gnunet/src/block/plugin_block_template.c:59: warning: The following parameter of block_plugin_template_create_group(void *cls, enum GNUNET_BLOCK_Type type, uint32_t nonce, const void *raw_data, size_t raw_data_size, va_list va) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/block/plugin_block_template.c:96: warning: argument 'ctx' of command @param is not found in the argument list of block_plugin_template_check_query(void *cls, enum GNUNET_BLOCK_Type type, const struct GNUNET_HashCode *query, const void *xquery, size_t xquery_size) -/home/william/Git/gnunet/src/block/plugin_block_test.c:46: warning: argument 'ctx' of command @param is not found in the argument list of block_plugin_test_create_group(void *cls, enum GNUNET_BLOCK_Type type, uint32_t nonce, const void *raw_data, size_t raw_data_size, va_list va) -/home/william/Git/gnunet/src/block/plugin_block_test.c:57: warning: The following parameter of block_plugin_test_create_group(void *cls, enum GNUNET_BLOCK_Type type, uint32_t nonce, const void *raw_data, size_t raw_data_size, va_list va) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/block/plugin_block_test.c:94: warning: argument 'ctx' of command @param is not found in the argument list of block_plugin_test_check_query(void *cls, enum GNUNET_BLOCK_Type type, const struct GNUNET_HashCode *query, const void *xquery, size_t xquery_size) -/home/william/Git/gnunet/src/cadet/cadet_api.c:194: warning: argument 'call_cleaner' of command @param is not found in the argument list of destroy_channel(struct GNUNET_CADET_Channel *ch) -/home/william/Git/gnunet/src/cadet/cadet_api.c:461: warning: argument 'h' of command @param is not found in the argument list of handle_channel_created(void *cls, const struct GNUNET_CADET_LocalChannelCreateMessage *msg) -/home/william/Git/gnunet/src/cadet/cadet_api.c:468: warning: The following parameter of handle_channel_created(void *cls, const struct GNUNET_CADET_LocalChannelCreateMessage *msg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/cadet/cadet_api.c:529: warning: argument 'h' of command @param is not found in the argument list of handle_channel_destroy(void *cls, const struct GNUNET_CADET_LocalChannelDestroyMessage *msg) -/home/william/Git/gnunet/src/cadet/cadet_api.c:536: warning: The following parameter of handle_channel_destroy(void *cls, const struct GNUNET_CADET_LocalChannelDestroyMessage *msg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/cadet/cadet_api.c:584: warning: argument 'h' of command @param is not found in the argument list of handle_local_data(void *cls, const struct GNUNET_CADET_LocalData *message) -/home/william/Git/gnunet/src/cadet/cadet_api.c:589: warning: The following parameter of handle_local_data(void *cls, const struct GNUNET_CADET_LocalData *message) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/cadet/cadet_api.c:621: warning: argument 'h' of command @param is not found in the argument list of handle_local_ack(void *cls, const struct GNUNET_CADET_LocalAck *message) -/home/william/Git/gnunet/src/cadet/cadet_api.c:627: warning: The following parameter of handle_local_ack(void *cls, const struct GNUNET_CADET_LocalAck *message) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:261: warning: argument 'ch' of command @param is not found in the argument list of GNUNET_CADET_receive_done(struct GNUNET_CADET_Channel *channel) -/home/william/Git/gnunet/src/cadet/cadet_api.c:888: warning: The following parameter of GNUNET_CADET_receive_done(struct GNUNET_CADET_Channel *channel) is not documented: - parameter 'channel' -/home/william/Git/gnunet/src/cadet/cadet_api_drop_message.c:30: warning: End of list marker found without any preceding list items -/home/william/Git/gnunet/src/cadet/cadet_api_get_channel.c:240: warning: argument 'h' of command @param is not found in the argument list of GNUNET_CADET_get_channel_cancel(struct GNUNET_CADET_ChannelMonitor *cm) -/home/william/Git/gnunet/src/cadet/cadet_api_get_channel.c:247: warning: The following parameter of GNUNET_CADET_get_channel_cancel(struct GNUNET_CADET_ChannelMonitor *cm) is not documented: - parameter 'cm' -/home/william/Git/gnunet/src/cadet/cadet_api_list_tunnels.c:96: warning: argument 'message' of command @param is not found in the argument list of handle_get_tunnels_end(void *cls, const struct GNUNET_MessageHeader *msg) -/home/william/Git/gnunet/src/cadet/cadet_api_list_tunnels.c:101: warning: The following parameter of handle_get_tunnels_end(void *cls, const struct GNUNET_MessageHeader *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/cadet/gnunet-cadet-profiler.c:688: warning: argument 'cls' from the argument list of tmt_rdy_ping has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-cadet-profiler.c:688: warning: argument 'size' from the argument list of tmt_rdy_ping has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-cadet-profiler.c:688: warning: argument 'buf' from the argument list of tmt_rdy_ping has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-cadet-profiler.c:661: warning: argument 'cls' of command @param is not found in the argument list of pong(struct GNUNET_CADET_Channel *channel, const struct CadetPingMessage *ping) -/home/william/Git/gnunet/src/cadet/gnunet-cadet-profiler.c:661: warning: argument 'tc' of command @param is not found in the argument list of pong(struct GNUNET_CADET_Channel *channel, const struct CadetPingMessage *ping) -/home/william/Git/gnunet/src/cadet/gnunet-cadet-profiler.c:666: warning: The following parameters of pong(struct GNUNET_CADET_Channel *channel, const struct CadetPingMessage *ping) are not documented: - parameter 'channel' - parameter 'ping' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet.c:440: warning: argument 'h_port' of command @param is not found in the argument list of bind_loose_channel(void *cls, const struct GNUNET_HashCode *port, void *value) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet.c:450: warning: The following parameter of bind_loose_channel(void *cls, const struct GNUNET_HashCode *port, void *value) is not documented: - parameter 'port' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet.c:1234: warning: argument 'server' of command @param is not found in the argument list of run(void *cls, const struct GNUNET_CONFIGURATION_Handle *c, struct GNUNET_SERVICE_Handle *service) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet.c:1240: warning: The following parameter of run(void *cls, const struct GNUNET_CONFIGURATION_Handle *c, struct GNUNET_SERVICE_Handle *service) is not documented: - parameter 'service' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet.h:295: warning: argument 'c' from the argument list of GSC_bind has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet.h:295: warning: argument 'ch' from the argument list of GSC_bind has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet.h:295: warning: argument 'dest' from the argument list of GSC_bind has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet.h:295: warning: argument 'port' from the argument list of GSC_bind has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet.h:295: warning: argument 'options' from the argument list of GSC_bind has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.c:1201: warning: Found unknown command '\e1' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.c:1201: warning: Found unknown command '\e2' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.c:1706: warning: Found unknown command '\e1' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.c:1706: warning: Found unknown command '\e2' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.h:75: warning: argument 'ch' from the argument list of GCCH_assign_type_to_drop has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.h:75: warning: argument 'message' from the argument list of GCCH_assign_type_to_drop has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.c:665: warning: argument 'owner_id' of command @param is not found in the argument list of GCCH_channel_local_new(struct CadetClient *owner, struct GNUNET_CADET_ClientChannelNumber ccn, struct CadetPeer *destination, const struct GNUNET_HashCode *port, uint32_t options) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.h:122: warning: argument 'owner' from the argument list of GCCH_channel_local_new has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.h:122: warning: argument 'destination' from the argument list of GCCH_channel_local_new has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.h:122: warning: argument 'port' from the argument list of GCCH_channel_local_new has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.h:122: warning: argument 'options' from the argument list of GCCH_channel_local_new has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.h:139: warning: argument 'ch' from the argument list of GCCH_bind has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.h:139: warning: argument 'c' from the argument list of GCCH_bind has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.h:139: warning: argument 'port' from the argument list of GCCH_bind has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.c:761: warning: argument 'chid' of command @param is not found in the argument list of GCCH_channel_incoming_new(struct CadetTunnel *t, struct GNUNET_CADET_ChannelTunnelNumber ctn, const struct GNUNET_HashCode *h_port, uint32_t options) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.c:761: warning: argument 'origin' of command @param is not found in the argument list of GCCH_channel_incoming_new(struct CadetTunnel *t, struct GNUNET_CADET_ChannelTunnelNumber ctn, const struct GNUNET_HashCode *h_port, uint32_t options) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.h:183: warning: argument 't' from the argument list of GCCH_channel_incoming_new has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.h:183: warning: argument 'h_port' from the argument list of GCCH_channel_incoming_new has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.h:183: warning: argument 'options' from the argument list of GCCH_channel_incoming_new has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.h:211: warning: argument 'ch' from the argument list of GCCH_handle_channel_plaintext_data has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.h:211: warning: argument 'cti' from the argument list of GCCH_handle_channel_plaintext_data has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.h:211: warning: argument 'msg' from the argument list of GCCH_handle_channel_plaintext_data has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.h:245: warning: argument 'ch' from the argument list of GCCH_handle_channel_open_ack has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.h:245: warning: argument 'cti' from the argument list of GCCH_handle_channel_open_ack has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.h:245: warning: argument 'port' from the argument list of GCCH_handle_channel_open_ack has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.h:268: warning: argument 'ch' from the argument list of GCCH_handle_remote_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.h:268: warning: argument 'cti' from the argument list of GCCH_handle_remote_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.h:301: warning: argument 'ch' from the argument list of GCCH_handle_local_ack has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.h:301: warning: argument 'client_ccn' from the argument list of GCCH_handle_local_ack has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.c:238: warning: explicit link request to 'GCC_destroy_from_core()' could not be resolved -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.c:238: warning: explicit link request to 'GCC_destroy_from_tunnel()' could not be resolved -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.c:434: warning: argument 'cti' of command @param is not found in the argument list of GCC_ack_observed(const struct GNUNET_CADET_ConnectionTunnelIdentifier *cid) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.c:441: warning: The following parameter of GCC_ack_observed(const struct GNUNET_CADET_ConnectionTunnelIdentifier *cid) is not documented: - parameter 'cid' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.c:828: warning: The following parameter of connection_create(struct CadetPeer *destination, struct CadetPeerPath *path, unsigned int off, struct CadetTConnection *ct, const struct GNUNET_CADET_ConnectionTunnelIdentifier *cid, enum CadetConnectionState init_state, GCC_ReadyCallback ready_cb, void *ready_cb_cls) is not documented: - parameter 'cid' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.c:885: warning: The following parameter of GCC_create_inbound(struct CadetPeer *destination, struct CadetPeerPath *path, struct CadetTConnection *ct, const struct GNUNET_CADET_ConnectionTunnelIdentifier *cid, GCC_ReadyCallback ready_cb, void *ready_cb_cls) is not documented: - parameter 'cid' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.c:982: warning: explicit link request to 'GCC_is_ready()' could not be resolved -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.c:1011: warning: argument 'out' of command @param is not found in the argument list of GCC_get_path(struct CadetConnection *cc, unsigned int *off) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.h:97: warning: argument 'destination' from the argument list of GCC_create has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.h:97: warning: argument 'path' from the argument list of GCC_create has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.h:97: warning: argument 'off' from the argument list of GCC_create has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.h:97: warning: argument 'ct' from the argument list of GCC_create has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.h:97: warning: argument 'ready_cb' from the argument list of GCC_create has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.h:97: warning: argument 'ready_cb_cls' from the argument list of GCC_create has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.h:119: warning: The following parameter of GCC_create_inbound(struct CadetPeer *destination, struct CadetPeerPath *path, struct CadetTConnection *ct, const struct GNUNET_CADET_ConnectionTunnelIdentifier *cid, GCC_ReadyCallback ready_cb, void *ready_cb_cls) is not documented: - parameter 'cid' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.c:982: warning: explicit link request to 'GCC_is_ready()' could not be resolved -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.c:987: warning: explicit link request to 'GNUNET_MQ_notify_send()' could not be resolved -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.c:993: warning: explicit link request to 'GCC_is_ready()' could not be resolved -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.h:140: warning: argument 'cc' from the argument list of GCC_transmit has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.h:140: warning: argument 'env' from the argument list of GCC_transmit has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.h:150: warning: argument 'cc' from the argument list of GCC_handle_connection_create_ack has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.c:434: warning: argument 'cti' of command @param is not found in the argument list of GCC_ack_observed(const struct GNUNET_CADET_ConnectionTunnelIdentifier *cid) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.c:452: warning: argument 'cti' of command @param is not found in the argument list of GCC_latency_observed(const struct GNUNET_CADET_ConnectionTunnelIdentifier *cid, struct GNUNET_TIME_Relative latency) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.h:305: warning: argument 'latency' from the argument list of GCC_latency_observed has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.c:1011: warning: argument 'out' of command @param is not found in the argument list of GCC_get_path(struct CadetConnection *cc, unsigned int *off) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.c:1011: warning: argument 'out' of command @param is not found in the argument list of GCC_get_path(struct CadetConnection *cc, unsigned int *off) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.h:327: warning: argument 'cc' from the argument list of GCC_get_path has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.h:327: warning: argument 'off' from the argument list of GCC_get_path has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_core.c:322: warning: The following parameter of route_message(struct CadetPeer *prev, const struct GNUNET_CADET_ConnectionTunnelIdentifier *cid, const struct GNUNET_MessageHeader *msg, const enum GNUNET_MQ_PriorityPreferences priority) is not documented: - parameter 'priority' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_core.c:616: warning: argument 'available' of command @param is not found in the argument list of dir_ready_cb(void *cls, int ready) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_core.c:629: warning: The following parameter of dir_ready_cb(void *cls, int ready) is not documented: - parameter 'ready' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_core.c:1229: warning: The following parameter of core_connect_cb(void *cls, const struct GNUNET_PeerIdentity *peer, struct GNUNET_MQ_Handle *mq) is not documented: - parameter 'mq' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_core.c:1251: warning: The following parameter of core_disconnect_cb(void *cls, const struct GNUNET_PeerIdentity *peer, void *peer_cls) is not documented: - parameter 'peer_cls' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_hello.c:58: warning: argument 'peer' of command @param is not found in the argument list of got_hello(void *cls, const struct GNUNET_PeerIdentity *id, const struct GNUNET_HELLO_Message *hello, const char *err_msg) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_hello.c:65: warning: The following parameter of got_hello(void *cls, const struct GNUNET_PeerIdentity *id, const struct GNUNET_HELLO_Message *hello, const char *err_msg) is not documented: - parameter 'id' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_paths.c:471: warning: documented empty return type of GCPP_try_path_from_dht -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_paths.h:46: warning: argument 'get_path' from the argument list of GCPP_try_path_from_dht has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_paths.h:46: warning: argument 'get_path_length' from the argument list of GCPP_try_path_from_dht has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_paths.h:46: warning: argument 'put_path' from the argument list of GCPP_try_path_from_dht has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_paths.h:46: warning: argument 'put_path_length' from the argument list of GCPP_try_path_from_dht has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_paths.h:46: warning: documented empty return type of GCPP_try_path_from_dht -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_paths.c:599: warning: argument 'path' of command @param is not found in the argument list of GCPP_get_path_from_route(unsigned int path_length, const struct GNUNET_PeerIdentity *pids) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_paths.h:60: warning: argument 'path_length' from the argument list of GCPP_get_path_from_route has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_paths.h:157: warning: argument 'path' from the argument list of GCPP_release has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_paths.h:168: warning: argument 'path' from the argument list of GCPP_get_peer_at_offset has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_paths.h:168: warning: argument 'off' from the argument list of GCPP_get_peer_at_offset has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_paths.h:179: warning: argument 'path' from the argument list of GCPP_2s has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.c:237: warning: argument 'peer' of command @param is not found in the argument list of GCP_2s(const struct CadetPeer *cp) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.h:71: warning: argument 'cp' from the argument list of GCP_get_desirability_of_path has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.h:71: warning: argument 'off' from the argument list of GCP_get_desirability_of_path has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.h:169: warning: argument 'cp' from the argument list of GCP_iterate_paths_at has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.h:169: warning: argument 'dist' from the argument list of GCP_iterate_paths_at has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.h:169: warning: argument 'callback' from the argument list of GCP_iterate_paths_at has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.h:169: warning: argument 'callback_cls' from the argument list of GCP_iterate_paths_at has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.h:237: warning: argument 'cp' from the argument list of GCP_attach_path has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.h:237: warning: argument 'path' from the argument list of GCP_attach_path has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.h:237: warning: argument 'off' from the argument list of GCP_attach_path has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.h:237: warning: argument 'force' from the argument list of GCP_attach_path has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.h:288: warning: argument 'cp' from the argument list of GCP_set_hello has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.h:288: warning: argument 'hello' from the argument list of GCP_set_hello has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.h:337: warning: argument 'cp' from the argument list of GCP_request_mq has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.h:337: warning: argument 'cb' from the argument list of GCP_request_mq has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.h:337: warning: argument 'cb_cls' from the argument list of GCP_request_mq has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.h:364: warning: argument 'mqm' from the argument list of GCP_send has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.h:364: warning: argument 'env' from the argument list of GCP_send has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.h:391: warning: argument 'mqm' from the argument list of GCP_request_mq_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.h:391: warning: argument 'last_env' from the argument list of GCP_request_mq_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.c:686: warning: argument 'out' of command @param is not found in the argument list of t_hmac(const void *plaintext, size_t size, uint32_t iv, const struct GNUNET_CRYPTO_SymmetricSessionKey *key, struct GNUNET_ShortHashCode *hmac) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.c:905: warning: argument 'in' of command @param is not found in the argument list of t_h_encrypt(struct CadetTunnelAxolotl *ax, struct GNUNET_CADET_TunnelEncryptedMessage *msg) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.c:905: warning: argument 'out' of command @param is not found in the argument list of t_h_encrypt(struct CadetTunnelAxolotl *ax, struct GNUNET_CADET_TunnelEncryptedMessage *msg) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.c:910: warning: The following parameter of t_h_encrypt(struct CadetTunnelAxolotl *ax, struct GNUNET_CADET_TunnelEncryptedMessage *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.c:1501: warning: argument 'in' of command @param is not found in the argument list of update_ax_by_kx(struct CadetTunnelAxolotl *ax, const struct GNUNET_PeerIdentity *pid, const struct GNUNET_CRYPTO_EcdhePublicKey *ephemeral_key, const struct GNUNET_CRYPTO_EcdhePublicKey *ratchet_key) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.c:1501: warning: argument 'out' of command @param is not found in the argument list of update_ax_by_kx(struct CadetTunnelAxolotl *ax, const struct GNUNET_PeerIdentity *pid, const struct GNUNET_CRYPTO_EcdhePublicKey *ephemeral_key, const struct GNUNET_CRYPTO_EcdhePublicKey *ratchet_key) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.c:1514: warning: The following parameter of update_ax_by_kx(struct CadetTunnelAxolotl *ax, const struct GNUNET_PeerIdentity *pid, const struct GNUNET_CRYPTO_EcdhePublicKey *ephemeral_key, const struct GNUNET_CRYPTO_EcdhePublicKey *ratchet_key) is not documented: - parameter 'ax' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.c:2843: warning: argument 'cls' of command @param is not found in the argument list of GCT_consider_path(struct CadetTunnel *t, struct CadetPeerPath *p, unsigned int off) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.c:2843: warning: argument 'path' of command @param is not found in the argument list of GCT_consider_path(struct CadetTunnel *t, struct CadetPeerPath *p, unsigned int off) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.c:2851: warning: The following parameters of GCT_consider_path(struct CadetTunnel *t, struct CadetPeerPath *p, unsigned int off) are not documented: - parameter 't' - parameter 'p' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.c:3221: warning: argument 'options' of command @param is not found in the argument list of GCT_add_inbound_connection(struct CadetTunnel *t, const struct GNUNET_CADET_ConnectionTunnelIdentifier *cid, struct CadetPeerPath *path) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.c:3454: warning: argument 'The' of command @param is not found in the argument list of GCT_send(struct CadetTunnel *t, const struct GNUNET_MessageHeader *message, GCT_SendContinuation cont, void *cont_cls, struct GNUNET_CADET_ChannelTunnelNumber *ctn) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.c:3464: warning: The following parameter of GCT_send(struct CadetTunnel *t, const struct GNUNET_MessageHeader *message, GCT_SendContinuation cont, void *cont_cls, struct GNUNET_CADET_ChannelTunnelNumber *ctn) is not documented: - parameter 'ctn' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.c:3221: warning: argument 'options' of command @param is not found in the argument list of GCT_add_inbound_connection(struct CadetTunnel *t, const struct GNUNET_CADET_ConnectionTunnelIdentifier *cid, struct CadetPeerPath *path) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.h:133: warning: argument 't' from the argument list of GCT_add_inbound_connection has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.h:133: warning: argument 'cid' from the argument list of GCT_add_inbound_connection has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.h:133: warning: argument 'path' from the argument list of GCT_add_inbound_connection has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.h:160: warning: argument 'cls' of command @param is not found in the argument list of GCT_consider_path(struct CadetTunnel *t, struct CadetPeerPath *p, unsigned int off) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.h:160: warning: argument 'path' of command @param is not found in the argument list of GCT_consider_path(struct CadetTunnel *t, struct CadetPeerPath *p, unsigned int off) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.h:168: warning: The following parameters of GCT_consider_path(struct CadetTunnel *t, struct CadetPeerPath *p, unsigned int off) are not documented: - parameter 't' - parameter 'p' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.h:168: warning: argument 't' from the argument list of GCT_add_channel has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.h:168: warning: argument 'ch' from the argument list of GCT_add_channel has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.c:3454: warning: argument 'The' of command @param is not found in the argument list of GCT_send(struct CadetTunnel *t, const struct GNUNET_MessageHeader *message, GCT_SendContinuation cont, void *cont_cls, struct GNUNET_CADET_ChannelTunnelNumber *ctn) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.h:234: warning: argument 't' from the argument list of GCT_send has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.h:234: warning: argument 'message' from the argument list of GCT_send has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.h:234: warning: argument 'cont' from the argument list of GCT_send has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.h:234: warning: argument 'cont_cls' from the argument list of GCT_send has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.h:234: warning: The following parameter of GCT_send(struct CadetTunnel *t, const struct GNUNET_MessageHeader *message, GCT_SendContinuation cont, void *cont_cls, struct GNUNET_CADET_ChannelTunnelNumber *ctn) is not documented: - parameter 'ctn' -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.c:3543: warning: argument 'q' of command @param is not found in the argument list of GCT_send_cancel(struct CadetTunnelQueueEntry *tq) -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.h:261: warning: argument 't' from the argument list of GCT_count_channels has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.h:271: warning: argument 't' from the argument list of GCT_count_any_connections has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.h:350: warning: argument 'ct' from the argument list of GCT_handle_kx has multiple @param documentation sections -/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.h:350: warning: argument 'msg' from the argument list of GCT_handle_kx has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:152: warning: argument 'deadline' of command @param is not found in the argument list of GNUNET_CONSENSUS_conclude(struct GNUNET_CONSENSUS_Handle *consensus, GNUNET_CONSENSUS_ConcludeCallback conclude, void *conclude_cls) -/home/william/Git/gnunet/src/consensus/plugin_block_consensus.c:53: warning: argument 'ctx' of command @param is not found in the argument list of block_plugin_consensus_check_query(void *cls, enum GNUNET_BLOCK_Type type, const struct GNUNET_HashCode *query, const void *xquery, size_t xquery_size) -/home/william/Git/gnunet/src/conversation/conversation_api.c:301: warning: argument 'msg' of command @param is not found in the argument list of handle_phone_hangup(void *cls, const struct ClientPhoneHangupMessage *hang) -/home/william/Git/gnunet/src/conversation/conversation_api.c:306: warning: The following parameter of handle_phone_hangup(void *cls, const struct ClientPhoneHangupMessage *hang) is not documented: - parameter 'hang' -/home/william/Git/gnunet/src/conversation/conversation_api_call.c:333: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_CONVERSATION_CS_HANG_UP' could not be resolved -/home/william/Git/gnunet/src/conversation/conversation_api_call.c:376: warning: argument 'msg' of command @param is not found in the argument list of check_call_audio(void *cls, const struct ClientAudioMessage *am) -/home/william/Git/gnunet/src/conversation/conversation_api_call.c:382: warning: The following parameter of check_call_audio(void *cls, const struct ClientAudioMessage *am) is not documented: - parameter 'am' -/home/william/Git/gnunet/src/conversation/conversation_api_call.c:392: warning: argument 'msg' of command @param is not found in the argument list of handle_call_audio(void *cls, const struct ClientAudioMessage *am) -/home/william/Git/gnunet/src/conversation/conversation_api_call.c:399: warning: The following parameter of handle_call_audio(void *cls, const struct ClientAudioMessage *am) is not documented: - parameter 'am' -/home/william/Git/gnunet/src/conversation/gnunet-helper-audio-playback-gst.c:235: warning: The following parameter of stdin_receiver(void *cls, const struct GNUNET_MessageHeader *msg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/conversation/gnunet-helper-audio-playback.c:584: warning: The following parameter of stdin_receiver(void *cls, const struct GNUNET_MessageHeader *msg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/conversation/gnunet_gst.c:702: warning: The following parameter of stdin_receiver(void *cls, const struct GNUNET_MessageHeader *msg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/core/core_api.c:159: warning: argument 'tc' of command @param is not found in the argument list of reconnect_task(void *cls) -/home/william/Git/gnunet/src/core/gnunet-service-core_kx.c:491: warning: Illegal command @return as part of a \a command -/home/william/Git/gnunet/src/core/gnunet-service-core_kx.c:707: warning: The following parameter of handle_transport_notify_connect(void *cls, const struct GNUNET_PeerIdentity *pid, struct GNUNET_MQ_Handle *mq) is not documented: - parameter 'mq' -/home/william/Git/gnunet/src/core/gnunet-service-core_kx.c:1207: warning: argument 'kx' of command @param is not found in the argument list of handle_pong(void *cls, const struct PongMessage *m) -/home/william/Git/gnunet/src/core/gnunet-service-core_kx.c:1214: warning: The following parameter of handle_pong(void *cls, const struct PongMessage *m) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/core/gnunet-service-core_kx.c:1900: warning: argument 'target' of command @param is not found in the argument list of GSC_NEIGHBOURS_check_excess_bandwidth(const struct GSC_KeyExchangeInfo *kxinfo) -/home/william/Git/gnunet/src/core/gnunet-service-core_kx.c:1905: warning: The following parameter of GSC_NEIGHBOURS_check_excess_bandwidth(const struct GSC_KeyExchangeInfo *kxinfo) is not documented: - parameter 'kxinfo' -/home/william/Git/gnunet/src/core/gnunet-service-core_kx.h:47: warning: argument 'kx' from the argument list of GSC_KX_encrypt_and_transmit has multiple @param documentation sections -/home/william/Git/gnunet/src/core/gnunet-service-core_kx.h:47: warning: argument 'payload' from the argument list of GSC_KX_encrypt_and_transmit has multiple @param documentation sections -/home/william/Git/gnunet/src/core/gnunet-service-core_kx.h:47: warning: argument 'payload_size' from the argument list of GSC_KX_encrypt_and_transmit has multiple @param documentation sections -/home/william/Git/gnunet/src/core/gnunet-service-core_kx.h:71: warning: argument 'target' of command @param is not found in the argument list of GSC_NEIGHBOURS_check_excess_bandwidth(const struct GSC_KeyExchangeInfo *kxinfo) -/home/william/Git/gnunet/src/core/gnunet-service-core_kx.h:76: warning: The following parameter of GSC_NEIGHBOURS_check_excess_bandwidth(const struct GSC_KeyExchangeInfo *kxinfo) is not documented: - parameter 'kxinfo' -/home/william/Git/gnunet/src/core/gnunet-service-core_kx.c:1887: warning: argument 'target' of command @param is not found in the argument list of GSC_NEIGHBOURS_get_queue_length(const struct GSC_KeyExchangeInfo *kxinfo) -/home/william/Git/gnunet/src/core/gnunet-service-core_sessions.c:610: warning: argument 'session' from the argument list of try_transmission has multiple @param documentation sections -/home/william/Git/gnunet/src/core/gnunet-service-core_sessions.c:477: warning: explicit link request to 'GSC_SESSIONS_dequeue()' could not be resolved -/home/william/Git/gnunet/src/core/gnunet-service-core_sessions.c:478: warning: explicit link request to 'GSC_CLIENTS_failed()' could not be resolved -/home/william/Git/gnunet/src/core/gnunet-service-core_sessions.c:483: warning: explicit link request to 'GSC_SESSIONS_dequeue()' could not be resolved -/home/william/Git/gnunet/src/core/gnunet-service-core_sessions.c:484: warning: explicit link request to 'GSC_CLIENTS_failed()' could not be resolved -/home/william/Git/gnunet/src/core/gnunet-service-core_sessions.h:98: warning: argument 'car' from the argument list of GSC_SESSIONS_queue_request has multiple @param documentation sections -/home/william/Git/gnunet/src/core/gnunet-service-core_sessions.h:120: warning: argument 'car' from the argument list of GSC_SESSIONS_transmit has multiple @param documentation sections -/home/william/Git/gnunet/src/core/gnunet-service-core_sessions.h:120: warning: argument 'msg' from the argument list of GSC_SESSIONS_transmit has multiple @param documentation sections -/home/william/Git/gnunet/src/core/gnunet-service-core_sessions.h:120: warning: argument 'priority' from the argument list of GSC_SESSIONS_transmit has multiple @param documentation sections -/home/william/Git/gnunet/src/core/gnunet-service-core_sessions.h:152: warning: argument 'peer' from the argument list of GSC_SESSIONS_set_typemap has multiple @param documentation sections -/home/william/Git/gnunet/src/core/gnunet-service-core_sessions.h:152: warning: argument 'msg' from the argument list of GSC_SESSIONS_set_typemap has multiple @param documentation sections -/home/william/Git/gnunet/src/core/gnunet-service-core_typemap.h:91: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_CORE_COMRESSED_TYPE_MAP' could not be resolved -/home/william/Git/gnunet/src/core/gnunet-service-core_typemap.h:56: warning: argument 'types' from the argument list of GSC_TYPEMAP_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/core/gnunet-service-core_typemap.h:56: warning: argument 'tlen' from the argument list of GSC_TYPEMAP_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/core/gnunet-service-core_typemap.h:91: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_CORE_COMRESSED_TYPE_MAP' could not be resolved -/home/william/Git/gnunet/src/core/gnunet-service-core_typemap.h:94: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_CORE_COMRESSED_TYPE_MAP' could not be resolved -/home/william/Git/gnunet/src/core/gnunet-service-core_typemap.h:99: warning: argument 'msg' from the argument list of GSC_TYPEMAP_get_from_message has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_curl_lib.h:323: warning: argument 'max_reply_size' of command @param is not found in the argument list of GNUNET_CURL_job_add_raw(struct GNUNET_CURL_Context *ctx, CURL *eh, const struct curl_slist *job_headers, GNUNET_CURL_RawJobCompletionCallback jcc, void *jcc_cls) -/home/william/Git/gnunet/src/include/gnunet_curl_lib.h:334: warning: Found unknown command '\eh' -/home/william/Git/gnunet/src/include/gnunet_curl_lib.h:311: warning: Found unknown command '\eh' -/home/william/Git/gnunet/src/include/gnunet_curl_lib.h:253: warning: Found unknown command '\eh' -/home/william/Git/gnunet/src/include/gnunet_curl_lib.h:231: warning: Found unknown command '\eh' -/home/william/Git/gnunet/src/curl/curl_reschedule.c:69: warning: The following parameters of GNUNET_CURL_gnunet_rc_create_with_parser(struct GNUNET_CURL_Context *ctx, GNUNET_CURL_RawParser rp, GNUNET_CURL_ResponseCleaner rc) are not documented: - parameter 'rp' - parameter 'rc' -/home/william/Git/gnunet/src/include/gnunet_datacache_lib.h:109: warning: argument 'how' of command @param is not found in the argument list of GNUNET_DATACACHE_put(struct GNUNET_DATACACHE_Handle *h, const struct GNUNET_HashCode *key, uint32_t xor_distance, size_t data_size, const char *data, enum GNUNET_BLOCK_Type type, struct GNUNET_TIME_Absolute discard_time, unsigned int path_info_len, const struct GNUNET_DHT_PathElement *path_info) -/home/william/Git/gnunet/src/datacache/datacache.c:235: warning: The following parameter of GNUNET_DATACACHE_put(struct GNUNET_DATACACHE_Handle *h, const struct GNUNET_HashCode *key, uint32_t xor_distance, size_t data_size, const char *data, enum GNUNET_BLOCK_Type type, struct GNUNET_TIME_Absolute discard_time, unsigned int path_info_len, const struct GNUNET_DHT_PathElement *path_info) is not documented: - parameter 'xor_distance' -/home/william/Git/gnunet/src/datacache/plugin_datacache_postgres.c:219: warning: argument 'num_result' of command @param is not found in the argument list of handle_results(void *cls, PGresult *result, unsigned int num_results) -/home/william/Git/gnunet/src/datacache/plugin_datacache_postgres.c:229: warning: The following parameter of handle_results(void *cls, PGresult *result, unsigned int num_results) is not documented: - parameter 'num_results' -/home/william/Git/gnunet/src/datacache/plugin_datacache_postgres.c:436: warning: argument 'num_result' of command @param is not found in the argument list of extract_result_cb(void *cls, PGresult *result, unsigned int num_results) -/home/william/Git/gnunet/src/datacache/plugin_datacache_postgres.c:446: warning: The following parameter of extract_result_cb(void *cls, PGresult *result, unsigned int num_results) is not documented: - parameter 'num_results' -/home/william/Git/gnunet/src/datacache/plugin_datacache_sqlite.c:149: warning: argument 'zsql' of command @param is not found in the argument list of sq_prepare(sqlite3 *dbh, const char *zSql, sqlite3_stmt **ppStmt) -/home/william/Git/gnunet/src/datacache/plugin_datacache_sqlite.c:158: warning: The following parameter of sq_prepare(sqlite3 *dbh, const char *zSql, sqlite3_stmt **ppStmt) is not documented: - parameter 'zSql' -/home/william/Git/gnunet/src/datastore/datastore_api.c:280: warning: argument 'qe' of command @param is not found in the argument list of delay_warning(void *cls) -/home/william/Git/gnunet/src/datastore/datastore_api.c:284: warning: The following parameter of delay_warning(void *cls) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/datastore/datastore_api.c:1122: warning: argument 'queue_priority' from the argument list of GNUNET_DATASTORE_release_reserve has multiple @param documentation sections -/home/william/Git/gnunet/src/datastore/datastore_api.c:1122: warning: argument 'max_queue_size' from the argument list of GNUNET_DATASTORE_release_reserve has multiple @param documentation sections -/home/william/Git/gnunet/src/datastore/gnunet-service-datastore.c:561: warning: argument 'message' of command @param is not found in the argument list of handle_reserve(void *cls, const struct ReserveMessage *msg) -/home/william/Git/gnunet/src/datastore/gnunet-service-datastore.c:566: warning: The following parameter of handle_reserve(void *cls, const struct ReserveMessage *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/datastore/gnunet-service-datastore.c:645: warning: argument 'message' of command @param is not found in the argument list of handle_release_reserve(void *cls, const struct ReleaseReserveMessage *msg) -/home/william/Git/gnunet/src/datastore/gnunet-service-datastore.c:650: warning: The following parameter of handle_release_reserve(void *cls, const struct ReleaseReserveMessage *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/datastore/gnunet-service-datastore.c:727: warning: explicit link request to 'GNUNET_SYSERROR' could not be resolved -/home/william/Git/gnunet/src/datastore/gnunet-service-datastore.c:769: warning: argument 'message' of command @param is not found in the argument list of check_put(void *cls, const struct DataMessage *dm) -/home/william/Git/gnunet/src/datastore/gnunet-service-datastore.c:775: warning: The following parameter of check_put(void *cls, const struct DataMessage *dm) is not documented: - parameter 'dm' -/home/william/Git/gnunet/src/datastore/gnunet-service-datastore.c:788: warning: argument 'message' of command @param is not found in the argument list of handle_put(void *cls, const struct DataMessage *dm) -/home/william/Git/gnunet/src/datastore/gnunet-service-datastore.c:793: warning: The following parameter of handle_put(void *cls, const struct DataMessage *dm) is not documented: - parameter 'dm' -/home/william/Git/gnunet/src/datastore/gnunet-service-datastore.c:950: warning: argument 'message' of command @param is not found in the argument list of handle_get_zero_anonymity(void *cls, const struct GetZeroAnonymityMessage *msg) -/home/william/Git/gnunet/src/datastore/gnunet-service-datastore.c:955: warning: The following parameter of handle_get_zero_anonymity(void *cls, const struct GetZeroAnonymityMessage *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/datastore/gnunet-service-datastore.c:989: warning: explicit link request to 'GNUNET_SYSERROR' could not be resolved -/home/william/Git/gnunet/src/datastore/gnunet-service-datastore.c:1029: warning: argument 'message' of command @param is not found in the argument list of check_remove(void *cls, const struct DataMessage *dm) -/home/william/Git/gnunet/src/datastore/gnunet-service-datastore.c:1035: warning: The following parameter of check_remove(void *cls, const struct DataMessage *dm) is not documented: - parameter 'dm' -/home/william/Git/gnunet/src/datastore/gnunet-service-datastore.c:1048: warning: argument 'client' of command @param is not found in the argument list of handle_remove(void *cls, const struct DataMessage *dm) -/home/william/Git/gnunet/src/datastore/gnunet-service-datastore.c:1048: warning: argument 'message' of command @param is not found in the argument list of handle_remove(void *cls, const struct DataMessage *dm) -/home/william/Git/gnunet/src/datastore/gnunet-service-datastore.c:1054: warning: The following parameter of handle_remove(void *cls, const struct DataMessage *dm) is not documented: - parameter 'dm' -/home/william/Git/gnunet/src/datastore/plugin_datastore_heap.c:184: warning: The following parameter of heap_plugin_estimate_size(void *cls, unsigned long long *estimate) is not documented: - parameter 'estimate' -/home/william/Git/gnunet/src/datastore/plugin_datastore_mysql.c:278: warning: The following parameter of mysql_plugin_estimate_size(void *cls, unsigned long long *estimate) is not documented: - parameter 'estimate' -/home/william/Git/gnunet/src/datastore/plugin_datastore_postgres.c:198: warning: The following parameter of postgres_plugin_estimate_size(void *cls, unsigned long long *estimate) is not documented: - parameter 'estimate' -/home/william/Git/gnunet/src/datastore/plugin_datastore_postgres.c:770: warning: argument 'num_result' of command @param is not found in the argument list of process_keys(void *cls, PGresult *result, unsigned int num_results) -/home/william/Git/gnunet/src/datastore/plugin_datastore_postgres.c:777: warning: The following parameter of process_keys(void *cls, PGresult *result, unsigned int num_results) is not documented: - parameter 'num_results' -/home/william/Git/gnunet/src/datastore/plugin_datastore_sqlite.c:1233: warning: The following parameter of sqlite_plugin_estimate_size(void *cls, unsigned long long *estimate) is not documented: - parameter 'estimate' -/home/william/Git/gnunet/src/datastore/plugin_datastore_template.c:51: warning: The following parameter of template_plugin_estimate_size(void *cls, unsigned long long *estimate) is not documented: - parameter 'estimate' -/home/william/Git/gnunet/src/include/gnunet_dht_service.h:297: warning: explicit link request to 'GNUNET_BLOCK_evaluate' could not be resolved -/home/william/Git/gnunet/src/dht/gnunet-dht-put.c:59: warning: explicit link request to 'GNUNET_DHT_DEMULTIPLEX_EVERYWHERE' could not be resolved -/home/william/Git/gnunet/src/dht/gnunet-service-dht.h:171: warning: argument 'options' from the argument list of GDS_CLIENTS_process_get has multiple @param documentation sections -/home/william/Git/gnunet/src/dht/gnunet-service-dht.h:171: warning: argument 'type' from the argument list of GDS_CLIENTS_process_get has multiple @param documentation sections -/home/william/Git/gnunet/src/dht/gnunet-service-dht.h:171: warning: argument 'hop_count' from the argument list of GDS_CLIENTS_process_get has multiple @param documentation sections -/home/william/Git/gnunet/src/dht/gnunet-service-dht.h:171: warning: argument 'desired_replication_level' from the argument list of GDS_CLIENTS_process_get has multiple @param documentation sections -/home/william/Git/gnunet/src/dht/gnunet-service-dht.h:171: warning: argument 'path_length' from the argument list of GDS_CLIENTS_process_get has multiple @param documentation sections -/home/william/Git/gnunet/src/dht/gnunet-service-dht.h:171: warning: argument 'path' from the argument list of GDS_CLIENTS_process_get has multiple @param documentation sections -/home/william/Git/gnunet/src/dht/gnunet-service-dht.h:171: warning: argument 'key' from the argument list of GDS_CLIENTS_process_get has multiple @param documentation sections -/home/william/Git/gnunet/src/dht/gnunet-service-dht_clients.c:591: warning: argument 'message' of command @param is not found in the argument list of check_dht_local_get(void *cls, const struct GNUNET_DHT_ClientGetMessage *get) -/home/william/Git/gnunet/src/dht/gnunet-service-dht_clients.c:577: warning: The following parameter of check_dht_local_get(void *cls, const struct GNUNET_DHT_ClientGetMessage *get) is not documented: - parameter 'get' -/home/william/Git/gnunet/src/dht/gnunet-service-dht_clients.c:609: warning: argument 'message' of command @param is not found in the argument list of handle_dht_local_get(void *cls, const struct GNUNET_DHT_ClientGetMessage *get) -/home/william/Git/gnunet/src/dht/gnunet-service-dht_clients.c:614: warning: The following parameter of handle_dht_local_get(void *cls, const struct GNUNET_DHT_ClientGetMessage *get) is not documented: - parameter 'get' -/home/william/Git/gnunet/src/dht/gnunet-service-dht_clients.c:729: warning: argument 'message' of command @param is not found in the argument list of check_dht_local_get_result_seen(void *cls, const struct GNUNET_DHT_ClientGetResultSeenMessage *seen) -/home/william/Git/gnunet/src/dht/gnunet-service-dht_clients.c:614: warning: The following parameter of check_dht_local_get_result_seen(void *cls, const struct GNUNET_DHT_ClientGetResultSeenMessage *seen) is not documented: - parameter 'seen' -/home/william/Git/gnunet/src/dht/gnunet-service-dht_clients.c:755: warning: argument 'message' of command @param is not found in the argument list of handle_dht_local_get_result_seen(void *cls, const struct GNUNET_DHT_ClientGetResultSeenMessage *seen) -/home/william/Git/gnunet/src/dht/gnunet-service-dht_clients.c:760: warning: The following parameter of handle_dht_local_get_result_seen(void *cls, const struct GNUNET_DHT_ClientGetResultSeenMessage *seen) is not documented: - parameter 'seen' -/home/william/Git/gnunet/src/dht/gnunet-service-dht_clients.c:841: warning: argument 'message' of command @param is not found in the argument list of handle_dht_local_get_stop(void *cls, const struct GNUNET_DHT_ClientGetStopMessage *dht_stop_msg) -/home/william/Git/gnunet/src/dht/gnunet-service-dht_clients.c:850: warning: The following parameter of handle_dht_local_get_stop(void *cls, const struct GNUNET_DHT_ClientGetStopMessage *dht_stop_msg) is not documented: - parameter 'dht_stop_msg' -/home/william/Git/gnunet/src/dht/gnunet-service-dht_clients.c:1570: warning: argument 'server' of command @param is not found in the argument list of GDS_CLIENTS_init(void) -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.c:520: warning: argument 'key' of command @param is not found in the argument list of sign_path(const void *data, size_t data_size, struct GNUNET_TIME_Absolute exp_time, const struct GNUNET_PeerIdentity *pred, const struct GNUNET_PeerIdentity *succ, struct GNUNET_CRYPTO_EddsaSignature *sig) -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.c:529: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_DHT_PUT_HOP' could not be resolved -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.h:153: warning: Found unknown command '\para' -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.c:734: warning: The following parameter of GDS_u_connect(void *cls, struct GNUNET_DHTU_Target *target, const struct GNUNET_PeerIdentity *pid, void **ctx) is not documented: - parameter 'pid' -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.h:100: warning: argument 'type' of command @param is not found in the argument list of GDS_NEIGHBOURS_handle_reply(struct PeerInfo *pi, const struct GDS_DATACACHE_BlockData *bd, const struct GNUNET_HashCode *query_hash, unsigned int get_path_length, const struct GNUNET_DHT_PathElement *get_path) -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.c:1724: warning: argument 'message' of command @param is not found in the argument list of check_dht_p2p_put(void *cls, const struct PeerPutMessage *put) -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.c:1579: warning: The following parameter of check_dht_p2p_put(void *cls, const struct PeerPutMessage *put) is not documented: - parameter 'put' -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.c:1752: warning: argument 'message' of command @param is not found in the argument list of handle_dht_p2p_put(void *cls, const struct PeerPutMessage *put) -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.c:1757: warning: The following parameter of handle_dht_p2p_put(void *cls, const struct PeerPutMessage *put) is not documented: - parameter 'put' -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.c:1927: warning: argument 'key' of command @param is not found in the argument list of handle_find_my_hello(struct PeerInfo *pi, const struct GNUNET_HashCode *query_hash, struct GNUNET_BLOCK_Group *bg) -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.c:1936: warning: The following parameter of handle_find_my_hello(struct PeerInfo *pi, const struct GNUNET_HashCode *query_hash, struct GNUNET_BLOCK_Group *bg) is not documented: - parameter 'query_hash' -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.c:1998: warning: argument 'key' of command @param is not found in the argument list of handle_find_local_hello(struct PeerInfo *pi, const struct GNUNET_HashCode *query_hash, struct GNUNET_BLOCK_Group *bg) -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.c:2007: warning: The following parameter of handle_find_local_hello(struct PeerInfo *pi, const struct GNUNET_HashCode *query_hash, struct GNUNET_BLOCK_Group *bg) is not documented: - parameter 'query_hash' -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.c:2303: warning: argument 'message' of command @param is not found in the argument list of check_dht_p2p_result(void *cls, const struct PeerResultMessage *prm) -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.c:2257: warning: The following parameter of check_dht_p2p_result(void *cls, const struct PeerResultMessage *prm) is not documented: - parameter 'prm' -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.c:2335: warning: argument 'message' of command @param is not found in the argument list of handle_dht_p2p_result(void *cls, const struct PeerResultMessage *prm) -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.c:2340: warning: The following parameter of handle_dht_p2p_result(void *cls, const struct PeerResultMessage *prm) is not documented: - parameter 'prm' -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.c:2493: warning: argument 'message' of command @param is not found in the argument list of handle_dht_p2p_hello(void *cls, const struct GNUNET_MessageHeader *hello) -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.c:2498: warning: The following parameter of handle_dht_p2p_hello(void *cls, const struct GNUNET_MessageHeader *hello) is not documented: - parameter 'hello' -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.h:178: warning: argument 'origin' of command @param is not found in the argument list of GDS_u_receive(void *cls, void **tctx, void **sctx, const void *message, size_t message_size) -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.h:100: warning: argument 'type' of command @param is not found in the argument list of GDS_NEIGHBOURS_handle_reply(struct PeerInfo *pi, const struct GDS_DATACACHE_BlockData *bd, const struct GNUNET_HashCode *query_hash, unsigned int get_path_length, const struct GNUNET_DHT_PathElement *get_path) -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.h:153: warning: Found unknown command '\para' -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.h:160: warning: The following parameter of GDS_u_connect(void *cls, struct GNUNET_DHTU_Target *target, const struct GNUNET_PeerIdentity *pid, void **ctx) is not documented: - parameter 'pid' -/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.h:178: warning: argument 'origin' of command @param is not found in the argument list of GDS_u_receive(void *cls, void **tctx, void **sctx, const void *message, size_t message_size) -/home/william/Git/gnunet/src/dht/gnunet-service-dht_routing.c:336: warning: argument 'reply_bf' of command @param is not found in the argument list of GDS_ROUTING_add(const struct GNUNET_PeerIdentity *sender, enum GNUNET_BLOCK_Type type, struct GNUNET_BLOCK_Group *bg, enum GNUNET_DHT_RouteOption options, const struct GNUNET_HashCode *key, const void *xquery, size_t xquery_size) -/home/william/Git/gnunet/src/dht/gnunet-service-dht_routing.c:336: warning: argument 'reply_bf_mutator' of command @param is not found in the argument list of GDS_ROUTING_add(const struct GNUNET_PeerIdentity *sender, enum GNUNET_BLOCK_Type type, struct GNUNET_BLOCK_Group *bg, enum GNUNET_DHT_RouteOption options, const struct GNUNET_HashCode *key, const void *xquery, size_t xquery_size) -/home/william/Git/gnunet/src/dht/gnunet-service-dht_routing.c:336: warning: argument 'reply_bf' of command @param is not found in the argument list of GDS_ROUTING_add(const struct GNUNET_PeerIdentity *sender, enum GNUNET_BLOCK_Type type, struct GNUNET_BLOCK_Group *bg, enum GNUNET_DHT_RouteOption options, const struct GNUNET_HashCode *key, const void *xquery, size_t xquery_size) -/home/william/Git/gnunet/src/dht/gnunet-service-dht_routing.c:336: warning: argument 'reply_bf_mutator' of command @param is not found in the argument list of GDS_ROUTING_add(const struct GNUNET_PeerIdentity *sender, enum GNUNET_BLOCK_Type type, struct GNUNET_BLOCK_Group *bg, enum GNUNET_DHT_RouteOption options, const struct GNUNET_HashCode *key, const void *xquery, size_t xquery_size) -/home/william/Git/gnunet/src/dht/gnunet-service-dht_routing.h:65: warning: argument 'sender' from the argument list of GDS_ROUTING_add has multiple @param documentation sections -/home/william/Git/gnunet/src/dht/gnunet-service-dht_routing.h:65: warning: argument 'type' from the argument list of GDS_ROUTING_add has multiple @param documentation sections -/home/william/Git/gnunet/src/dht/gnunet-service-dht_routing.h:65: warning: argument 'bg' from the argument list of GDS_ROUTING_add has multiple @param documentation sections -/home/william/Git/gnunet/src/dht/gnunet-service-dht_routing.h:65: warning: argument 'options' from the argument list of GDS_ROUTING_add has multiple @param documentation sections -/home/william/Git/gnunet/src/dht/gnunet-service-dht_routing.h:65: warning: argument 'key' from the argument list of GDS_ROUTING_add has multiple @param documentation sections -/home/william/Git/gnunet/src/dht/gnunet-service-dht_routing.h:65: warning: argument 'xquery' from the argument list of GDS_ROUTING_add has multiple @param documentation sections -/home/william/Git/gnunet/src/dht/gnunet-service-dht_routing.h:65: warning: argument 'xquery_size' from the argument list of GDS_ROUTING_add has multiple @param documentation sections -/home/william/Git/gnunet/src/dht/plugin_block_dht.c:46: warning: argument 'ctx' of command @param is not found in the argument list of block_plugin_dht_create_group(void *cls, enum GNUNET_BLOCK_Type type, uint32_t nonce, const void *raw_data, size_t raw_data_size, va_list va) -/home/william/Git/gnunet/src/dht/plugin_block_dht.c:57: warning: The following parameter of block_plugin_dht_create_group(void *cls, enum GNUNET_BLOCK_Type type, uint32_t nonce, const void *raw_data, size_t raw_data_size, va_list va) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/dhtu/plugin_dhtu_gnunet.c:299: warning: argument 'cls' of command @param is not found in the argument list of gnunet_drop(struct GNUNET_DHTU_PreferenceHandle *ph) -/home/william/Git/gnunet/src/dhtu/plugin_dhtu_gnunet.c:299: warning: argument 'target' of command @param is not found in the argument list of gnunet_drop(struct GNUNET_DHTU_PreferenceHandle *ph) -/home/william/Git/gnunet/src/dhtu/plugin_dhtu_gnunet.c:304: warning: The following parameter of gnunet_drop(struct GNUNET_DHTU_PreferenceHandle *ph) is not documented: - parameter 'ph' -/home/william/Git/gnunet/src/dhtu/plugin_dhtu_gnunet.c:375: warning: The following parameter of core_connect_cb(void *cls, const struct GNUNET_PeerIdentity *peer, struct GNUNET_MQ_Handle *mq) is not documented: - parameter 'mq' -/home/william/Git/gnunet/src/dhtu/plugin_dhtu_gnunet.c:417: warning: argument 'error' of command @param is not found in the argument list of peerinfo_cb(void *cls, const struct GNUNET_PeerIdentity *peer, const struct GNUNET_HELLO_Message *hello, const char *err_msg) -/home/william/Git/gnunet/src/dhtu/plugin_dhtu_gnunet.c:430: warning: The following parameter of peerinfo_cb(void *cls, const struct GNUNET_PeerIdentity *peer, const struct GNUNET_HELLO_Message *hello, const char *err_msg) is not documented: - parameter 'err_msg' -/home/william/Git/gnunet/src/dhtu/plugin_dhtu_ip.c:300: warning: argument 'src' of command @param is not found in the argument list of find_target(struct Plugin *plugin, const struct GNUNET_PeerIdentity *pid, const void *addr, size_t addrlen) -/home/william/Git/gnunet/src/dhtu/plugin_dhtu_ip.c:442: warning: argument 'cls' of command @param is not found in the argument list of ip_drop(struct GNUNET_DHTU_PreferenceHandle *ph) -/home/william/Git/gnunet/src/dhtu/plugin_dhtu_ip.c:442: warning: argument 'target' of command @param is not found in the argument list of ip_drop(struct GNUNET_DHTU_PreferenceHandle *ph) -/home/william/Git/gnunet/src/dhtu/plugin_dhtu_ip.c:447: warning: The following parameter of ip_drop(struct GNUNET_DHTU_PreferenceHandle *ph) is not documented: - parameter 'ph' -/home/william/Git/gnunet/src/dns/dns_api.c:198: warning: argument 'tc' of command @param is not found in the argument list of reconnect(void *cls) -/home/william/Git/gnunet/src/dns/dns_api.c:202: warning: argument 'cls' from the argument list of reconnect has multiple @param documentation sections -/home/william/Git/gnunet/src/dns/dns_api.c:171: warning: argument 'msg' of command @param is not found in the argument list of handle_request(void *cls, const struct GNUNET_DNS_Request *req) -/home/william/Git/gnunet/src/dns/dns_api.c:177: warning: The following parameter of handle_request(void *cls, const struct GNUNET_DNS_Request *req) is not documented: - parameter 'req' -/home/william/Git/gnunet/src/dns/gnunet-zonewalk.c:557: warning: argument '1' of command @param is not found in the argument list of main(int argc, char **argv) -/home/william/Git/gnunet/src/dns/plugin_block_dns.c:46: warning: argument 'ctx' of command @param is not found in the argument list of block_plugin_dns_create_group(void *cls, enum GNUNET_BLOCK_Type type, uint32_t nonce, const void *raw_data, size_t raw_data_size, va_list va) -/home/william/Git/gnunet/src/dns/plugin_block_dns.c:57: warning: The following parameter of block_plugin_dns_create_group(void *cls, enum GNUNET_BLOCK_Type type, uint32_t nonce, const void *raw_data, size_t raw_data_size, va_list va) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/dns/plugin_block_dns.c:94: warning: argument 'ctx' of command @param is not found in the argument list of block_plugin_dns_check_query(void *cls, enum GNUNET_BLOCK_Type type, const struct GNUNET_HashCode *query, const void *xquery, size_t xquery_size) -/home/william/Git/gnunet/src/exit/gnunet-daemon-exit.c:1821: warning: argument 'message' of command @param is not found in the argument list of check_tcp_data(void *cls, const struct GNUNET_EXIT_TcpDataMessage *data) -/home/william/Git/gnunet/src/exit/gnunet-daemon-exit.c:1829: warning: The following parameter of check_tcp_data(void *cls, const struct GNUNET_EXIT_TcpDataMessage *data) is not documented: - parameter 'data' -/home/william/Git/gnunet/src/exit/gnunet-daemon-exit.c:1861: warning: argument 'message' of command @param is not found in the argument list of handle_tcp_data(void *cls, const struct GNUNET_EXIT_TcpDataMessage *data) -/home/william/Git/gnunet/src/exit/gnunet-daemon-exit.c:1867: warning: The following parameter of handle_tcp_data(void *cls, const struct GNUNET_EXIT_TcpDataMessage *data) is not documented: - parameter 'data' -/home/william/Git/gnunet/src/exit/gnunet-daemon-exit.c:3227: warning: argument 'tc' of command @param is not found in the argument list of dummy_task(void *cls) -/home/william/Git/gnunet/src/exit/gnunet-daemon-exit.c:3513: warning: explicit link request to 'udp_services' could not be resolved -/home/william/Git/gnunet/src/exit/gnunet-daemon-exit.c:3513: warning: explicit link request to 'tcp_services' could not be resolved -/home/william/Git/gnunet/src/fs/fs_api.h:628: warning: argument 'h' from the argument list of GNUNET_FS_queue_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_api.h:628: warning: argument 'start' from the argument list of GNUNET_FS_queue_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_api.h:628: warning: argument 'stop' from the argument list of GNUNET_FS_queue_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_api.h:628: warning: argument 'cls' from the argument list of GNUNET_FS_queue_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_api.h:628: warning: argument 'blocks' from the argument list of GNUNET_FS_queue_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_api.h:628: warning: argument 'priority' from the argument list of GNUNET_FS_queue_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_api.h:662: warning: argument 'cls' from the argument list of GNUNET_FS_data_reader_file_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_api.h:662: warning: argument 'offset' from the argument list of GNUNET_FS_data_reader_file_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_api.h:662: warning: argument 'max' from the argument list of GNUNET_FS_data_reader_file_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_api.h:662: warning: argument 'buf' from the argument list of GNUNET_FS_data_reader_file_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_api.h:662: warning: argument 'emsg' from the argument list of GNUNET_FS_data_reader_file_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_api.h:676: warning: argument 'filename' from the argument list of GNUNET_FS_make_file_reader_context_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_api.h:696: warning: argument 'cls' from the argument list of GNUNET_FS_data_reader_copy_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_api.h:696: warning: argument 'offset' from the argument list of GNUNET_FS_data_reader_copy_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_api.h:696: warning: argument 'max' from the argument list of GNUNET_FS_data_reader_copy_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_api.h:696: warning: argument 'buf' from the argument list of GNUNET_FS_data_reader_copy_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_api.h:696: warning: argument 'emsg' from the argument list of GNUNET_FS_data_reader_copy_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_api.h:729: warning: argument 'cls' from the argument list of GNUNET_FS_publish_main_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_api.h:750: warning: argument 'uc' from the argument list of GNUNET_FS_unindex_do_extract_keywords_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_api.h:845: warning: argument 'sc' from the argument list of GNUNET_FS_search_start_searching_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_api.h:900: warning: argument 'fi' from the argument list of GNUNET_FS_file_information_sync_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_api.h:980: warning: argument 'cls' from the argument list of GNUNET_FS_search_signal_suspend_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_api.h:990: warning: argument 'cls' from the argument list of GNUNET_FS_download_signal_suspend_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_download.c:1017: warning: argument 'cls' from the argument list of process_result_with_request has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_download.c:1017: warning: argument 'key' from the argument list of process_result_with_request has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_download.c:1017: warning: argument 'value' from the argument list of process_result_with_request has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_download.c:1294: warning: argument 'msg' of command @param is not found in the argument list of check_put(void *cls, const struct ClientPutMessage *cm) -/home/william/Git/gnunet/src/fs/fs_download.c:1300: warning: The following parameter of check_put(void *cls, const struct ClientPutMessage *cm) is not documented: - parameter 'cm' -/home/william/Git/gnunet/src/fs/fs_download.c:1309: warning: argument 'msg' of command @param is not found in the argument list of handle_put(void *cls, const struct ClientPutMessage *cm) -/home/william/Git/gnunet/src/fs/fs_download.c:1315: warning: The following parameter of handle_put(void *cls, const struct ClientPutMessage *cm) is not documented: - parameter 'cm' -/home/william/Git/gnunet/src/fs/fs_download.c:1430: warning: argument 'mq' of command @param is not found in the argument list of activate_fs_download(void *cls) -/home/william/Git/gnunet/src/fs/fs_getopt.c:246: warning: argument 'metadata' of command @param is not found in the argument list of GNUNET_FS_GETOPT_METADATA(char shortName, const char *name, const char *argumentHelp, const char *description, struct GNUNET_CONTAINER_MetaData **meta) -/home/william/Git/gnunet/src/fs/fs_getopt.c:162: warning: The following parameter of GNUNET_FS_GETOPT_METADATA(char shortName, const char *name, const char *argumentHelp, const char *description, struct GNUNET_CONTAINER_MetaData **meta) is not documented: - parameter 'meta' -/home/william/Git/gnunet/src/fs/fs_publish_ksk.c:149: warning: argument 'cls' from the argument list of publish_ksk_cont has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_publish_ublock.h:47: warning: argument 'input' from the argument list of GNUNET_FS_ublock_decrypt_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_publish_ublock.h:47: warning: argument 'input_len' from the argument list of GNUNET_FS_ublock_decrypt_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_publish_ublock.h:47: warning: argument 'ns' from the argument list of GNUNET_FS_ublock_decrypt_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_publish_ublock.h:47: warning: argument 'label' from the argument list of GNUNET_FS_ublock_decrypt_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_publish_ublock.h:47: warning: argument 'output' from the argument list of GNUNET_FS_ublock_decrypt_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_publish_ublock.h:88: warning: argument 'h' from the argument list of GNUNET_FS_publish_ublock_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_publish_ublock.h:88: warning: argument 'dsh' from the argument list of GNUNET_FS_publish_ublock_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_publish_ublock.h:88: warning: argument 'label' from the argument list of GNUNET_FS_publish_ublock_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_publish_ublock.h:88: warning: argument 'ulabel' from the argument list of GNUNET_FS_publish_ublock_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_publish_ublock.h:88: warning: argument 'ns' from the argument list of GNUNET_FS_publish_ublock_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_publish_ublock.h:88: warning: argument 'meta' from the argument list of GNUNET_FS_publish_ublock_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_publish_ublock.h:88: warning: argument 'uri' from the argument list of GNUNET_FS_publish_ublock_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_publish_ublock.h:88: warning: argument 'bo' from the argument list of GNUNET_FS_publish_ublock_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_publish_ublock.h:88: warning: argument 'options' from the argument list of GNUNET_FS_publish_ublock_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_publish_ublock.h:88: warning: argument 'cont' from the argument list of GNUNET_FS_publish_ublock_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_publish_ublock.h:88: warning: argument 'cont_cls' from the argument list of GNUNET_FS_publish_ublock_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_search.c:1333: warning: argument 'h' from the argument list of search_start has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_search.c:1333: warning: argument 'uri' from the argument list of search_start has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_search.c:1333: warning: argument 'anonymity' from the argument list of search_start has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_search.c:1333: warning: argument 'options' from the argument list of search_start has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_search.c:1333: warning: argument 'cctx' from the argument list of search_start has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_search.c:1333: warning: argument 'psearch' from the argument list of search_start has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_search.c:928: warning: argument 'msg' of command @param is not found in the argument list of check_result(void *cls, const struct ClientPutMessage *cm) -/home/william/Git/gnunet/src/fs/fs_search.c:933: warning: The following parameter of check_result(void *cls, const struct ClientPutMessage *cm) is not documented: - parameter 'cm' -/home/william/Git/gnunet/src/fs/fs_search.c:943: warning: argument 'msg' of command @param is not found in the argument list of handle_result(void *cls, const struct ClientPutMessage *cm) -/home/william/Git/gnunet/src/fs/fs_search.c:948: warning: The following parameter of handle_result(void *cls, const struct ClientPutMessage *cm) is not documented: - parameter 'cm' -/home/william/Git/gnunet/src/fs/fs_test_lib.c:178: warning: argument 'tc' of command @param is not found in the argument list of report_uri(void *cls) -/home/william/Git/gnunet/src/fs/fs_test_lib.h:67: warning: argument 'peer' from the argument list of GNUNET_FS_TEST_publish has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_test_lib.h:67: warning: argument 'timeout' from the argument list of GNUNET_FS_TEST_publish has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_test_lib.h:67: warning: argument 'anonymity' from the argument list of GNUNET_FS_TEST_publish has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_test_lib.h:67: warning: argument 'do_index' from the argument list of GNUNET_FS_TEST_publish has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_test_lib.h:67: warning: argument 'size' from the argument list of GNUNET_FS_TEST_publish has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_test_lib.h:67: warning: argument 'seed' from the argument list of GNUNET_FS_TEST_publish has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_test_lib.h:67: warning: argument 'verbose' from the argument list of GNUNET_FS_TEST_publish has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_test_lib.h:67: warning: argument 'cont' from the argument list of GNUNET_FS_TEST_publish has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_test_lib.h:67: warning: argument 'cont_cls' from the argument list of GNUNET_FS_TEST_publish has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_test_lib.h:92: warning: argument 'peer' from the argument list of GNUNET_FS_TEST_download has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_test_lib.h:92: warning: argument 'timeout' from the argument list of GNUNET_FS_TEST_download has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_test_lib.h:92: warning: argument 'anonymity' from the argument list of GNUNET_FS_TEST_download has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_test_lib.h:92: warning: argument 'seed' from the argument list of GNUNET_FS_TEST_download has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_test_lib.h:92: warning: argument 'uri' from the argument list of GNUNET_FS_TEST_download has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_test_lib.h:92: warning: argument 'verbose' from the argument list of GNUNET_FS_TEST_download has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_test_lib.h:92: warning: argument 'cont' from the argument list of GNUNET_FS_TEST_download has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_test_lib.h:92: warning: argument 'cont_cls' from the argument list of GNUNET_FS_TEST_download has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_tree.h:72: warning: argument 'fsize' from the argument list of GNUNET_FS_tree_calculate_block_size has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_tree.h:72: warning: argument 'offset' from the argument list of GNUNET_FS_tree_calculate_block_size has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_tree.h:72: warning: argument 'depth' from the argument list of GNUNET_FS_tree_calculate_block_size has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_tree.h:141: warning: argument 'h' from the argument list of GNUNET_FS_tree_encoder_create has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_tree.h:141: warning: argument 'size' from the argument list of GNUNET_FS_tree_encoder_create has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_tree.h:141: warning: argument 'cls' from the argument list of GNUNET_FS_tree_encoder_create has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_tree.h:141: warning: argument 'reader' from the argument list of GNUNET_FS_tree_encoder_create has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_tree.h:141: warning: argument 'proc' from the argument list of GNUNET_FS_tree_encoder_create has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_tree.h:141: warning: argument 'progress' from the argument list of GNUNET_FS_tree_encoder_create has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/fs_tree.h:141: warning: argument 'cont' from the argument list of GNUNET_FS_tree_encoder_create has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs.c:381: warning: explicit link request to 'GSF_pending_request_cancel()' could not be resolved -/home/william/Git/gnunet/src/fs/gnunet-service-fs.c:604: warning: argument 'message' of command @param is not found in the argument list of check_p2p_put(void *cls, const struct PutMessage *put) -/home/william/Git/gnunet/src/fs/gnunet-service-fs.c:611: warning: The following parameter of check_p2p_put(void *cls, const struct PutMessage *put) is not documented: - parameter 'put' -/home/william/Git/gnunet/src/fs/gnunet-service-fs.c:1058: warning: argument 'message' of command @param is not found in the argument list of handle_client_index_start(void *cls, const struct IndexStartMessage *ism) -/home/william/Git/gnunet/src/fs/gnunet-service-fs.c:1063: warning: The following parameter of handle_client_index_start(void *cls, const struct IndexStartMessage *ism) is not documented: - parameter 'ism' -/home/william/Git/gnunet/src/fs/gnunet-service-fs.c:1139: warning: argument 'message' of command @param is not found in the argument list of handle_client_unindex(void *cls, const struct UnindexMessage *um) -/home/william/Git/gnunet/src/fs/gnunet-service-fs.c:1144: warning: The following parameter of handle_client_unindex(void *cls, const struct UnindexMessage *um) is not documented: - parameter 'um' -/home/william/Git/gnunet/src/fs/gnunet-service-fs_cadet_server.c:413: warning: argument 'channel_ctx' of command @param is not found in the argument list of disconnect_cb(void *cls, const struct GNUNET_CADET_Channel *channel) -/home/william/Git/gnunet/src/fs/gnunet-service-fs_cp.c:1354: warning: argument 'timeout' of command @param is not found in the argument list of GSF_peer_transmit_(struct GSF_ConnectedPeer *cp, int is_query, uint32_t priority, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/fs/gnunet-service-fs_cp.c:1354: warning: argument 'size' of command @param is not found in the argument list of GSF_peer_transmit_(struct GSF_ConnectedPeer *cp, int is_query, uint32_t priority, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/fs/gnunet-service-fs_cp.h:206: warning: argument 'cls' from the argument list of GSF_peer_connect_handler has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_cp.h:206: warning: argument 'peer' from the argument list of GSF_peer_connect_handler has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_cp.h:206: warning: argument 'mq' from the argument list of GSF_peer_connect_handler has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_cp.h:218: warning: argument 'peer' from the argument list of GSF_peer_get_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_cp.c:1354: warning: argument 'timeout' of command @param is not found in the argument list of GSF_peer_transmit_(struct GSF_ConnectedPeer *cp, int is_query, uint32_t priority, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/fs/gnunet-service-fs_cp.c:1354: warning: argument 'size' of command @param is not found in the argument list of GSF_peer_transmit_(struct GSF_ConnectedPeer *cp, int is_query, uint32_t priority, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/fs/gnunet-service-fs_cp.h:243: warning: argument 'cp' from the argument list of GSF_peer_transmit_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_cp.h:243: warning: argument 'is_query' from the argument list of GSF_peer_transmit_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_cp.h:243: warning: argument 'priority' from the argument list of GSF_peer_transmit_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_cp.h:243: warning: argument 'env' from the argument list of GSF_peer_transmit_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_cp.h:305: warning: argument 'cls' from the argument list of handle_p2p_get has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_cp.h:305: warning: argument 'gm' from the argument list of handle_p2p_get has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_cp.h:340: warning: argument 'cls' from the argument list of GSF_peer_disconnect_handler has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_cp.h:340: warning: argument 'peer' from the argument list of GSF_peer_disconnect_handler has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_cp.h:340: warning: argument 'internal_cls' from the argument list of GSF_peer_disconnect_handler has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_cp.h:397: warning: argument 'it' from the argument list of GSF_iterate_connected_peers_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_cp.h:397: warning: argument 'it_cls' from the argument list of GSF_iterate_connected_peers_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_indexing.h:59: warning: argument 'key' from the argument list of GNUNET_FS_handle_on_demand_block has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_indexing.h:59: warning: argument 'size' from the argument list of GNUNET_FS_handle_on_demand_block has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_indexing.h:59: warning: argument 'data' from the argument list of GNUNET_FS_handle_on_demand_block has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_indexing.h:59: warning: argument 'type' from the argument list of GNUNET_FS_handle_on_demand_block has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_indexing.h:59: warning: argument 'priority' from the argument list of GNUNET_FS_handle_on_demand_block has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_indexing.h:59: warning: argument 'anonymity' from the argument list of GNUNET_FS_handle_on_demand_block has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_indexing.h:59: warning: argument 'replication' from the argument list of GNUNET_FS_handle_on_demand_block has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_indexing.h:59: warning: argument 'expiration' from the argument list of GNUNET_FS_handle_on_demand_block has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_indexing.h:59: warning: argument 'uid' from the argument list of GNUNET_FS_handle_on_demand_block has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_indexing.h:59: warning: argument 'cont' from the argument list of GNUNET_FS_handle_on_demand_block has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_indexing.h:59: warning: argument 'cont_cls' from the argument list of GNUNET_FS_handle_on_demand_block has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_indexing.h:110: warning: argument 'c' from the argument list of GNUNET_FS_indexing_init has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_indexing.h:110: warning: argument 'd' from the argument list of GNUNET_FS_indexing_init has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pe.h:72: warning: argument 'pr_head' from the argument list of GSF_request_plan_reference_get_last_transmission_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pe.h:72: warning: argument 'sender' from the argument list of GSF_request_plan_reference_get_last_transmission_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pe.h:72: warning: argument 'result' from the argument list of GSF_request_plan_reference_get_last_transmission_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:223: warning: argument 'options' from the argument list of GSF_pending_request_create_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:223: warning: argument 'type' from the argument list of GSF_pending_request_create_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:223: warning: argument 'query' from the argument list of GSF_pending_request_create_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:223: warning: argument 'target' from the argument list of GSF_pending_request_create_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:223: warning: argument 'bf_data' from the argument list of GSF_pending_request_create_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:223: warning: argument 'bf_size' from the argument list of GSF_pending_request_create_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:223: warning: argument 'mingle' from the argument list of GSF_pending_request_create_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:223: warning: argument 'anonymity_level' from the argument list of GSF_pending_request_create_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:223: warning: argument 'priority' from the argument list of GSF_pending_request_create_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:223: warning: argument 'ttl' from the argument list of GSF_pending_request_create_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:223: warning: argument 'sender_pid' from the argument list of GSF_pending_request_create_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:223: warning: argument 'origin_pid' from the argument list of GSF_pending_request_create_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:223: warning: argument 'replies_seen' from the argument list of GSF_pending_request_create_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:223: warning: argument 'replies_seen_count' from the argument list of GSF_pending_request_create_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:223: warning: argument 'rh' from the argument list of GSF_pending_request_create_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:223: warning: argument 'rh_cls' from the argument list of GSF_pending_request_create_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:250: warning: argument 'pr' from the argument list of GSF_pending_request_update_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:250: warning: argument 'replies_seen' from the argument list of GSF_pending_request_update_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:250: warning: argument 'replies_seen_count' from the argument list of GSF_pending_request_update_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:333: warning: argument 'it' from the argument list of GSF_iterate_pending_requests_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:333: warning: argument 'cls' from the argument list of GSF_iterate_pending_requests_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:347: warning: argument 'cls' from the argument list of handle_p2p_put has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_pr.h:347: warning: argument 'put' from the argument list of handle_p2p_put has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_push.c:334: warning: argument 'cls' from the argument list of find_content has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_push.c:212: warning: argument 'peer' of command @param is not found in the argument list of transmit_content(struct MigrationReadyPeer *mrp, struct MigrationReadyBlock *block) -/home/william/Git/gnunet/src/fs/gnunet-service-fs_push.c:218: warning: The following parameter of transmit_content(struct MigrationReadyPeer *mrp, struct MigrationReadyBlock *block) is not documented: - parameter 'mrp' -/home/william/Git/gnunet/src/fs/gnunet-service-fs_push.h:53: warning: argument 'peer' from the argument list of GSF_push_start_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_push.h:63: warning: argument 'peer' from the argument list of GSF_push_stop_ has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/gnunet-service-fs_put.c:224: warning: argument 'tc' of command @param is not found in the argument list of gather_dht_put_blocks(void *cls) -/home/william/Git/gnunet/src/fs/gnunet-service-fs_put.c:228: warning: argument 'cls' from the argument list of gather_dht_put_blocks has multiple @param documentation sections -/home/william/Git/gnunet/src/fs/plugin_block_fs.c:43: warning: argument 'ctx' of command @param is not found in the argument list of block_plugin_fs_create_group(void *cls, enum GNUNET_BLOCK_Type type, uint32_t nonce, const void *raw_data, size_t raw_data_size, va_list va) -/home/william/Git/gnunet/src/fs/plugin_block_fs.c:54: warning: The following parameter of block_plugin_fs_create_group(void *cls, enum GNUNET_BLOCK_Type type, uint32_t nonce, const void *raw_data, size_t raw_data_size, va_list va) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/fs/plugin_block_fs.c:164: warning: argument 'ctx' of command @param is not found in the argument list of block_plugin_fs_check_query(void *cls, enum GNUNET_BLOCK_Type type, const struct GNUNET_HashCode *query, const void *xquery, size_t xquery_size) -/home/william/Git/gnunet/src/gns/gns_api.c:151: warning: argument 'loookup_msg' of command @param is not found in the argument list of check_result(void *cls, const struct LookupResultMessage *lookup_msg) -/home/william/Git/gnunet/src/gns/gns_api.c:158: warning: The following parameter of check_result(void *cls, const struct LookupResultMessage *lookup_msg) is not documented: - parameter 'lookup_msg' -/home/william/Git/gnunet/src/gns/gns_api.c:179: warning: argument 'loookup_msg' of command @param is not found in the argument list of handle_result(void *cls, const struct LookupResultMessage *lookup_msg) -/home/william/Git/gnunet/src/gns/gns_api.c:186: warning: The following parameter of handle_result(void *cls, const struct LookupResultMessage *lookup_msg) is not documented: - parameter 'lookup_msg' -/home/william/Git/gnunet/src/gns/gns_tld_api.c:169: warning: The following parameter of lookup_with_public_key(struct GNUNET_GNS_LookupWithTldRequest *ltr, const struct GNUNET_IDENTITY_PublicKey *pkey) is not documented: - parameter 'ltr' -/home/william/Git/gnunet/src/gns/gns_tld_api.c:184: warning: argument 'ego' of command @param is not found in the argument list of identity_zone_cb(void *cls, const struct GNUNET_IDENTITY_PrivateKey *priv, const char *ego_name) -/home/william/Git/gnunet/src/gns/gns_tld_api.c:184: warning: argument 'ctx' of command @param is not found in the argument list of identity_zone_cb(void *cls, const struct GNUNET_IDENTITY_PrivateKey *priv, const char *ego_name) -/home/william/Git/gnunet/src/gns/gns_tld_api.c:184: warning: argument 'name' of command @param is not found in the argument list of identity_zone_cb(void *cls, const struct GNUNET_IDENTITY_PrivateKey *priv, const char *ego_name) -/home/william/Git/gnunet/src/gns/gns_tld_api.c:192: warning: The following parameters of identity_zone_cb(void *cls, const struct GNUNET_IDENTITY_PrivateKey *priv, const char *ego_name) are not documented: - parameter 'priv' - parameter 'ego_name' -/home/william/Git/gnunet/src/gns/gnunet-gns-proxy.c:1649: warning: argument 'cls' from the argument list of curl_task_download has multiple @param documentation sections -/home/william/Git/gnunet/src/gns/gnunet-gns-proxy.c:1777: warning: explicit link request to 'MHD_YES' could not be resolved -/home/william/Git/gnunet/src/gns/gnunet-gns-proxy.c:1825: warning: explicit link request to 'MHD_YES' could not be resolved -/home/william/Git/gnunet/src/gns/gnunet-gns-proxy.c:1826: warning: explicit link request to 'MHD_NO' could not be resolved -/home/william/Git/gnunet/src/gns/gnunet-gns-proxy.c:2330: warning: argument 'toe' of command @param is not found in the argument list of mhd_connection_cb(void *cls, struct MHD_Connection *connection, void **con_cls, enum MHD_ConnectionNotificationCode cnc) -/home/william/Git/gnunet/src/gns/gnunet-gns-proxy.c:2338: warning: The following parameter of mhd_connection_cb(void *cls, struct MHD_Connection *connection, void **con_cls, enum MHD_ConnectionNotificationCode cnc) is not documented: - parameter 'cnc' -/home/william/Git/gnunet/src/gns/gnunet-gns-proxy.c:2574: warning: argument 'cls' from the argument list of do_httpd has multiple @param documentation sections -/home/william/Git/gnunet/src/gns/gnunet-gns-proxy.c:3432: warning: argument 'tc' of command @param is not found in the argument list of do_accept(void *cls) -/home/william/Git/gnunet/src/gns/gnunet-service-gns.c:411: warning: argument 'client' of command @param is not found in the argument list of handle_lookup(void *cls, const struct LookupMessage *sh_msg) -/home/william/Git/gnunet/src/gns/gnunet-service-gns.c:411: warning: argument 'message' of command @param is not found in the argument list of handle_lookup(void *cls, const struct LookupMessage *sh_msg) -/home/william/Git/gnunet/src/gns/gnunet-service-gns.c:419: warning: The following parameter of handle_lookup(void *cls, const struct LookupMessage *sh_msg) is not documented: - parameter 'sh_msg' -/home/william/Git/gnunet/src/gns/gnunet-service-gns.c:515: warning: argument 'server' of command @param is not found in the argument list of run(void *cls, const struct GNUNET_CONFIGURATION_Handle *c, struct GNUNET_SERVICE_Handle *service) -/home/william/Git/gnunet/src/gns/gnunet-service-gns.c:521: warning: The following parameter of run(void *cls, const struct GNUNET_CONFIGURATION_Handle *c, struct GNUNET_SERVICE_Handle *service) is not documented: - parameter 'service' -/home/william/Git/gnunet/src/gns/gnunet-service-gns_interceptor.h:38: warning: argument 'c' from the argument list of GNS_interceptor_init has multiple @param documentation sections -/home/william/Git/gnunet/src/gns/gnunet-service-gns_resolver.c:735: warning: explicit link request to 'LSD0001' could not be resolved -/home/william/Git/gnunet/src/gns/gnunet-service-gns_resolver.c:2701: warning: argument 'tc' of command @param is not found in the argument list of recursive_resolution(void *cls) -/home/william/Git/gnunet/src/gns/gnunet-service-gns_resolver.c:2705: warning: argument 'cls' from the argument list of recursive_resolution has multiple @param documentation sections -/home/william/Git/gnunet/src/gns/gnunet-service-gns_resolver.c:2732: warning: argument 'cls' from the argument list of start_resolver_lookup has multiple @param documentation sections -/home/william/Git/gnunet/src/gns/gnunet-service-gns_resolver.c:1906: warning: argument 'cls' from the argument list of handle_gns_resolution_result has multiple @param documentation sections -/home/william/Git/gnunet/src/gns/gnunet-service-gns_resolver.c:1906: warning: argument 'rd_count' from the argument list of handle_gns_resolution_result has multiple @param documentation sections -/home/william/Git/gnunet/src/gns/gnunet-service-gns_resolver.c:1906: warning: argument 'rd' from the argument list of handle_gns_resolution_result has multiple @param documentation sections -/home/william/Git/gnunet/src/gns/gnunet-service-gns_resolver.h:42: warning: argument 'nc' from the argument list of GNS_resolver_init has multiple @param documentation sections -/home/william/Git/gnunet/src/gns/gnunet-service-gns_resolver.h:42: warning: argument 'dht' from the argument list of GNS_resolver_init has multiple @param documentation sections -/home/william/Git/gnunet/src/gns/gnunet-service-gns_resolver.h:42: warning: argument 'c' from the argument list of GNS_resolver_init has multiple @param documentation sections -/home/william/Git/gnunet/src/gns/gnunet-service-gns_resolver.h:42: warning: argument 'max_bg_queries' from the argument list of GNS_resolver_init has multiple @param documentation sections -/home/william/Git/gnunet/src/gns/gnunet-service-gns_resolver.h:89: warning: argument 'zone' from the argument list of GNS_resolver_lookup has multiple @param documentation sections -/home/william/Git/gnunet/src/gns/gnunet-service-gns_resolver.h:89: warning: argument 'record_type' from the argument list of GNS_resolver_lookup has multiple @param documentation sections -/home/william/Git/gnunet/src/gns/gnunet-service-gns_resolver.h:89: warning: argument 'name' from the argument list of GNS_resolver_lookup has multiple @param documentation sections -/home/william/Git/gnunet/src/gns/gnunet-service-gns_resolver.h:89: warning: argument 'options' from the argument list of GNS_resolver_lookup has multiple @param documentation sections -/home/william/Git/gnunet/src/gns/gnunet-service-gns_resolver.h:89: warning: argument 'recursion_depth_limit' from the argument list of GNS_resolver_lookup has multiple @param documentation sections -/home/william/Git/gnunet/src/gns/gnunet-service-gns_resolver.h:89: warning: argument 'proc' from the argument list of GNS_resolver_lookup has multiple @param documentation sections -/home/william/Git/gnunet/src/gns/gnunet-service-gns_resolver.h:89: warning: argument 'proc_cls' from the argument list of GNS_resolver_lookup has multiple @param documentation sections -/home/william/Git/gnunet/src/gns/nss/nss_gns.c:189: warning: argument 'out' of command @param is not found in the argument list of _nss_gns_gethostbyname_r(const char *name, struct hostent *result, char *buffer, size_t buflen, int *errnop, int *h_errnop) -/home/william/Git/gnunet/src/gns/nss/nss_gns.c:218: warning: argument 'out' of command @param is not found in the argument list of _nss_gns_gethostbyaddr_r(const void *addr, int len, int af, struct hostent *result, char *buffer, size_t buflen, int *errnop, int *h_errnop) -/home/william/Git/gnunet/src/gns/plugin_block_gns.c:48: warning: argument 'ctx' of command @param is not found in the argument list of block_plugin_gns_create_group(void *cls, enum GNUNET_BLOCK_Type type, uint32_t nonce, const void *raw_data, size_t raw_data_size, va_list va) -/home/william/Git/gnunet/src/gns/plugin_block_gns.c:59: warning: The following parameter of block_plugin_gns_create_group(void *cls, enum GNUNET_BLOCK_Type type, uint32_t nonce, const void *raw_data, size_t raw_data_size, va_list va) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/gns/plugin_block_gns.c:138: warning: argument 'ctx' of command @param is not found in the argument list of block_plugin_gns_check_query(void *cls, enum GNUNET_BLOCK_Type type, const struct GNUNET_HashCode *query, const void *xquery, size_t xquery_size) -/home/william/Git/gnunet/src/gns/plugin_rest_gns.c:160: warning: argument 'handle' of command @param is not found in the argument list of cleanup_handle(void *cls) -/home/william/Git/gnunet/src/gns/plugin_rest_gns.c:165: warning: The following parameter of cleanup_handle(void *cls) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/gns/plugin_rest_gns.c:373: warning: argument 'method' of command @param is not found in the argument list of rest_process_request(struct GNUNET_REST_RequestHandle *rest_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/gns/plugin_rest_gns.c:373: warning: argument 'url' of command @param is not found in the argument list of rest_process_request(struct GNUNET_REST_RequestHandle *rest_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/gns/plugin_rest_gns.c:373: warning: argument 'data' of command @param is not found in the argument list of rest_process_request(struct GNUNET_REST_RequestHandle *rest_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/gns/plugin_rest_gns.c:373: warning: argument 'data_size' of command @param is not found in the argument list of rest_process_request(struct GNUNET_REST_RequestHandle *rest_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/gns/plugin_rest_gns.c:357: warning: The following parameter of rest_process_request(struct GNUNET_REST_RequestHandle *rest_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) is not documented: - parameter 'rest_handle' -/home/william/Git/gnunet/src/gnsrecord/gnsrecord_crypto.h:59: warning: argument 'iv' of command @param is not found in the argument list of GNR_derive_block_aes_key(unsigned char *ctr, unsigned char *key, const char *label, uint64_t exp, const struct GNUNET_CRYPTO_EcdsaPublicKey *pub) -/home/william/Git/gnunet/src/gnsrecord/gnsrecord_crypto.h:59: warning: argument 'skey' of command @param is not found in the argument list of GNR_derive_block_aes_key(unsigned char *ctr, unsigned char *key, const char *label, uint64_t exp, const struct GNUNET_CRYPTO_EcdsaPublicKey *pub) -/home/william/Git/gnunet/src/gnsrecord/gnsrecord_crypto.c:127: warning: The following parameters of GNR_derive_block_aes_key(unsigned char *ctr, unsigned char *key, const char *label, uint64_t exp, const struct GNUNET_CRYPTO_EcdsaPublicKey *pub) are not documented: - parameter 'ctr' - parameter 'key' - parameter 'exp' -/home/william/Git/gnunet/src/gnsrecord/gnsrecord_crypto.h:75: warning: argument 'skey' of command @param is not found in the argument list of GNR_derive_block_xsalsa_key(unsigned char *nonce, unsigned char *key, const char *label, uint64_t exp, const struct GNUNET_CRYPTO_EddsaPublicKey *pub) -/home/william/Git/gnunet/src/gnsrecord/gnsrecord_crypto.c:156: warning: The following parameters of GNR_derive_block_xsalsa_key(unsigned char *nonce, unsigned char *key, const char *label, uint64_t exp, const struct GNUNET_CRYPTO_EddsaPublicKey *pub) are not documented: - parameter 'key' - parameter 'exp' -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:528: warning: argument 'result' of command @param is not found in the argument list of GNUNET_GNSRECORD_block_create(const struct GNUNET_IDENTITY_PrivateKey *key, struct GNUNET_TIME_Absolute expire, const char *label, const struct GNUNET_GNSRECORD_Data *rd, unsigned int rd_count, struct GNUNET_GNSRECORD_Block **block) -/home/william/Git/gnunet/src/gnsrecord/gnsrecord_crypto.c:430: warning: The following parameter of GNUNET_GNSRECORD_block_create(const struct GNUNET_IDENTITY_PrivateKey *key, struct GNUNET_TIME_Absolute expire, const char *label, const struct GNUNET_GNSRECORD_Data *rd, unsigned int rd_count, struct GNUNET_GNSRECORD_Block **block) is not documented: - parameter 'block' -/home/william/Git/gnunet/src/gnsrecord/gnsrecord_crypto.h:59: warning: argument 'iv' of command @param is not found in the argument list of GNR_derive_block_aes_key(unsigned char *ctr, unsigned char *key, const char *label, uint64_t exp, const struct GNUNET_CRYPTO_EcdsaPublicKey *pub) -/home/william/Git/gnunet/src/gnsrecord/gnsrecord_crypto.h:59: warning: argument 'skey' of command @param is not found in the argument list of GNR_derive_block_aes_key(unsigned char *ctr, unsigned char *key, const char *label, uint64_t exp, const struct GNUNET_CRYPTO_EcdsaPublicKey *pub) -/home/william/Git/gnunet/src/gnsrecord/gnsrecord_crypto.h:66: warning: The following parameters of GNR_derive_block_aes_key(unsigned char *ctr, unsigned char *key, const char *label, uint64_t exp, const struct GNUNET_CRYPTO_EcdsaPublicKey *pub) are not documented: - parameter 'ctr' - parameter 'key' - parameter 'exp' -/home/william/Git/gnunet/src/gnsrecord/gnsrecord_crypto.h:75: warning: argument 'skey' of command @param is not found in the argument list of GNR_derive_block_xsalsa_key(unsigned char *nonce, unsigned char *key, const char *label, uint64_t exp, const struct GNUNET_CRYPTO_EddsaPublicKey *pub) -/home/william/Git/gnunet/src/gnsrecord/gnsrecord_crypto.h:82: warning: The following parameters of GNR_derive_block_xsalsa_key(unsigned char *nonce, unsigned char *key, const char *label, uint64_t exp, const struct GNUNET_CRYPTO_EddsaPublicKey *pub) are not documented: - parameter 'key' - parameter 'exp' -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:661: warning: explicit link request to 'GNUNET_GNSRECORD_PublicKey' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:714: warning: argument 'rd_public_count' of command @param is not found in the argument list of GNUNET_GNSRECORD_normalize_record_set(const char *label, const struct GNUNET_GNSRECORD_Data *rd, unsigned int rd_count, struct GNUNET_GNSRECORD_Data *rd_public, unsigned int *rd_count_public, struct GNUNET_TIME_Absolute *min_expiry, int include_private, char **emsg) -/home/william/Git/gnunet/src/gnsrecord/gnsrecord_misc.c:338: warning: The following parameter of GNUNET_GNSRECORD_normalize_record_set(const char *label, const struct GNUNET_GNSRECORD_Data *rd, unsigned int rd_count, struct GNUNET_GNSRECORD_Data *rd_public, unsigned int *rd_count_public, struct GNUNET_TIME_Absolute *min_expiry, int include_private, char **emsg) is not documented: - parameter 'rd_count_public' -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:745: warning: argument 'rd_public_count' of command @param is not found in the argument list of GNUNET_GNSRECORD_convert_records_for_export(const char *label, const struct GNUNET_GNSRECORD_Data *rd, unsigned int rd_count, struct GNUNET_GNSRECORD_Data *rd_public, unsigned int *rd_count_public, struct GNUNET_TIME_Absolute *expiry, char **emsg) -/home/william/Git/gnunet/src/gnsrecord/gnsrecord_misc.c:338: warning: The following parameter of GNUNET_GNSRECORD_convert_records_for_export(const char *label, const struct GNUNET_GNSRECORD_Data *rd, unsigned int rd_count, struct GNUNET_GNSRECORD_Data *rd_public, unsigned int *rd_count_public, struct GNUNET_TIME_Absolute *expiry, char **emsg) is not documented: - parameter 'rd_count_public' -/home/william/Git/gnunet/src/gnsrecord/gnunet-gnsrecord-tvg.c:120: warning: argument 'cls' of command @param is not found in the argument list of run_pkey(struct GNUNET_GNSRECORD_Data *rd, int rd_count, const char *label) -/home/william/Git/gnunet/src/gnsrecord/gnunet-gnsrecord-tvg.c:120: warning: argument 'args' of command @param is not found in the argument list of run_pkey(struct GNUNET_GNSRECORD_Data *rd, int rd_count, const char *label) -/home/william/Git/gnunet/src/gnsrecord/gnunet-gnsrecord-tvg.c:120: warning: argument 'cfgfile' of command @param is not found in the argument list of run_pkey(struct GNUNET_GNSRECORD_Data *rd, int rd_count, const char *label) -/home/william/Git/gnunet/src/gnsrecord/gnunet-gnsrecord-tvg.c:120: warning: argument 'cfg' of command @param is not found in the argument list of run_pkey(struct GNUNET_GNSRECORD_Data *rd, int rd_count, const char *label) -/home/william/Git/gnunet/src/gnsrecord/gnunet-gnsrecord-tvg.c:127: warning: The following parameters of run_pkey(struct GNUNET_GNSRECORD_Data *rd, int rd_count, const char *label) are not documented: - parameter 'rd' - parameter 'rd_count' - parameter 'label' -/home/william/Git/gnunet/src/gnsrecord/gnunet-gnsrecord-tvg.c:240: warning: argument 'cls' of command @param is not found in the argument list of run_edkey(struct GNUNET_GNSRECORD_Data *rd, int rd_count, const char *label) -/home/william/Git/gnunet/src/gnsrecord/gnunet-gnsrecord-tvg.c:240: warning: argument 'args' of command @param is not found in the argument list of run_edkey(struct GNUNET_GNSRECORD_Data *rd, int rd_count, const char *label) -/home/william/Git/gnunet/src/gnsrecord/gnunet-gnsrecord-tvg.c:240: warning: argument 'cfgfile' of command @param is not found in the argument list of run_edkey(struct GNUNET_GNSRECORD_Data *rd, int rd_count, const char *label) -/home/william/Git/gnunet/src/gnsrecord/gnunet-gnsrecord-tvg.c:240: warning: argument 'cfg' of command @param is not found in the argument list of run_edkey(struct GNUNET_GNSRECORD_Data *rd, int rd_count, const char *label) -/home/william/Git/gnunet/src/gnsrecord/gnunet-gnsrecord-tvg.c:247: warning: The following parameters of run_edkey(struct GNUNET_GNSRECORD_Data *rd, int rd_count, const char *label) are not documented: - parameter 'rd' - parameter 'rd_count' - parameter 'label' -/home/william/Git/gnunet/src/gnsrecord/json_gnsrecord.c:74: warning: argument 'cls' of command @param is not found in the argument list of parse_record(json_t *data, struct GNUNET_GNSRECORD_Data *rd) -/home/william/Git/gnunet/src/gnsrecord/json_gnsrecord.c:74: warning: argument 'root' of command @param is not found in the argument list of parse_record(json_t *data, struct GNUNET_GNSRECORD_Data *rd) -/home/william/Git/gnunet/src/gnsrecord/json_gnsrecord.c:74: warning: argument 'spec' of command @param is not found in the argument list of parse_record(json_t *data, struct GNUNET_GNSRECORD_Data *rd) -/home/william/Git/gnunet/src/gnsrecord/json_gnsrecord.c:83: warning: The following parameters of parse_record(json_t *data, struct GNUNET_GNSRECORD_Data *rd) are not documented: - parameter 'data' - parameter 'rd' -/home/william/Git/gnunet/src/gnsrecord/json_gnsrecord.c:167: warning: argument 'cls' of command @param is not found in the argument list of parse_record_data(struct GnsRecordInfo *gnsrecord_info, json_t *data) -/home/william/Git/gnunet/src/gnsrecord/json_gnsrecord.c:167: warning: argument 'root' of command @param is not found in the argument list of parse_record_data(struct GnsRecordInfo *gnsrecord_info, json_t *data) -/home/william/Git/gnunet/src/gnsrecord/json_gnsrecord.c:167: warning: argument 'spec' of command @param is not found in the argument list of parse_record_data(struct GnsRecordInfo *gnsrecord_info, json_t *data) -/home/william/Git/gnunet/src/gnsrecord/json_gnsrecord.c:176: warning: The following parameters of parse_record_data(struct GnsRecordInfo *gnsrecord_info, json_t *data) are not documented: - parameter 'gnsrecord_info' - parameter 'data' -/home/william/Git/gnunet/src/gnsrecord/json_gnsrecord.c:257: warning: argument 'gnsrecord_object' of command @param is not found in the argument list of GNUNET_GNSRECORD_JSON_spec_gnsrecord(struct GNUNET_GNSRECORD_Data **rd, unsigned int *rd_count, char **name) -/home/william/Git/gnunet/src/gnsrecord/json_gnsrecord.c:247: warning: The following parameters of GNUNET_GNSRECORD_JSON_spec_gnsrecord(struct GNUNET_GNSRECORD_Data **rd, unsigned int *rd_count, char **name) are not documented: - parameter 'rd' - parameter 'rd_count' - parameter 'name' -/home/william/Git/gnunet/src/gnsrecord/json_gnsrecord.c:291: warning: The following parameter of GNUNET_GNSRECORD_JSON_from_gnsrecord(const char *rname, const struct GNUNET_GNSRECORD_Data *rd, unsigned int rd_count) is not documented: - parameter 'rd_count' -/home/william/Git/gnunet/src/hello/hello-ng.c:58: warning: argument 'out' of command @param is not found in the argument list of GNUNET_HELLO_sign_address(const char *address, enum GNUNET_NetworkType nt, struct GNUNET_TIME_Absolute mono_time, const struct GNUNET_CRYPTO_EddsaPrivateKey *private_key, void **result, size_t *result_size) -/home/william/Git/gnunet/src/hello/hello-ng.c:58: warning: argument 'out' of command @param is not found in the argument list of GNUNET_HELLO_sign_address(const char *address, enum GNUNET_NetworkType nt, struct GNUNET_TIME_Absolute mono_time, const struct GNUNET_CRYPTO_EddsaPrivateKey *private_key, void **result, size_t *result_size) -/home/william/Git/gnunet/src/hello/hello-ng.c:99: warning: argument 'out' of command @param is not found in the argument list of GNUNET_HELLO_extract_address(const void *raw, size_t raw_size, const struct GNUNET_PeerIdentity *pid, enum GNUNET_NetworkType *nt, struct GNUNET_TIME_Absolute *mono_time) -/home/william/Git/gnunet/src/hello/hello-ng.c:99: warning: argument 'out' of command @param is not found in the argument list of GNUNET_HELLO_extract_address(const void *raw, size_t raw_size, const struct GNUNET_PeerIdentity *pid, enum GNUNET_NetworkType *nt, struct GNUNET_TIME_Absolute *mono_time) -/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist.c:227: warning: The following parameter of disconnect_handler(void *cls, const struct GNUNET_PeerIdentity *peer, void *internal_cls) is not documented: - parameter 'internal_cls' -/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_client.c:878: warning: argument 'tc' of command @param is not found in the argument list of task_download(void *cls) -/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_client.c:883: warning: argument 'cls' from the argument list of task_download has multiple @param documentation sections -/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_client.c:1226: warning: The following parameter of handler_disconnect(void *cls, const struct GNUNET_PeerIdentity *peer, void *internal_cls) is not documented: - parameter 'internal_cls' -/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_client.c:1323: warning: argument 'success' of command @param is not found in the argument list of stat_timeout_task(void *cls) -/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_server.c:290: warning: explicit link request to 'MHD_NO' could not be resolved -/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_server.c:295: warning: explicit link request to 'MHD_YES' could not be resolved -/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_server.c:295: warning: explicit link request to 'MHD_NO' could not be resolved -/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_server.c:320: warning: explicit link request to 'MHD_HTTP_METHOD_GET' could not be resolved -/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_server.c:321: warning: explicit link request to 'MHD_HTTP_METHOD_PUT' could not be resolved -/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_server.c:323: warning: explicit link request to 'MHD_HTTP_VERSION_1_1' could not be resolved -/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_server.c:328: warning: explicit link request to 'MHD_get_connection_values' could not be resolved -/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_server.c:341: warning: explicit link request to 'MHD_RequestCompletedCallback' could not be resolved -/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_server.c:342: warning: explicit link request to 'MHD_OPTION_NOTIFY_COMPLETED' could not be resolved -/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_server.c:344: warning: explicit link request to 'MHD_YES' could not be resolved -/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_server.c:345: warning: explicit link request to 'MHD_NO' could not be resolved -/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_server.c:427: warning: argument 'cls' of command @param is not found in the argument list of adv_transmit(struct GNUNET_MQ_Handle *mq) -/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_server.c:427: warning: argument 'size' of command @param is not found in the argument list of adv_transmit(struct GNUNET_MQ_Handle *mq) -/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_server.c:427: warning: argument 'buf' of command @param is not found in the argument list of adv_transmit(struct GNUNET_MQ_Handle *mq) -/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_server.c:437: warning: The following parameter of adv_transmit(struct GNUNET_MQ_Handle *mq) is not documented: - parameter 'mq' -/home/william/Git/gnunet/src/identity/gnunet-service-identity.c:476: warning: argument 'client' of command @param is not found in the argument list of handle_get_default_message(void *cls, const struct GetDefaultMessage *gdm) -/home/william/Git/gnunet/src/identity/gnunet-service-identity.c:476: warning: argument 'message' of command @param is not found in the argument list of handle_get_default_message(void *cls, const struct GetDefaultMessage *gdm) -/home/william/Git/gnunet/src/identity/gnunet-service-identity.c:483: warning: The following parameter of handle_get_default_message(void *cls, const struct GetDefaultMessage *gdm) is not documented: - parameter 'gdm' -/home/william/Git/gnunet/src/identity/gnunet-service-identity.c:587: warning: argument 'client' of command @param is not found in the argument list of handle_set_default_message(void *cls, const struct SetDefaultMessage *sdm) -/home/william/Git/gnunet/src/identity/gnunet-service-identity.c:587: warning: argument 'message' of command @param is not found in the argument list of handle_set_default_message(void *cls, const struct SetDefaultMessage *sdm) -/home/william/Git/gnunet/src/identity/gnunet-service-identity.c:594: warning: The following parameter of handle_set_default_message(void *cls, const struct SetDefaultMessage *sdm) is not documented: - parameter 'sdm' -/home/william/Git/gnunet/src/identity/gnunet-service-identity.c:700: warning: argument 'client' of command @param is not found in the argument list of handle_create_message(void *cls, const struct CreateRequestMessage *crm) -/home/william/Git/gnunet/src/identity/gnunet-service-identity.c:700: warning: argument 'message' of command @param is not found in the argument list of handle_create_message(void *cls, const struct CreateRequestMessage *crm) -/home/william/Git/gnunet/src/identity/gnunet-service-identity.c:706: warning: The following parameter of handle_create_message(void *cls, const struct CreateRequestMessage *crm) is not documented: - parameter 'crm' -/home/william/Git/gnunet/src/identity/gnunet-service-identity.c:839: warning: argument 'client' of command @param is not found in the argument list of handle_rename_message(void *cls, const struct RenameMessage *rm) -/home/william/Git/gnunet/src/identity/gnunet-service-identity.c:839: warning: argument 'message' of command @param is not found in the argument list of handle_rename_message(void *cls, const struct RenameMessage *rm) -/home/william/Git/gnunet/src/identity/gnunet-service-identity.c:846: warning: The following parameter of handle_rename_message(void *cls, const struct RenameMessage *rm) is not documented: - parameter 'rm' -/home/william/Git/gnunet/src/identity/gnunet-service-identity.c:985: warning: argument 'client' of command @param is not found in the argument list of handle_delete_message(void *cls, const struct DeleteMessage *dm) -/home/william/Git/gnunet/src/identity/gnunet-service-identity.c:985: warning: argument 'message' of command @param is not found in the argument list of handle_delete_message(void *cls, const struct DeleteMessage *dm) -/home/william/Git/gnunet/src/identity/gnunet-service-identity.c:992: warning: The following parameter of handle_delete_message(void *cls, const struct DeleteMessage *dm) is not documented: - parameter 'dm' -/home/william/Git/gnunet/src/identity/gnunet-service-identity.c:1145: warning: argument 'server' of command @param is not found in the argument list of run(void *cls, const struct GNUNET_CONFIGURATION_Handle *c, struct GNUNET_SERVICE_Handle *service) -/home/william/Git/gnunet/src/identity/gnunet-service-identity.c:1151: warning: The following parameter of run(void *cls, const struct GNUNET_CONFIGURATION_Handle *c, struct GNUNET_SERVICE_Handle *service) is not documented: - parameter 'service' -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:465: warning: argument 'sig' of command @param is not found in the argument list of GNUNET_IDENTITY_signature_get_raw_length_by_type(const uint32_t type) -/home/william/Git/gnunet/src/identity/identity_api.c:1066: warning: The following parameter of GNUNET_IDENTITY_signature_get_raw_length_by_type(const uint32_t type) is not documented: - parameter 'type' -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:832: warning: argument 'name' of command @param is not found in the argument list of GNUNET_IDENTITY_ego_lookup_by_suffix(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *suffix, GNUNET_IDENTITY_EgoSuffixCallback cb, void *cb_cls) -/home/william/Git/gnunet/src/identity/identity_api_suffix_lookup.c:168: warning: The following parameter of GNUNET_IDENTITY_ego_lookup_by_suffix(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *suffix, GNUNET_IDENTITY_EgoSuffixCallback cb, void *cb_cls) is not documented: - parameter 'suffix' -/home/william/Git/gnunet/src/identity/plugin_rest_identity.c:274: warning: argument 'handle' of command @param is not found in the argument list of cleanup_handle(void *cls) -/home/william/Git/gnunet/src/identity/plugin_rest_identity.c:279: warning: The following parameter of cleanup_handle(void *cls) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/identity/plugin_rest_identity.c:690: warning: argument 'private' of command @param is not found in the argument list of do_finished_create(void *cls, const struct GNUNET_IDENTITY_PrivateKey *pk, const char *emsg) -/home/william/Git/gnunet/src/identity/plugin_rest_identity.c:696: warning: The following parameter of do_finished_create(void *cls, const struct GNUNET_IDENTITY_PrivateKey *pk, const char *emsg) is not documented: - parameter 'pk' -/home/william/Git/gnunet/src/identity/plugin_rest_identity.c:1297: warning: argument 'method' of command @param is not found in the argument list of rest_process_request(struct GNUNET_REST_RequestHandle *rest_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/identity/plugin_rest_identity.c:1297: warning: argument 'url' of command @param is not found in the argument list of rest_process_request(struct GNUNET_REST_RequestHandle *rest_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/identity/plugin_rest_identity.c:1297: warning: argument 'data' of command @param is not found in the argument list of rest_process_request(struct GNUNET_REST_RequestHandle *rest_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/identity/plugin_rest_identity.c:1297: warning: argument 'data_size' of command @param is not found in the argument list of rest_process_request(struct GNUNET_REST_RequestHandle *rest_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/identity/plugin_rest_identity.c:1216: warning: The following parameter of rest_process_request(struct GNUNET_REST_RequestHandle *rest_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) is not documented: - parameter 'rest_handle' -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:244: warning: argument 'cfg' from the argument list of GNUNET_ABD_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:253: warning: argument 'handle' from the argument list of GNUNET_ABD_disconnect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:320: warning: argument 'handle' from the argument list of GNUNET_ABD_verify has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:320: warning: argument 'issuer_key' from the argument list of GNUNET_ABD_verify has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:320: warning: argument 'issuer_attribute' from the argument list of GNUNET_ABD_verify has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:320: warning: argument 'subject_key' from the argument list of GNUNET_ABD_verify has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:320: warning: argument 'delegate_count' from the argument list of GNUNET_ABD_verify has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:320: warning: argument 'delegates' from the argument list of GNUNET_ABD_verify has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:320: warning: argument 'proc' from the argument list of GNUNET_ABD_verify has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:320: warning: argument 'proc_cls' from the argument list of GNUNET_ABD_verify has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:320: warning: The following parameters of GNUNET_ABD_verify(struct GNUNET_ABD_Handle *handle, const struct GNUNET_IDENTITY_PublicKey *issuer_key, const char *issuer_attribute, const struct GNUNET_IDENTITY_PublicKey *subject_key, uint32_t delegate_count, const struct GNUNET_ABD_Delegate *delegates, enum GNUNET_ABD_AlgoDirectionFlags direction, GNUNET_ABD_CredentialResultProcessor proc, void *proc_cls, GNUNET_ABD_IntermediateResultProcessor proc2, void *proc2_cls) are not documented: - parameter 'direction' - parameter 'proc2' - parameter 'proc2_cls' -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:333: warning: The following parameters of GNUNET_ABD_collect(struct GNUNET_ABD_Handle *handle, const struct GNUNET_IDENTITY_PublicKey *issuer_key, const char *issuer_attribute, const struct GNUNET_IDENTITY_PrivateKey *subject_key, enum GNUNET_ABD_AlgoDirectionFlags direction, GNUNET_ABD_CredentialResultProcessor proc, void *proc_cls, GNUNET_ABD_IntermediateResultProcessor proc2, void *proc2_cls) are not documented: - parameter 'direction' - parameter 'proc2' - parameter 'proc2_cls' -/home/william/Git/gnunet/src/abd/delegate_misc.c:187: warning: argument 'attribute' of command @param is not found in the argument list of GNUNET_ABD_delegate_issue(const struct GNUNET_IDENTITY_PrivateKey *issuer, struct GNUNET_IDENTITY_PublicKey *subject, const char *iss_attr, const char *sub_attr, struct GNUNET_TIME_Absolute *expiration) -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:392: warning: argument 'issuer' from the argument list of GNUNET_ABD_delegate_issue has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:392: warning: argument 'subject' from the argument list of GNUNET_ABD_delegate_issue has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:392: warning: The following parameter of GNUNET_ABD_delegate_issue(const struct GNUNET_IDENTITY_PrivateKey *issuer, struct GNUNET_IDENTITY_PublicKey *subject, const char *iss_attr, const char *sub_attr, struct GNUNET_TIME_Absolute *expiration) is not documented: - parameter 'sub_attr' -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:405: warning: argument 'lr' from the argument list of GNUNET_ABD_request_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/abe/abe.c:181: warning: documented empty return type of GNUNET_ABE_cpabe_delete_master_key -/home/william/Git/gnunet/src/abe/abe.c:226: warning: argument 'key' from the argument list of GNUNET_ABE_cpabe_delete_key has multiple @param documentation sections -/home/william/Git/gnunet/src/abe/abe.c:226: warning: argument 'delete_pub' from the argument list of GNUNET_ABE_cpabe_delete_key has multiple @param documentation sections -/home/william/Git/gnunet/src/abe/abe.c:226: warning: documented empty return type of GNUNET_ABE_cpabe_delete_key -/home/william/Git/gnunet/src/include/gnunet_arm_service.h:307: warning: argument 'h' from the argument list of GNUNET_ARM_disconnect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_arm_service.h:417: warning: argument 'h' from the argument list of GNUNET_ARM_monitor_stop has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:160: warning: argument 'OUT' of command @param is not found in the argument list of GNUNET_ATS_properties_hton(struct GNUNET_ATS_PropertiesNBO *nbo, const struct GNUNET_ATS_Properties *hbo) -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:171: warning: argument 'OUT' of command @param is not found in the argument list of GNUNET_ATS_properties_ntoh(struct GNUNET_ATS_Properties *hbo, const struct GNUNET_ATS_PropertiesNBO *nbo) -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:210: warning: argument 'ch' from the argument list of GNUNET_ATS_connectivity_done has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:223: warning: argument 'ch' from the argument list of GNUNET_ATS_connectivity_suggest has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:223: warning: argument 'peer' from the argument list of GNUNET_ATS_connectivity_suggest has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:223: warning: argument 'strength' from the argument list of GNUNET_ATS_connectivity_suggest has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:234: warning: argument 'sh' from the argument list of GNUNET_ATS_connectivity_suggest_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:288: warning: argument 'cfg' from the argument list of GNUNET_ATS_scheduling_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:288: warning: argument 'suggest_cb' from the argument list of GNUNET_ATS_scheduling_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:288: warning: argument 'suggest_cb_cls' from the argument list of GNUNET_ATS_scheduling_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:321: warning: argument 'sh' from the argument list of GNUNET_ATS_address_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:321: warning: argument 'address' from the argument list of GNUNET_ATS_address_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:321: warning: argument 'session' from the argument list of GNUNET_ATS_address_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:321: warning: argument 'prop' from the argument list of GNUNET_ATS_address_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:345: warning: Found unknown command '\ar' -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:358: warning: Found unknown command '\ar' -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:351: warning: argument 'ar' from the argument list of GNUNET_ATS_address_del_session has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:351: warning: argument 'session' from the argument list of GNUNET_ATS_address_del_session has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:369: warning: argument 'ar' from the argument list of GNUNET_ATS_address_update has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:369: warning: argument 'prop' from the argument list of GNUNET_ATS_address_update has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:380: warning: argument 'ar' from the argument list of GNUNET_ATS_address_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:452: warning: argument 'ph' from the argument list of GNUNET_ATS_performance_list_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:452: warning: argument 'peer' from the argument list of GNUNET_ATS_performance_list_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:452: warning: argument 'all' from the argument list of GNUNET_ATS_performance_list_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:452: warning: argument 'infocb' from the argument list of GNUNET_ATS_performance_list_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:452: warning: argument 'infocb_cls' from the argument list of GNUNET_ATS_performance_list_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:466: warning: argument 'alh' from the argument list of GNUNET_ATS_performance_list_addresses_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:517: warning: argument 'ph' from the argument list of GNUNET_ATS_reserve_bandwidth has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:517: warning: argument 'peer' from the argument list of GNUNET_ATS_reserve_bandwidth has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:517: warning: argument 'amount' from the argument list of GNUNET_ATS_reserve_bandwidth has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:517: warning: argument 'rcb' from the argument list of GNUNET_ATS_reserve_bandwidth has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:517: warning: argument 'rcb_cls' from the argument list of GNUNET_ATS_reserve_bandwidth has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:530: warning: argument 'rc' from the argument list of GNUNET_ATS_reserve_bandwidth_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:581: warning: argument 'type' from the argument list of GNUNET_ATS_print_preference_type has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:593: warning: argument 'ph' from the argument list of GNUNET_ATS_performance_change_preference has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:593: warning: argument 'peer' from the argument list of GNUNET_ATS_performance_change_preference has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:618: warning: argument 'ph' from the argument list of GNUNET_ATS_performance_give_feedback has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:618: warning: argument 'peer' from the argument list of GNUNET_ATS_performance_give_feedback has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:618: warning: argument 'scope' from the argument list of GNUNET_ATS_performance_give_feedback has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:175: warning: argument 'bps' from the argument list of GNUNET_BANDWIDTH_value_get_delay_for has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:175: warning: argument 'size' from the argument list of GNUNET_BANDWIDTH_value_get_delay_for has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:246: warning: argument 'av' from the argument list of GNUNET_BANDWIDTH_tracker_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:246: warning: argument 'update_cb' from the argument list of GNUNET_BANDWIDTH_tracker_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:246: warning: argument 'update_cb_cls' from the argument list of GNUNET_BANDWIDTH_tracker_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:246: warning: argument 'bytes_per_second_limit' from the argument list of GNUNET_BANDWIDTH_tracker_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:246: warning: argument 'max_carry_s' from the argument list of GNUNET_BANDWIDTH_tracker_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:273: warning: argument 'av' from the argument list of GNUNET_BANDWIDTH_tracker_init2 has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:273: warning: argument 'update_cb' from the argument list of GNUNET_BANDWIDTH_tracker_init2 has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:273: warning: argument 'update_cb_cls' from the argument list of GNUNET_BANDWIDTH_tracker_init2 has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:273: warning: argument 'bytes_per_second_limit' from the argument list of GNUNET_BANDWIDTH_tracker_init2 has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:273: warning: argument 'max_carry_s' from the argument list of GNUNET_BANDWIDTH_tracker_init2 has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:273: warning: argument 'excess_cb' from the argument list of GNUNET_BANDWIDTH_tracker_init2 has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:273: warning: argument 'excess_cb_cls' from the argument list of GNUNET_BANDWIDTH_tracker_init2 has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:305: warning: argument 'av' from the argument list of GNUNET_BANDWIDTH_tracker_consume has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:305: warning: argument 'size' from the argument list of GNUNET_BANDWIDTH_tracker_consume has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:305: warning: argument 'av' from the argument list of GNUNET_BANDWIDTH_tracker_get_delay has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:305: warning: argument 'size' from the argument list of GNUNET_BANDWIDTH_tracker_get_delay has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bio_lib.h:87: warning: argument 'h' from the argument list of GNUNET_BIO_read_close has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bio_lib.h:87: warning: argument 'emsg' from the argument list of GNUNET_BIO_read_close has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bio_lib.h:314: warning: argument 'h' from the argument list of GNUNET_BIO_write_float has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bio_lib.h:314: warning: argument 'what' from the argument list of GNUNET_BIO_write_float has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bio_lib.h:314: warning: argument 'f' from the argument list of GNUNET_BIO_write_float has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bio_lib.h:326: warning: argument 'h' from the argument list of GNUNET_BIO_write_double has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bio_lib.h:326: warning: argument 'what' from the argument list of GNUNET_BIO_write_double has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bio_lib.h:326: warning: argument 'f' from the argument list of GNUNET_BIO_write_double has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_block_group_lib.h:66: warning: argument 'ctx' of command @param is not found in the argument list of GNUNET_BLOCK_GROUP_bf_create(void *cls, size_t bf_size, unsigned int bf_k, enum GNUNET_BLOCK_Type type, uint32_t nonce, const void *raw_data, size_t raw_data_size) -/home/william/Git/gnunet/src/include/gnunet_block_group_lib.h:78: warning: The following parameter of GNUNET_BLOCK_GROUP_bf_create(void *cls, size_t bf_size, unsigned int bf_k, enum GNUNET_BLOCK_Type type, uint32_t nonce, const void *raw_data, size_t raw_data_size) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/include/gnunet_block_group_lib.h:94: warning: Found unknown command '\bg' -/home/william/Git/gnunet/src/include/gnunet_block_lib.h:259: warning: argument 'bf_mutator' of command @param is not found in the argument list of GNUNET_BLOCK_group_set_seen(struct GNUNET_BLOCK_Group *bg, const struct GNUNET_HashCode *seen_results, unsigned int seen_results_count) -/home/william/Git/gnunet/src/include/gnunet_block_lib.h:173: warning: The following parameter of GNUNET_BLOCK_group_set_seen(struct GNUNET_BLOCK_Group *bg, const struct GNUNET_HashCode *seen_results, unsigned int seen_results_count) is not documented: - parameter 'bg' -/home/william/Git/gnunet/src/include/gnunet_block_lib.h:277: warning: Found unknown command '\bg2' -/home/william/Git/gnunet/src/include/gnunet_buffer_lib.h:113: warning: argument 'buf' from the argument list of GNUNET_buffer_write_str has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_buffer_lib.h:113: warning: argument 'str' from the argument list of GNUNET_buffer_write_str has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:189: warning: argument 'h' from the argument list of GNUNET_CADET_open_port has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:189: warning: argument 'port' from the argument list of GNUNET_CADET_open_port has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:189: warning: argument 'connects' from the argument list of GNUNET_CADET_open_port has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:189: warning: argument 'connects_cls' from the argument list of GNUNET_CADET_open_port has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:189: warning: argument 'window_changes' from the argument list of GNUNET_CADET_open_port has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:189: warning: argument 'disconnects' from the argument list of GNUNET_CADET_open_port has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:189: warning: argument 'handlers' from the argument list of GNUNET_CADET_open_port has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:205: warning: argument 'p' from the argument list of GNUNET_CADET_close_port has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:229: warning: argument 'h' from the argument list of GNUNET_CADET_channel_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:229: warning: argument 'channel_cls' from the argument list of GNUNET_CADET_channel_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:229: warning: argument 'destination' from the argument list of GNUNET_CADET_channel_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:229: warning: argument 'port' from the argument list of GNUNET_CADET_channel_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:229: warning: argument 'window_changes' from the argument list of GNUNET_CADET_channel_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:229: warning: argument 'disconnects' from the argument list of GNUNET_CADET_channel_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:229: warning: argument 'handlers' from the argument list of GNUNET_CADET_channel_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:258: warning: argument 'channel' from the argument list of GNUNET_CADET_get_mq has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:261: warning: argument 'ch' of command @param is not found in the argument list of GNUNET_CADET_receive_done(struct GNUNET_CADET_Channel *channel) -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:319: warning: argument 'channel' from the argument list of GNUNET_CADET_channel_get_info has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:381: warning: argument 'cfg' from the argument list of GNUNET_CADET_get_channel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:381: warning: argument 'peer' from the argument list of GNUNET_CADET_get_channel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:381: warning: argument 'callback' from the argument list of GNUNET_CADET_get_channel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:381: warning: argument 'callback_cls' from the argument list of GNUNET_CADET_get_channel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:387: warning: argument 'h' of command @param is not found in the argument list of GNUNET_CADET_get_channel_cancel(struct GNUNET_CADET_ChannelMonitor *cm) -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:394: warning: The following parameter of GNUNET_CADET_get_channel_cancel(struct GNUNET_CADET_ChannelMonitor *cm) is not documented: - parameter 'cm' -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:467: warning: argument 'pl' from the argument list of GNUNET_CADET_list_peers_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:527: warning: argument 'cfg' from the argument list of GNUNET_CADET_get_path has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:527: warning: argument 'id' from the argument list of GNUNET_CADET_get_path has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:527: warning: argument 'callback' from the argument list of GNUNET_CADET_get_path has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:527: warning: argument 'callback_cls' from the argument list of GNUNET_CADET_get_path has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:618: warning: argument 'lt' from the argument list of GNUNET_CADET_list_tunnels_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_child_management_lib.h:55: warning: argument 'cp' of command @param is not found in the argument list of GNUNET_wait_child(struct GNUNET_OS_Process *proc, GNUNET_ChildCompletedCallback cb, void *cb_cls) -/home/william/Git/gnunet/src/include/gnunet_child_management_lib.h:66: warning: argument 'proc' from the argument list of GNUNET_wait_child has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_child_management_lib.h:66: warning: argument 'cb_cls' from the argument list of GNUNET_wait_child has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_client_lib.h:69: warning: argument 'cfg' from the argument list of GNUNET_CLIENT_test has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_client_lib.h:69: warning: argument 'service_name' from the argument list of GNUNET_CLIENT_test has multiple @param documentation sections -/home/william/Git/gnunet/src/util/client.c:1055: warning: argument 'connection' of command @param is not found in the argument list of GNUNET_CLIENT_connect(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *service_name, const struct GNUNET_MQ_MessageHandler *handlers, GNUNET_MQ_ErrorHandler error_handler, void *error_handler_cls) -/home/william/Git/gnunet/src/include/gnunet_client_lib.h:84: warning: argument 'handlers' from the argument list of GNUNET_CLIENT_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_client_lib.h:84: warning: argument 'error_handler' from the argument list of GNUNET_CLIENT_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_client_lib.h:84: warning: argument 'error_handler_cls' from the argument list of GNUNET_CLIENT_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1496: warning: argument 'len' of command @param is not found in the argument list of GNUNET_array_concatenate(arr1, len1, arr2, len2) -/home/william/Git/gnunet/src/include/gnunet_common.h:1518: warning: The following parameter of GNUNET_array_concatenate(arr1, len1, arr2, len2) is not documented: - parameter 'len2' -/home/william/Git/gnunet/src/include/gnunet_common.h:598: warning: argument 'kind' from the argument list of GNUNET_log_config_missing has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:598: warning: argument 'section' from the argument list of GNUNET_log_config_missing has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:598: warning: argument 'option' from the argument list of GNUNET_log_config_missing has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:613: warning: argument 'kind' from the argument list of GNUNET_log_config_invalid has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:613: warning: argument 'section' from the argument list of GNUNET_log_config_invalid has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:613: warning: argument 'option' from the argument list of GNUNET_log_config_invalid has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:613: warning: argument 'required' from the argument list of GNUNET_log_config_invalid has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:662: warning: argument 'n' from the argument list of GNUNET_log_skip has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:662: warning: argument 'check_reset' from the argument list of GNUNET_log_skip has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:675: warning: argument 'comp' from the argument list of GNUNET_log_setup has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:675: warning: argument 'loglevel' from the argument list of GNUNET_log_setup has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:675: warning: argument 'logfile' from the argument list of GNUNET_log_setup has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:689: warning: argument 'logger' from the argument list of GNUNET_logger_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:689: warning: argument 'logger_cls' from the argument list of GNUNET_logger_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:700: warning: argument 'logger' from the argument list of GNUNET_logger_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:700: warning: argument 'logger_cls' from the argument list of GNUNET_logger_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:739: warning: argument 'hc' from the argument list of GNUNET_h2s has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:754: warning: argument 'hc' from the argument list of GNUNET_h2s2 has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:768: warning: argument 'hc' from the argument list of GNUNET_h2s_full has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:784: warning: argument 'hc' of command @param is not found in the argument list of GNUNET_p2s(const struct GNUNET_CRYPTO_EddsaPublicKey *p) -/home/william/Git/gnunet/src/util/common_logging.c:1194: warning: The following parameter of GNUNET_p2s(const struct GNUNET_CRYPTO_EddsaPublicKey *p) is not documented: - parameter 'p' -/home/william/Git/gnunet/src/include/gnunet_common.h:797: warning: argument 'hc' of command @param is not found in the argument list of GNUNET_p2s2(const struct GNUNET_CRYPTO_EddsaPublicKey *p) -/home/william/Git/gnunet/src/util/common_logging.c:1216: warning: The following parameter of GNUNET_p2s2(const struct GNUNET_CRYPTO_EddsaPublicKey *p) is not documented: - parameter 'p' -/home/william/Git/gnunet/src/include/gnunet_common.h:810: warning: argument 'hc' of command @param is not found in the argument list of GNUNET_e2s(const struct GNUNET_CRYPTO_EcdhePublicKey *p) -/home/william/Git/gnunet/src/util/common_logging.c:1238: warning: The following parameter of GNUNET_e2s(const struct GNUNET_CRYPTO_EcdhePublicKey *p) is not documented: - parameter 'p' -/home/william/Git/gnunet/src/include/gnunet_common.h:823: warning: argument 'hc' of command @param is not found in the argument list of GNUNET_e2s2(const struct GNUNET_CRYPTO_EcdhePublicKey *p) -/home/william/Git/gnunet/src/util/common_logging.c:1260: warning: The following parameter of GNUNET_e2s2(const struct GNUNET_CRYPTO_EcdhePublicKey *p) is not documented: - parameter 'p' -/home/william/Git/gnunet/src/include/gnunet_common.h:852: warning: argument 'pid' from the argument list of GNUNET_i2s has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:868: warning: argument 'pid' from the argument list of GNUNET_i2s2 has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:882: warning: argument 'pid' from the argument list of GNUNET_i2s_full has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:897: warning: argument 'addr' from the argument list of GNUNET_a2s has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:897: warning: argument 'addrlen' from the argument list of GNUNET_a2s has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:908: warning: argument 'kind' from the argument list of GNUNET_error_type_to_string has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1173: warning: argument 'd' from the argument list of GNUNET_hton_double has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1185: warning: argument 'd' from the argument list of GNUNET_ntoh_double has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1578: warning: argument 'size' from the argument list of GNUNET_xmalloc_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1578: warning: argument 'filename' from the argument list of GNUNET_xmalloc_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1578: warning: argument 'linenumber' from the argument list of GNUNET_xmalloc_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1639: warning: argument 'buf' from the argument list of GNUNET_xmemdup_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1639: warning: argument 'size' from the argument list of GNUNET_xmemdup_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1639: warning: argument 'filename' from the argument list of GNUNET_xmemdup_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1639: warning: argument 'linenumber' from the argument list of GNUNET_xmemdup_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1658: warning: argument 'size' from the argument list of GNUNET_xmalloc_unchecked_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1658: warning: argument 'filename' from the argument list of GNUNET_xmalloc_unchecked_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1658: warning: argument 'linenumber' from the argument list of GNUNET_xmalloc_unchecked_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1679: warning: argument 'ptr' from the argument list of GNUNET_xfree_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1679: warning: argument 'filename' from the argument list of GNUNET_xfree_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1679: warning: argument 'linenumber' from the argument list of GNUNET_xfree_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1690: warning: argument 'str' from the argument list of GNUNET_xstrdup_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1690: warning: argument 'filename' from the argument list of GNUNET_xstrdup_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1690: warning: argument 'linenumber' from the argument list of GNUNET_xstrdup_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1702: warning: argument 'str' from the argument list of GNUNET_xstrndup_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1702: warning: argument 'len' from the argument list of GNUNET_xstrndup_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1702: warning: argument 'filename' from the argument list of GNUNET_xstrndup_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1702: warning: argument 'linenumber' from the argument list of GNUNET_xstrndup_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1723: warning: argument 'old' from the argument list of GNUNET_xgrow_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1723: warning: argument 'elementSize' from the argument list of GNUNET_xgrow_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1723: warning: argument 'oldCount' from the argument list of GNUNET_xgrow_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1723: warning: argument 'newCount' from the argument list of GNUNET_xgrow_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1723: warning: argument 'filename' from the argument list of GNUNET_xgrow_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1723: warning: argument 'linenumber' from the argument list of GNUNET_xgrow_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1739: warning: argument 'msg' from the argument list of GNUNET_copy_message has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1744: warning: argument 'out' of command @param is not found in the argument list of GNUNET_async_scope_enter(const struct GNUNET_AsyncScopeId *aid, struct GNUNET_AsyncScopeSave *old_scope) -/home/william/Git/gnunet/src/include/gnunet_configuration_lib.h:77: warning: argument 'cfg' from the argument list of GNUNET_CONFIGURATION_load has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_configuration_lib.h:77: warning: argument 'filename' from the argument list of GNUNET_CONFIGURATION_load has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_configuration_lib.h:174: warning: Found unknown command '\INLINE' -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:99: warning: argument 'cfg' from the argument list of GNUNET_CONSENSUS_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:99: warning: argument 'num_peers' from the argument list of GNUNET_CONSENSUS_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:99: warning: argument 'peers' from the argument list of GNUNET_CONSENSUS_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:99: warning: argument 'session_id' from the argument list of GNUNET_CONSENSUS_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:99: warning: argument 'start' from the argument list of GNUNET_CONSENSUS_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:99: warning: argument 'deadline' from the argument list of GNUNET_CONSENSUS_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:99: warning: argument 'new_element_cb' from the argument list of GNUNET_CONSENSUS_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:99: warning: argument 'new_element_cls' from the argument list of GNUNET_CONSENSUS_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:138: warning: argument 'consensus' from the argument list of GNUNET_CONSENSUS_insert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:138: warning: argument 'element' from the argument list of GNUNET_CONSENSUS_insert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:138: warning: argument 'idc' from the argument list of GNUNET_CONSENSUS_insert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:138: warning: argument 'idc_cls' from the argument list of GNUNET_CONSENSUS_insert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:152: warning: argument 'deadline' of command @param is not found in the argument list of GNUNET_CONSENSUS_conclude(struct GNUNET_CONSENSUS_Handle *consensus, GNUNET_CONSENSUS_ConcludeCallback conclude, void *conclude_cls) -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:161: warning: argument 'consensus' from the argument list of GNUNET_CONSENSUS_conclude has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:161: warning: argument 'conclude' from the argument list of GNUNET_CONSENSUS_conclude has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:161: warning: argument 'conclude_cls' from the argument list of GNUNET_CONSENSUS_conclude has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_constants.h:131: warning: explicit link request to 'GNUNET_CONSTANTS_TRANSPORT_SIZE_OUTBOUND_MESSAGE' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:237: warning: argument 'filename' from the argument list of GNUNET_CONTAINER_bloomfilter_load has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:237: warning: argument 'size' from the argument list of GNUNET_CONTAINER_bloomfilter_load has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:237: warning: argument 'k' from the argument list of GNUNET_CONTAINER_bloomfilter_load has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:257: warning: argument 'data' from the argument list of GNUNET_CONTAINER_bloomfilter_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:257: warning: argument 'size' from the argument list of GNUNET_CONTAINER_bloomfilter_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:257: warning: argument 'k' from the argument list of GNUNET_CONTAINER_bloomfilter_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:272: warning: argument 'data' from the argument list of GNUNET_CONTAINER_bloomfilter_get_raw_data has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:272: warning: argument 'size' from the argument list of GNUNET_CONTAINER_bloomfilter_get_raw_data has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:287: warning: argument 'bf' from the argument list of GNUNET_CONTAINER_bloomfilter_test has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:287: warning: argument 'e' from the argument list of GNUNET_CONTAINER_bloomfilter_test has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:300: warning: argument 'bf' from the argument list of GNUNET_CONTAINER_bloomfilter_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:300: warning: argument 'e' from the argument list of GNUNET_CONTAINER_bloomfilter_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:312: warning: argument 'bf' from the argument list of GNUNET_CONTAINER_bloomfilter_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:312: warning: argument 'e' from the argument list of GNUNET_CONTAINER_bloomfilter_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:324: warning: argument 'bf' from the argument list of GNUNET_CONTAINER_bloomfilter_copy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:337: warning: argument 'bf' from the argument list of GNUNET_CONTAINER_bloomfilter_free has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:359: warning: argument 'bf' from the argument list of GNUNET_CONTAINER_bloomfilter_get_size has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:370: warning: argument 'bf' from the argument list of GNUNET_CONTAINER_bloomfilter_clear has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:386: warning: argument 'bf' from the argument list of GNUNET_CONTAINER_bloomfilter_or has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:386: warning: argument 'data' from the argument list of GNUNET_CONTAINER_bloomfilter_or has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:386: warning: argument 'size' from the argument list of GNUNET_CONTAINER_bloomfilter_or has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:402: warning: argument 'bf' from the argument list of GNUNET_CONTAINER_bloomfilter_or2 has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:402: warning: argument 'to_or' from the argument list of GNUNET_CONTAINER_bloomfilter_or2 has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:420: warning: argument 'bf' from the argument list of GNUNET_CONTAINER_bloomfilter_resize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:420: warning: argument 'iterator' from the argument list of GNUNET_CONTAINER_bloomfilter_resize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:420: warning: argument 'iterator_cls' from the argument list of GNUNET_CONTAINER_bloomfilter_resize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:420: warning: argument 'size' from the argument list of GNUNET_CONTAINER_bloomfilter_resize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:420: warning: argument 'k' from the argument list of GNUNET_CONTAINER_bloomfilter_resize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:454: warning: argument 'md' from the argument list of GNUNET_CONTAINER_meta_data_duplicate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:465: warning: argument 'md' from the argument list of GNUNET_CONTAINER_meta_data_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:480: warning: argument 'md1' from the argument list of GNUNET_CONTAINER_meta_data_test_equal has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:480: warning: argument 'md2' from the argument list of GNUNET_CONTAINER_meta_data_test_equal has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:504: warning: argument 'md' from the argument list of GNUNET_CONTAINER_meta_data_insert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:504: warning: argument 'plugin_name' from the argument list of GNUNET_CONTAINER_meta_data_insert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:504: warning: argument 'type' from the argument list of GNUNET_CONTAINER_meta_data_insert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:504: warning: argument 'format' from the argument list of GNUNET_CONTAINER_meta_data_insert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:504: warning: argument 'data_mime_type' from the argument list of GNUNET_CONTAINER_meta_data_insert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:504: warning: argument 'data' from the argument list of GNUNET_CONTAINER_meta_data_insert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:504: warning: argument 'data_size' from the argument list of GNUNET_CONTAINER_meta_data_insert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:522: warning: argument 'md' from the argument list of GNUNET_CONTAINER_meta_data_merge has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:522: warning: argument 'in' from the argument list of GNUNET_CONTAINER_meta_data_merge has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:538: warning: argument 'md' from the argument list of GNUNET_CONTAINER_meta_data_delete has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:538: warning: argument 'type' from the argument list of GNUNET_CONTAINER_meta_data_delete has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:538: warning: argument 'data' from the argument list of GNUNET_CONTAINER_meta_data_delete has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:538: warning: argument 'data_size' from the argument list of GNUNET_CONTAINER_meta_data_delete has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:551: warning: argument 'md' from the argument list of GNUNET_CONTAINER_meta_data_clear has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:562: warning: argument 'md' from the argument list of GNUNET_CONTAINER_meta_data_add_publication_date has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:577: warning: argument 'md' from the argument list of GNUNET_CONTAINER_meta_data_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:577: warning: argument 'iter' from the argument list of GNUNET_CONTAINER_meta_data_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:577: warning: argument 'iter_cls' from the argument list of GNUNET_CONTAINER_meta_data_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:594: warning: argument 'md' from the argument list of GNUNET_CONTAINER_meta_data_get_by_type has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:594: warning: argument 'type' from the argument list of GNUNET_CONTAINER_meta_data_get_by_type has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:612: warning: argument 'md' from the argument list of GNUNET_CONTAINER_meta_data_get_first_by_types has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:627: warning: argument 'md' from the argument list of GNUNET_CONTAINER_meta_data_get_thumbnail has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:627: warning: argument 'thumb' from the argument list of GNUNET_CONTAINER_meta_data_get_thumbnail has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:675: warning: argument 'md' from the argument list of GNUNET_CONTAINER_meta_data_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:675: warning: argument 'target' from the argument list of GNUNET_CONTAINER_meta_data_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:675: warning: argument 'max' from the argument list of GNUNET_CONTAINER_meta_data_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:675: warning: argument 'opt' from the argument list of GNUNET_CONTAINER_meta_data_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:690: warning: argument 'md' from the argument list of GNUNET_CONTAINER_meta_data_get_serialized_size has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:704: warning: argument 'input' from the argument list of GNUNET_CONTAINER_meta_data_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:704: warning: argument 'size' from the argument list of GNUNET_CONTAINER_meta_data_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:796: warning: argument 'len' from the argument list of GNUNET_CONTAINER_multihashmap_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:796: warning: argument 'do_not_copy_keys' from the argument list of GNUNET_CONTAINER_multihashmap_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:808: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:824: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:824: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multihashmap_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:842: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:842: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multihashmap_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:842: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multihashmap_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:856: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap_remove_all has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:856: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multihashmap_remove_all has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:884: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap_contains has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:884: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multihashmap_contains has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:901: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap_contains_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:901: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multihashmap_contains_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:901: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multihashmap_contains_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:921: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:921: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multihashmap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:921: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multihashmap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:921: warning: argument 'opt' from the argument list of GNUNET_CONTAINER_multihashmap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:935: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap_size has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:950: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:950: warning: argument 'it' from the argument list of GNUNET_CONTAINER_multihashmap_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:950: warning: argument 'it_cls' from the argument list of GNUNET_CONTAINER_multihashmap_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:970: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap_iterator_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:990: warning: argument 'iter' from the argument list of GNUNET_CONTAINER_multihashmap_iterator_next has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:990: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multihashmap_iterator_next has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:990: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multihashmap_iterator_next has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1003: warning: argument 'iter' from the argument list of GNUNET_CONTAINER_multihashmap_iterator_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1019: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1019: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multihashmap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1019: warning: argument 'it' from the argument list of GNUNET_CONTAINER_multihashmap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1019: warning: argument 'it_cls' from the argument list of GNUNET_CONTAINER_multihashmap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1086: warning: argument 'len' from the argument list of GNUNET_CONTAINER_multipeermap_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1086: warning: argument 'do_not_copy_keys' from the argument list of GNUNET_CONTAINER_multipeermap_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1097: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multipeermap_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1113: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multipeermap_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1113: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multipeermap_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1131: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multipeermap_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1131: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multipeermap_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1131: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multipeermap_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1145: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multipeermap_remove_all has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1145: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multipeermap_remove_all has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1161: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multipeermap_contains has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1161: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multipeermap_contains has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1178: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multipeermap_contains_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1178: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multipeermap_contains_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1178: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multipeermap_contains_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1198: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multipeermap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1198: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multipeermap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1198: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multipeermap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1198: warning: argument 'opt' from the argument list of GNUNET_CONTAINER_multipeermap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1213: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multipeermap_size has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1228: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multipeermap_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1228: warning: argument 'it' from the argument list of GNUNET_CONTAINER_multipeermap_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1228: warning: argument 'it_cls' from the argument list of GNUNET_CONTAINER_multipeermap_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1249: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multipeermap_iterator_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1269: warning: argument 'iter' from the argument list of GNUNET_CONTAINER_multipeermap_iterator_next has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1269: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multipeermap_iterator_next has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1269: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multipeermap_iterator_next has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1282: warning: argument 'iter' from the argument list of GNUNET_CONTAINER_multipeermap_iterator_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1298: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multipeermap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1298: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multipeermap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1298: warning: argument 'it' from the argument list of GNUNET_CONTAINER_multipeermap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1298: warning: argument 'it_cls' from the argument list of GNUNET_CONTAINER_multipeermap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1365: warning: argument 'len' from the argument list of GNUNET_CONTAINER_multishortmap_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1365: warning: argument 'do_not_copy_keys' from the argument list of GNUNET_CONTAINER_multishortmap_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1376: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multishortmap_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1392: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multishortmap_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1392: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multishortmap_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1410: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multishortmap_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1410: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multishortmap_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1410: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multishortmap_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1425: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multishortmap_remove_all has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1425: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multishortmap_remove_all has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1441: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multishortmap_contains has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1441: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multishortmap_contains has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1458: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multishortmap_contains_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1458: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multishortmap_contains_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1458: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multishortmap_contains_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1478: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multishortmap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1478: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multishortmap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1478: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multishortmap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1478: warning: argument 'opt' from the argument list of GNUNET_CONTAINER_multishortmap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1493: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multishortmap_size has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1508: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multishortmap_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1508: warning: argument 'it' from the argument list of GNUNET_CONTAINER_multishortmap_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1508: warning: argument 'it_cls' from the argument list of GNUNET_CONTAINER_multishortmap_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1531: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multishortmap_iterator_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1551: warning: argument 'iter' from the argument list of GNUNET_CONTAINER_multishortmap_iterator_next has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1551: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multishortmap_iterator_next has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1551: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multishortmap_iterator_next has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1564: warning: argument 'iter' from the argument list of GNUNET_CONTAINER_multishortmap_iterator_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1580: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multishortmap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1580: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multishortmap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1580: warning: argument 'it' from the argument list of GNUNET_CONTAINER_multishortmap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1580: warning: argument 'it_cls' from the argument list of GNUNET_CONTAINER_multishortmap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1648: warning: argument 'len' from the argument list of GNUNET_CONTAINER_multiuuidmap_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1648: warning: argument 'do_not_copy_keys' from the argument list of GNUNET_CONTAINER_multiuuidmap_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1659: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multiuuidmap_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1675: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multiuuidmap_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1675: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multiuuidmap_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1693: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multiuuidmap_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1693: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multiuuidmap_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1693: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multiuuidmap_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1707: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multiuuidmap_remove_all has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1707: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multiuuidmap_remove_all has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1723: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multiuuidmap_contains has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1723: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multiuuidmap_contains has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1740: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multiuuidmap_contains_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1740: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multiuuidmap_contains_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1740: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multiuuidmap_contains_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1760: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multiuuidmap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1760: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multiuuidmap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1760: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multiuuidmap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1760: warning: argument 'opt' from the argument list of GNUNET_CONTAINER_multiuuidmap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1775: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multiuuidmap_size has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1790: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multiuuidmap_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1790: warning: argument 'it' from the argument list of GNUNET_CONTAINER_multiuuidmap_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1790: warning: argument 'it_cls' from the argument list of GNUNET_CONTAINER_multiuuidmap_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1813: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multiuuidmap_iterator_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1833: warning: argument 'iter' from the argument list of GNUNET_CONTAINER_multiuuidmap_iterator_next has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1833: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multiuuidmap_iterator_next has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1833: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multiuuidmap_iterator_next has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1846: warning: argument 'iter' from the argument list of GNUNET_CONTAINER_multiuuidmap_iterator_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1862: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multiuuidmap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1862: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multiuuidmap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1862: warning: argument 'it' from the argument list of GNUNET_CONTAINER_multiuuidmap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1862: warning: argument 'it_cls' from the argument list of GNUNET_CONTAINER_multiuuidmap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1928: warning: argument 'len' from the argument list of GNUNET_CONTAINER_multihashmap32_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1939: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap32_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1951: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap32_size has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1967: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap32_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1967: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multihashmap32_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1983: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap32_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1983: warning: argument 'it' from the argument list of GNUNET_CONTAINER_multihashmap32_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1983: warning: argument 'it_cls' from the argument list of GNUNET_CONTAINER_multihashmap32_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2002: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap32_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2002: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multihashmap32_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2002: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multihashmap32_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2018: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap32_remove_all has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2018: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multihashmap32_remove_all has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2034: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap32_contains has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2034: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multihashmap32_contains has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2051: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap32_contains_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2051: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multihashmap32_contains_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2051: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multihashmap32_contains_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2071: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap32_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2071: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multihashmap32_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2071: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multihashmap32_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2071: warning: argument 'opt' from the argument list of GNUNET_CONTAINER_multihashmap32_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2090: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap32_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2090: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multihashmap32_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2090: warning: argument 'it' from the argument list of GNUNET_CONTAINER_multihashmap32_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2090: warning: argument 'it_cls' from the argument list of GNUNET_CONTAINER_multihashmap32_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2110: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap32_iterator_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2141: warning: argument 'iter' from the argument list of GNUNET_CONTAINER_multihashmap32_iterator_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2541: warning: argument 'order' from the argument list of GNUNET_CONTAINER_heap_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2552: warning: argument 'heap' from the argument list of GNUNET_CONTAINER_heap_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2563: warning: argument 'heap' from the argument list of GNUNET_CONTAINER_heap_peek has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2589: warning: argument 'heap' from the argument list of GNUNET_CONTAINER_heap_get_size has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2600: warning: argument 'node' from the argument list of GNUNET_CONTAINER_heap_node_get_cost has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2632: warning: argument 'heap' from the argument list of GNUNET_CONTAINER_heap_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2632: warning: argument 'iterator' from the argument list of GNUNET_CONTAINER_heap_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2632: warning: argument 'iterator_cls' from the argument list of GNUNET_CONTAINER_heap_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2649: warning: argument 'heap' from the argument list of GNUNET_CONTAINER_heap_walk_get_next has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2662: warning: argument 'heap' from the argument list of GNUNET_CONTAINER_heap_insert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2662: warning: argument 'element' from the argument list of GNUNET_CONTAINER_heap_insert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2662: warning: argument 'cost' from the argument list of GNUNET_CONTAINER_heap_insert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2675: warning: argument 'heap' from the argument list of GNUNET_CONTAINER_heap_remove_root has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2686: warning: argument 'node' from the argument list of GNUNET_CONTAINER_heap_remove_node has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2697: warning: argument 'node' from the argument list of GNUNET_CONTAINER_heap_update_cost has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2697: warning: argument 'new_cost' from the argument list of GNUNET_CONTAINER_heap_update_cost has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:218: warning: argument 'cfg' from the argument list of GNUNET_CONVERSATION_phone_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:218: warning: argument 'ego' from the argument list of GNUNET_CONVERSATION_phone_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:218: warning: argument 'event_handler' from the argument list of GNUNET_CONVERSATION_phone_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:218: warning: argument 'event_handler_cls' from the argument list of GNUNET_CONVERSATION_phone_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:249: warning: argument 'caller' from the argument list of GNUNET_CONVERSATION_caller_pick_up has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:249: warning: argument 'event_handler' from the argument list of GNUNET_CONVERSATION_caller_pick_up has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:249: warning: argument 'event_handler_cls' from the argument list of GNUNET_CONVERSATION_caller_pick_up has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:249: warning: argument 'speaker' from the argument list of GNUNET_CONVERSATION_caller_pick_up has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:249: warning: argument 'mic' from the argument list of GNUNET_CONVERSATION_caller_pick_up has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:288: warning: argument 'caller' from the argument list of GNUNET_CONVERSATION_caller_hang_up has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:392: warning: argument 'cfg' from the argument list of GNUNET_CONVERSATION_call_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:392: warning: argument 'caller_id' from the argument list of GNUNET_CONVERSATION_call_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:392: warning: argument 'callee' from the argument list of GNUNET_CONVERSATION_call_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:392: warning: argument 'speaker' from the argument list of GNUNET_CONVERSATION_call_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:392: warning: argument 'mic' from the argument list of GNUNET_CONVERSATION_call_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:392: warning: argument 'event_handler' from the argument list of GNUNET_CONVERSATION_call_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:392: warning: argument 'event_handler_cls' from the argument list of GNUNET_CONVERSATION_call_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:420: warning: argument 'call' from the argument list of GNUNET_CONVERSATION_call_resume has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:420: warning: argument 'speaker' from the argument list of GNUNET_CONVERSATION_call_resume has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:420: warning: argument 'mic' from the argument list of GNUNET_CONVERSATION_call_resume has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_core_service.h:247: warning: argument 'cfg' from the argument list of GNUNET_CORE_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_core_service.h:247: warning: argument 'cls' from the argument list of GNUNET_CORE_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_core_service.h:247: warning: argument 'init' from the argument list of GNUNET_CORE_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_core_service.h:247: warning: argument 'connects' from the argument list of GNUNET_CORE_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_core_service.h:247: warning: argument 'disconnects' from the argument list of GNUNET_CORE_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_core_service.h:247: warning: argument 'handlers' from the argument list of GNUNET_CORE_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_core_service.h:272: warning: argument 'h' from the argument list of GNUNET_CORE_get_mq has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_core_service.h:272: warning: argument 'pid' from the argument list of GNUNET_CORE_get_mq has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2052: warning: argument 'priv' of command @param is not found in the argument list of GNUNET_CRYPTO_eddsa_verify(purp, ps, sig, pub) -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2065: warning: The following parameter of GNUNET_CRYPTO_eddsa_verify(purp, ps, sig, pub) is not documented: - parameter 'pub' -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2104: warning: argument 'priv' of command @param is not found in the argument list of GNUNET_CRYPTO_ecdsa_verify(purp, ps, sig, pub) -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2117: warning: The following parameter of GNUNET_CRYPTO_ecdsa_verify(purp, ps, sig, pub) is not documented: - parameter 'pub' -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2156: warning: argument 'priv' of command @param is not found in the argument list of GNUNET_CRYPTO_edx25519_verify(purp, ps, sig, pub) -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2169: warning: The following parameter of GNUNET_CRYPTO_edx25519_verify(purp, ps, sig, pub) is not documented: - parameter 'pub' -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:584: warning: argument 'seed' from the argument list of GNUNET_CRYPTO_seed_weak_random has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:608: warning: argument 'sum' from the argument list of GNUNET_CRYPTO_crc16_step has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:608: warning: argument 'buf' from the argument list of GNUNET_CRYPTO_crc16_step has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:608: warning: argument 'len' from the argument list of GNUNET_CRYPTO_crc16_step has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:618: warning: argument 'sum' from the argument list of GNUNET_CRYPTO_crc16_finish has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:630: warning: argument 'buf' from the argument list of GNUNET_CRYPTO_crc16_n has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:630: warning: argument 'len' from the argument list of GNUNET_CRYPTO_crc16_n has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:643: warning: argument 'buf' from the argument list of GNUNET_CRYPTO_crc32_n has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:643: warning: argument 'len' from the argument list of GNUNET_CRYPTO_crc32_n has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:695: warning: argument 'mode' from the argument list of GNUNET_CRYPTO_random_u32 has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:695: warning: argument 'i' from the argument list of GNUNET_CRYPTO_random_u32 has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:707: warning: argument 'mode' from the argument list of GNUNET_CRYPTO_random_u64 has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:707: warning: argument 'max' from the argument list of GNUNET_CRYPTO_random_u64 has multiple @param documentation sections -/home/william/Git/gnunet/src/util/crypto_random.c:243: warning: explicit link request to 'GNUNET_RANDOM_QUALITY_STRONG' could not be resolved -/home/william/Git/gnunet/src/util/crypto_random.c:244: warning: explicit link request to 'GNUNET_RANDOM_QUALITY_WEAK' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:720: warning: argument 'mode' from the argument list of GNUNET_CRYPTO_random_permute has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:720: warning: argument 'n' from the argument list of GNUNET_CRYPTO_random_permute has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:730: warning: argument 'key' from the argument list of GNUNET_CRYPTO_symmetric_create_session_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:746: warning: argument 'block' from the argument list of GNUNET_CRYPTO_symmetric_encrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:746: warning: argument 'size' from the argument list of GNUNET_CRYPTO_symmetric_encrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:746: warning: argument 'sessionkey' from the argument list of GNUNET_CRYPTO_symmetric_encrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:746: warning: argument 'iv' from the argument list of GNUNET_CRYPTO_symmetric_encrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:766: warning: argument 'block' from the argument list of GNUNET_CRYPTO_symmetric_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:766: warning: argument 'size' from the argument list of GNUNET_CRYPTO_symmetric_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:766: warning: argument 'sessionkey' from the argument list of GNUNET_CRYPTO_symmetric_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:766: warning: argument 'iv' from the argument list of GNUNET_CRYPTO_symmetric_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:766: warning: argument 'result' from the argument list of GNUNET_CRYPTO_symmetric_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:801: warning: argument 'iv' from the argument list of GNUNET_CRYPTO_symmetric_derive_iv_v has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:801: warning: argument 'skey' from the argument list of GNUNET_CRYPTO_symmetric_derive_iv_v has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:801: warning: argument 'salt' from the argument list of GNUNET_CRYPTO_symmetric_derive_iv_v has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:801: warning: argument 'salt_len' from the argument list of GNUNET_CRYPTO_symmetric_derive_iv_v has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:801: warning: argument 'argp' from the argument list of GNUNET_CRYPTO_symmetric_derive_iv_v has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:897: warning: argument 'salt' from the argument list of GNUNET_CRYPTO_pow_hash has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:897: warning: argument 'buf' from the argument list of GNUNET_CRYPTO_pow_hash has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:897: warning: argument 'buf_len' from the argument list of GNUNET_CRYPTO_pow_hash has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:897: warning: argument 'result' from the argument list of GNUNET_CRYPTO_pow_hash has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1027: warning: argument 'priority' from the argument list of GNUNET_CRYPTO_hash_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1027: warning: argument 'filename' from the argument list of GNUNET_CRYPTO_hash_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1027: warning: argument 'blocksize' from the argument list of GNUNET_CRYPTO_hash_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1027: warning: argument 'callback' from the argument list of GNUNET_CRYPTO_hash_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1027: warning: argument 'callback_cls' from the argument list of GNUNET_CRYPTO_hash_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1424: warning: argument 'priv' of command @param is not found in the argument list of GNUNET_CRYPTO_eddsa_private_key_from_string(const char *enc, size_t enclen, struct GNUNET_CRYPTO_EddsaPrivateKey *pub) -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1403: warning: The following parameter of GNUNET_CRYPTO_eddsa_private_key_from_string(const char *enc, size_t enclen, struct GNUNET_CRYPTO_EddsaPrivateKey *pub) is not documented: - parameter 'pub' -/home/william/Git/gnunet/src/util/crypto_ecc_setup.c:1: warning: argument 'filename' from the argument list of GNUNET_CRYPTO_eddsa_key_from_file has multiple @param documentation sections -/home/william/Git/gnunet/src/util/crypto_ecc_setup.c:1: warning: argument 'do_create' from the argument list of GNUNET_CRYPTO_eddsa_key_from_file has multiple @param documentation sections -/home/william/Git/gnunet/src/util/crypto_ecc_setup.c:1: warning: argument 'pkey' from the argument list of GNUNET_CRYPTO_eddsa_key_from_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1510: warning: argument 'cfg' from the argument list of GNUNET_CRYPTO_eddsa_key_create_from_configuration has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1639: warning: argument 'cfg' from the argument list of GNUNET_CRYPTO_get_peer_identity has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1639: warning: argument 'dst' from the argument list of GNUNET_CRYPTO_get_peer_identity has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1683: warning: argument 'dlc' of command @param is not found in the argument list of GNUNET_CRYPTO_ecc_dlog(struct GNUNET_CRYPTO_EccDlogContext *edc, const struct GNUNET_CRYPTO_EccPoint *input) -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1691: warning: The following parameter of GNUNET_CRYPTO_ecc_dlog(struct GNUNET_CRYPTO_EccDlogContext *edc, const struct GNUNET_CRYPTO_EccPoint *input) is not documented: - parameter 'edc' -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1823: warning: explicit link request to 'GNUNET_CRRYPTO_ecdh_eddsa' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1839: warning: explicit link request to 'GNUNET_CRRYPTO_ecdh_ecdsa' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1855: warning: explicit link request to 'GNUNET_CRRYPTO_eddsa_ecdh' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1870: warning: explicit link request to 'GNUNET_CRRYPTO_ecdsa_ecdh' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1977: warning: argument 'purp' of command @param is not found in the argument list of GNUNET_CRYPTO_edx25519_sign_(const struct GNUNET_CRYPTO_Edx25519PrivateKey *priv, const struct GNUNET_CRYPTO_EccSignaturePurpose *purpose, struct GNUNET_CRYPTO_Edx25519Signature *sig) -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1802: warning: argument 'priv' from the argument list of GNUNET_CRYPTO_edx25519_sign_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1802: warning: argument 'sig' from the argument list of GNUNET_CRYPTO_edx25519_sign_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2221: warning: argument 'purp' of command @param is not found in the argument list of GNUNET_CRYPTO_ecdsa_sign_derived(const struct GNUNET_CRYPTO_EcdsaPrivateKey *pkey, const char *label, const char *context, const struct GNUNET_CRYPTO_EccSignaturePurpose *purpose, struct GNUNET_CRYPTO_EcdsaSignature *sig) -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2213: warning: The following parameter of GNUNET_CRYPTO_ecdsa_sign_derived(const struct GNUNET_CRYPTO_EcdsaPrivateKey *pkey, const char *label, const char *context, const struct GNUNET_CRYPTO_EccSignaturePurpose *purpose, struct GNUNET_CRYPTO_EcdsaSignature *sig) is not documented: - parameter 'purpose' -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2285: warning: argument 'purp' of command @param is not found in the argument list of GNUNET_CRYPTO_eddsa_sign_derived(const struct GNUNET_CRYPTO_EddsaPrivateKey *pkey, const char *label, const char *context, const struct GNUNET_CRYPTO_EccSignaturePurpose *purpose, struct GNUNET_CRYPTO_EddsaSignature *sig) -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2276: warning: The following parameter of GNUNET_CRYPTO_eddsa_sign_derived(const struct GNUNET_CRYPTO_EddsaPrivateKey *pkey, const char *label, const char *context, const struct GNUNET_CRYPTO_EccSignaturePurpose *purpose, struct GNUNET_CRYPTO_EddsaSignature *sig) is not documented: - parameter 'purpose' -/home/william/Git/gnunet/src/util/crypto_paillier.c:331: warning: Found unknown command '\private_key' -/home/william/Git/gnunet/src/util/crypto_paillier.c:336: warning: Found unknown command '\private_key' -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2423: warning: argument 'private_key' from the argument list of GNUNET_CRYPTO_paillier_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2423: warning: argument 'public_key' from the argument list of GNUNET_CRYPTO_paillier_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2423: warning: argument 'ciphertext' from the argument list of GNUNET_CRYPTO_paillier_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2423: warning: argument 'm' from the argument list of GNUNET_CRYPTO_paillier_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2444: warning: argument 'public_key' from the argument list of GNUNET_CRYPTO_paillier_hom_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2444: warning: argument 'c1' from the argument list of GNUNET_CRYPTO_paillier_hom_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2444: warning: argument 'c2' from the argument list of GNUNET_CRYPTO_paillier_hom_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2444: warning: argument 'result' from the argument list of GNUNET_CRYPTO_paillier_hom_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2673: warning: argument 'bkey' of command @param is not found in the argument list of GNUNET_CRYPTO_rsa_blind(const struct GNUNET_HashCode *hash, const struct GNUNET_CRYPTO_RsaBlindingKeySecret *bks, struct GNUNET_CRYPTO_RsaPublicKey *pkey, void **buf, size_t *buf_size) -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2684: warning: The following parameter of GNUNET_CRYPTO_rsa_blind(const struct GNUNET_HashCode *hash, const struct GNUNET_CRYPTO_RsaBlindingKeySecret *bks, struct GNUNET_CRYPTO_RsaPublicKey *pkey, void **buf, size_t *buf_size) is not documented: - parameter 'bks' -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2763: warning: explicit link request to 'GNUNET_CRYPTO_rsa_sign()' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_curl_lib.h:231: warning: Found unknown command '\eh' -/home/william/Git/gnunet/src/include/gnunet_curl_lib.h:253: warning: Found unknown command '\eh' -/home/william/Git/gnunet/src/include/gnunet_curl_lib.h:311: warning: Found unknown command '\eh' -/home/william/Git/gnunet/src/include/gnunet_curl_lib.h:323: warning: argument 'max_reply_size' of command @param is not found in the argument list of GNUNET_CURL_job_add_raw(struct GNUNET_CURL_Context *ctx, CURL *eh, const struct curl_slist *job_headers, GNUNET_CURL_RawJobCompletionCallback jcc, void *jcc_cls) -/home/william/Git/gnunet/src/include/gnunet_curl_lib.h:334: warning: Found unknown command '\eh' -/home/william/Git/gnunet/src/include/gnunet_curl_lib.h:392: warning: The following parameters of GNUNET_CURL_gnunet_rc_create_with_parser(struct GNUNET_CURL_Context *ctx, GNUNET_CURL_RawParser rp, GNUNET_CURL_ResponseCleaner rc) are not documented: - parameter 'rp' - parameter 'rc' -/home/william/Git/gnunet/src/include/gnunet_datacache_lib.h:109: warning: argument 'how' of command @param is not found in the argument list of GNUNET_DATACACHE_put(struct GNUNET_DATACACHE_Handle *h, const struct GNUNET_HashCode *key, uint32_t xor_distance, size_t data_size, const char *data, enum GNUNET_BLOCK_Type type, struct GNUNET_TIME_Absolute discard_time, unsigned int path_info_len, const struct GNUNET_DHT_PathElement *path_info) -/home/william/Git/gnunet/src/include/gnunet_datacache_lib.h:80: warning: The following parameter of GNUNET_DATACACHE_put(struct GNUNET_DATACACHE_Handle *h, const struct GNUNET_HashCode *key, uint32_t xor_distance, size_t data_size, const char *data, enum GNUNET_BLOCK_Type type, struct GNUNET_TIME_Absolute discard_time, unsigned int path_info_len, const struct GNUNET_DHT_PathElement *path_info) is not documented: - parameter 'xor_distance' -/home/william/Git/gnunet/src/include/gnunet_datastore_plugin.h:139: warning: explicit link request to 'GNUNET_SYSERROR' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_datastore_plugin.h:239: warning: explicit link request to 'GNUNET_SYSERROR' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:163: warning: argument 'h' from the argument list of GNUNET_DATASTORE_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:163: warning: argument 'rid' from the argument list of GNUNET_DATASTORE_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:163: warning: argument 'key' from the argument list of GNUNET_DATASTORE_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:163: warning: argument 'size' from the argument list of GNUNET_DATASTORE_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:163: warning: argument 'data' from the argument list of GNUNET_DATASTORE_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:163: warning: argument 'type' from the argument list of GNUNET_DATASTORE_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:163: warning: argument 'priority' from the argument list of GNUNET_DATASTORE_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:163: warning: argument 'anonymity' from the argument list of GNUNET_DATASTORE_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:163: warning: argument 'replication' from the argument list of GNUNET_DATASTORE_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:163: warning: argument 'expiration' from the argument list of GNUNET_DATASTORE_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:163: warning: argument 'queue_priority' from the argument list of GNUNET_DATASTORE_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:163: warning: argument 'max_queue_size' from the argument list of GNUNET_DATASTORE_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:163: warning: argument 'cont' from the argument list of GNUNET_DATASTORE_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:163: warning: argument 'cont_cls' from the argument list of GNUNET_DATASTORE_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:200: warning: argument 'queue_priority' from the argument list of GNUNET_DATASTORE_release_reserve has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:200: warning: argument 'max_queue_size' from the argument list of GNUNET_DATASTORE_release_reserve has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:227: warning: argument 'h' from the argument list of GNUNET_DATASTORE_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:227: warning: argument 'key' from the argument list of GNUNET_DATASTORE_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:227: warning: argument 'size' from the argument list of GNUNET_DATASTORE_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:227: warning: argument 'data' from the argument list of GNUNET_DATASTORE_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:227: warning: argument 'queue_priority' from the argument list of GNUNET_DATASTORE_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:227: warning: argument 'max_queue_size' from the argument list of GNUNET_DATASTORE_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:227: warning: argument 'cont' from the argument list of GNUNET_DATASTORE_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:227: warning: argument 'cont_cls' from the argument list of GNUNET_DATASTORE_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:284: warning: argument 'h' from the argument list of GNUNET_DATASTORE_get_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:284: warning: argument 'next_uid' from the argument list of GNUNET_DATASTORE_get_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:284: warning: argument 'random' from the argument list of GNUNET_DATASTORE_get_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:284: warning: argument 'key' from the argument list of GNUNET_DATASTORE_get_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:284: warning: argument 'type' from the argument list of GNUNET_DATASTORE_get_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:284: warning: argument 'queue_priority' from the argument list of GNUNET_DATASTORE_get_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:284: warning: argument 'max_queue_size' from the argument list of GNUNET_DATASTORE_get_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:284: warning: argument 'proc' from the argument list of GNUNET_DATASTORE_get_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:284: warning: argument 'proc_cls' from the argument list of GNUNET_DATASTORE_get_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:312: warning: argument 'h' from the argument list of GNUNET_DATASTORE_get_zero_anonymity has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:312: warning: argument 'next_uid' from the argument list of GNUNET_DATASTORE_get_zero_anonymity has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:312: warning: argument 'queue_priority' from the argument list of GNUNET_DATASTORE_get_zero_anonymity has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:312: warning: argument 'max_queue_size' from the argument list of GNUNET_DATASTORE_get_zero_anonymity has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:312: warning: argument 'type' from the argument list of GNUNET_DATASTORE_get_zero_anonymity has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:312: warning: argument 'proc' from the argument list of GNUNET_DATASTORE_get_zero_anonymity has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:312: warning: argument 'proc_cls' from the argument list of GNUNET_DATASTORE_get_zero_anonymity has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_dht_service.h:297: warning: explicit link request to 'GNUNET_BLOCK_evaluate' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_disk_lib.h:673: warning: argument 'glob_patterb' of command @param is not found in the argument list of GNUNET_DISK_glob(const char *glob_pattern, GNUNET_FileNameCallback callback, void *callback_cls) -/home/william/Git/gnunet/src/include/gnunet_disk_lib.h:683: warning: The following parameter of GNUNET_DISK_glob(const char *glob_pattern, GNUNET_FileNameCallback callback, void *callback_cls) is not documented: - parameter 'glob_pattern' -/home/william/Git/gnunet/src/include/gnunet_dns_service.h:140: warning: argument 'rh' from the argument list of GNUNET_DNS_request_forward has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_dns_service.h:164: warning: argument 'rh' from the argument list of GNUNET_DNS_request_answer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_dns_service.h:164: warning: argument 'reply_length' from the argument list of GNUNET_DNS_request_answer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_dns_service.h:164: warning: argument 'reply' from the argument list of GNUNET_DNS_request_answer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_dnsparser_lib.h:581: warning: argument 'name' from the argument list of GNUNET_DNSPARSER_check_name has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_dnsparser_lib.h:718: warning: argument 'dst' from the argument list of GNUNET_DNSPARSER_builder_add_cert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_dnsparser_lib.h:718: warning: argument 'dst_len' from the argument list of GNUNET_DNSPARSER_builder_add_cert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_dnsparser_lib.h:718: warning: argument 'off' from the argument list of GNUNET_DNSPARSER_builder_add_cert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_dnsparser_lib.h:718: warning: argument 'cert' from the argument list of GNUNET_DNSPARSER_builder_add_cert has multiple @param documentation sections -/home/william/Git/gnunet/src/util/dnsstub.c:697: warning: argument 'retry_frequ' of command @param is not found in the argument list of GNUNET_DNSSTUB_set_retry(struct GNUNET_DNSSTUB_Context *ctx, struct GNUNET_TIME_Relative retry_freq) -/home/william/Git/gnunet/src/include/gnunet_dnsstub_lib.h:95: warning: argument 'ctx' from the argument list of GNUNET_DNSSTUB_set_retry has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_dnsstub_lib.h:134: warning: argument 'ctx' from the argument list of GNUNET_DNSSTUB_resolve has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_dnsstub_lib.h:134: warning: argument 'request' from the argument list of GNUNET_DNSSTUB_resolve has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_dnsstub_lib.h:134: warning: argument 'request_len' from the argument list of GNUNET_DNSSTUB_resolve has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_dnsstub_lib.h:134: warning: argument 'rc' from the argument list of GNUNET_DNSSTUB_resolve has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_dnsstub_lib.h:134: warning: argument 'rc_cls' from the argument list of GNUNET_DNSSTUB_resolve has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fragmentation_lib.h:94: warning: argument 'stats' from the argument list of GNUNET_FRAGMENT_context_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fragmentation_lib.h:94: warning: argument 'mtu' from the argument list of GNUNET_FRAGMENT_context_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fragmentation_lib.h:94: warning: argument 'tracker' from the argument list of GNUNET_FRAGMENT_context_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fragmentation_lib.h:94: warning: argument 'msg_delay' from the argument list of GNUNET_FRAGMENT_context_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fragmentation_lib.h:94: warning: argument 'ack_delay' from the argument list of GNUNET_FRAGMENT_context_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fragmentation_lib.h:94: warning: argument 'msg' from the argument list of GNUNET_FRAGMENT_context_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fragmentation_lib.h:94: warning: argument 'proc' from the argument list of GNUNET_FRAGMENT_context_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fragmentation_lib.h:94: warning: argument 'proc_cls' from the argument list of GNUNET_FRAGMENT_context_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:118: warning: argument 'uri' from the argument list of GNUNET_FS_uri_to_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:118: warning: argument 'key' from the argument list of GNUNET_FS_uri_to_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:210: warning: argument 'uri' from the argument list of GNUNET_FS_uri_ksk_get_keywords has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:210: warning: argument 'iterator' from the argument list of GNUNET_FS_uri_ksk_get_keywords has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:210: warning: argument 'iterator_cls' from the argument list of GNUNET_FS_uri_ksk_get_keywords has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:273: warning: argument 'u1' from the argument list of GNUNET_FS_uri_ksk_merge has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:273: warning: argument 'u2' from the argument list of GNUNET_FS_uri_ksk_merge has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:361: warning: argument 'ns' from the argument list of GNUNET_FS_uri_sks_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:361: warning: argument 'id' from the argument list of GNUNET_FS_uri_sks_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:374: warning: argument 'uri' from the argument list of GNUNET_FS_uri_sks_get_namespace has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:374: warning: argument 'pseudonym' from the argument list of GNUNET_FS_uri_sks_get_namespace has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:416: warning: argument 'uri' from the argument list of GNUNET_FS_uri_chk_get_file_size has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:462: warning: argument 'metadata' of command @param is not found in the argument list of GNUNET_FS_GETOPT_METADATA(char shortName, const char *name, const char *argumentHelp, const char *description, struct GNUNET_CONTAINER_MetaData **meta) -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:438: warning: The following parameter of GNUNET_FS_GETOPT_METADATA(char shortName, const char *name, const char *argumentHelp, const char *description, struct GNUNET_CONTAINER_MetaData **meta) is not documented: - parameter 'meta' -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1766: warning: argument 'h' from the argument list of GNUNET_FS_file_information_create_from_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1766: warning: argument 'client_info' from the argument list of GNUNET_FS_file_information_create_from_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1766: warning: argument 'filename' from the argument list of GNUNET_FS_file_information_create_from_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1766: warning: argument 'keywords' from the argument list of GNUNET_FS_file_information_create_from_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1766: warning: argument 'meta' from the argument list of GNUNET_FS_file_information_create_from_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1766: warning: argument 'do_index' from the argument list of GNUNET_FS_file_information_create_from_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1766: warning: argument 'bo' from the argument list of GNUNET_FS_file_information_create_from_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1795: warning: argument 'h' from the argument list of GNUNET_FS_file_information_create_from_data has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1795: warning: argument 'client_info' from the argument list of GNUNET_FS_file_information_create_from_data has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1795: warning: argument 'length' from the argument list of GNUNET_FS_file_information_create_from_data has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1795: warning: argument 'data' from the argument list of GNUNET_FS_file_information_create_from_data has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1795: warning: argument 'keywords' from the argument list of GNUNET_FS_file_information_create_from_data has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1795: warning: argument 'meta' from the argument list of GNUNET_FS_file_information_create_from_data has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1795: warning: argument 'do_index' from the argument list of GNUNET_FS_file_information_create_from_data has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1795: warning: argument 'bo' from the argument list of GNUNET_FS_file_information_create_from_data has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1853: warning: argument 'h' from the argument list of GNUNET_FS_file_information_create_from_reader has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1853: warning: argument 'client_info' from the argument list of GNUNET_FS_file_information_create_from_reader has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1853: warning: argument 'length' from the argument list of GNUNET_FS_file_information_create_from_reader has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1853: warning: argument 'reader' from the argument list of GNUNET_FS_file_information_create_from_reader has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1853: warning: argument 'reader_cls' from the argument list of GNUNET_FS_file_information_create_from_reader has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1853: warning: argument 'keywords' from the argument list of GNUNET_FS_file_information_create_from_reader has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1853: warning: argument 'meta' from the argument list of GNUNET_FS_file_information_create_from_reader has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1853: warning: argument 'do_index' from the argument list of GNUNET_FS_file_information_create_from_reader has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1853: warning: argument 'bo' from the argument list of GNUNET_FS_file_information_create_from_reader has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1880: warning: argument 'h' from the argument list of GNUNET_FS_file_information_create_empty_directory has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1880: warning: argument 'client_info' from the argument list of GNUNET_FS_file_information_create_empty_directory has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1880: warning: argument 'keywords' from the argument list of GNUNET_FS_file_information_create_empty_directory has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1880: warning: argument 'meta' from the argument list of GNUNET_FS_file_information_create_empty_directory has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1880: warning: argument 'bo' from the argument list of GNUNET_FS_file_information_create_empty_directory has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1880: warning: argument 'filename' from the argument list of GNUNET_FS_file_information_create_empty_directory has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1915: warning: argument 'dir' from the argument list of GNUNET_FS_file_information_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1915: warning: argument 'ent' from the argument list of GNUNET_FS_file_information_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2005: warning: argument 'pc' from the argument list of GNUNET_FS_publish_stop has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2042: warning: argument 'h' from the argument list of GNUNET_FS_publish_ksk has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2042: warning: argument 'ksk_uri' from the argument list of GNUNET_FS_publish_ksk has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2042: warning: argument 'meta' from the argument list of GNUNET_FS_publish_ksk has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2042: warning: argument 'uri' from the argument list of GNUNET_FS_publish_ksk has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2042: warning: argument 'bo' from the argument list of GNUNET_FS_publish_ksk has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2042: warning: argument 'options' from the argument list of GNUNET_FS_publish_ksk has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2042: warning: argument 'cont' from the argument list of GNUNET_FS_publish_ksk has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2042: warning: argument 'cont_cls' from the argument list of GNUNET_FS_publish_ksk has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2082: warning: argument 'h' from the argument list of GNUNET_FS_publish_sks has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2082: warning: argument 'ns' from the argument list of GNUNET_FS_publish_sks has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2082: warning: argument 'identifier' from the argument list of GNUNET_FS_publish_sks has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2082: warning: argument 'update' from the argument list of GNUNET_FS_publish_sks has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2082: warning: argument 'meta' from the argument list of GNUNET_FS_publish_sks has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2082: warning: argument 'uri' from the argument list of GNUNET_FS_publish_sks has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2082: warning: argument 'bo' from the argument list of GNUNET_FS_publish_sks has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2082: warning: argument 'options' from the argument list of GNUNET_FS_publish_sks has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2082: warning: argument 'cont' from the argument list of GNUNET_FS_publish_sks has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2082: warning: argument 'cont_cls' from the argument list of GNUNET_FS_publish_sks has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2131: warning: argument 'h' from the argument list of GNUNET_FS_get_indexed_files has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2131: warning: argument 'iterator' from the argument list of GNUNET_FS_get_indexed_files has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2131: warning: argument 'iterator_cls' from the argument list of GNUNET_FS_get_indexed_files has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2209: warning: argument 'h' from the argument list of GNUNET_FS_namespace_list_updateable has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2209: warning: argument 'ns' from the argument list of GNUNET_FS_namespace_list_updateable has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2209: warning: argument 'next_id' from the argument list of GNUNET_FS_namespace_list_updateable has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2209: warning: argument 'ip' from the argument list of GNUNET_FS_namespace_list_updateable has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2209: warning: argument 'ip_cls' from the argument list of GNUNET_FS_namespace_list_updateable has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2378: warning: argument 'h' from the argument list of GNUNET_FS_download_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2378: warning: argument 'uri' from the argument list of GNUNET_FS_download_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2378: warning: argument 'meta' from the argument list of GNUNET_FS_download_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2378: warning: argument 'filename' from the argument list of GNUNET_FS_download_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2378: warning: argument 'tempname' from the argument list of GNUNET_FS_download_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2378: warning: argument 'offset' from the argument list of GNUNET_FS_download_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2378: warning: argument 'length' from the argument list of GNUNET_FS_download_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2378: warning: argument 'anonymity' from the argument list of GNUNET_FS_download_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2378: warning: argument 'options' from the argument list of GNUNET_FS_download_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2378: warning: argument 'cctx' from the argument list of GNUNET_FS_download_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2378: warning: argument 'parent' from the argument list of GNUNET_FS_download_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2422: warning: argument 'h' from the argument list of GNUNET_FS_download_start_from_search has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2422: warning: argument 'sr' from the argument list of GNUNET_FS_download_start_from_search has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2422: warning: argument 'filename' from the argument list of GNUNET_FS_download_start_from_search has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2422: warning: argument 'tempname' from the argument list of GNUNET_FS_download_start_from_search has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2422: warning: argument 'offset' from the argument list of GNUNET_FS_download_start_from_search has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2422: warning: argument 'length' from the argument list of GNUNET_FS_download_start_from_search has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2422: warning: argument 'anonymity' from the argument list of GNUNET_FS_download_start_from_search has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2422: warning: argument 'options' from the argument list of GNUNET_FS_download_start_from_search has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2422: warning: argument 'cctx' from the argument list of GNUNET_FS_download_start_from_search has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2544: warning: argument 'size' from the argument list of GNUNET_FS_directory_list_contents has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2544: warning: argument 'data' from the argument list of GNUNET_FS_directory_list_contents has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2544: warning: argument 'offset' from the argument list of GNUNET_FS_directory_list_contents has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2544: warning: argument 'dep' from the argument list of GNUNET_FS_directory_list_contents has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2544: warning: argument 'dep_cls' from the argument list of GNUNET_FS_directory_list_contents has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2577: warning: argument 'bld' from the argument list of GNUNET_FS_directory_builder_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2577: warning: argument 'uri' from the argument list of GNUNET_FS_directory_builder_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2577: warning: argument 'md' from the argument list of GNUNET_FS_directory_builder_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2577: warning: argument 'data' from the argument list of GNUNET_FS_directory_builder_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2736: warning: argument 'filename' from the argument list of GNUNET_FS_directory_scan_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2736: warning: argument 'disable_extractor' from the argument list of GNUNET_FS_directory_scan_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2736: warning: argument 'ex' from the argument list of GNUNET_FS_directory_scan_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2736: warning: argument 'cb' from the argument list of GNUNET_FS_directory_scan_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2736: warning: argument 'cb_cls' from the argument list of GNUNET_FS_directory_scan_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2762: warning: argument 'ds' from the argument list of GNUNET_FS_directory_scan_get_result has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_getopt_lib.h:170: warning: argument 'val' of command @param is not found in the argument list of GNUNET_GETOPT_option_timetravel(char shortName, const char *name) -/home/william/Git/gnunet/src/include/gnunet_getopt_lib.h:404: warning: argument 'argumentHelp' of command @param is not found in the argument list of GNUNET_GETOPT_option_increment_uint(char shortName, const char *name, const char *description, unsigned int *val) -/home/william/Git/gnunet/src/include/gnunet_gns_service.h:86: warning: argument 'handle' from the argument list of GNUNET_GNS_disconnect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gns_service.h:138: warning: argument 'handle' from the argument list of GNUNET_GNS_lookup has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gns_service.h:138: warning: argument 'name' from the argument list of GNUNET_GNS_lookup has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gns_service.h:138: warning: argument 'zone' from the argument list of GNUNET_GNS_lookup has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gns_service.h:138: warning: argument 'type' from the argument list of GNUNET_GNS_lookup has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gns_service.h:138: warning: argument 'options' from the argument list of GNUNET_GNS_lookup has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gns_service.h:138: warning: argument 'proc' from the argument list of GNUNET_GNS_lookup has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gns_service.h:138: warning: argument 'proc_cls' from the argument list of GNUNET_GNS_lookup has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gns_service.h:213: warning: argument 'handle' from the argument list of GNUNET_GNS_lookup_with_tld has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gns_service.h:213: warning: argument 'name' from the argument list of GNUNET_GNS_lookup_with_tld has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gns_service.h:213: warning: argument 'type' from the argument list of GNUNET_GNS_lookup_with_tld has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gns_service.h:213: warning: argument 'options' from the argument list of GNUNET_GNS_lookup_with_tld has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gns_service.h:213: warning: argument 'proc' from the argument list of GNUNET_GNS_lookup_with_tld has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gns_service.h:213: warning: argument 'proc_cls' from the argument list of GNUNET_GNS_lookup_with_tld has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_json_lib.h:53: warning: argument 'gnsrecord_object' of command @param is not found in the argument list of GNUNET_GNSRECORD_JSON_spec_gnsrecord(struct GNUNET_GNSRECORD_Data **rd, unsigned int *rd_count, char **name) -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_json_lib.h:1: warning: The following parameters of GNUNET_GNSRECORD_JSON_spec_gnsrecord(struct GNUNET_GNSRECORD_Data **rd, unsigned int *rd_count, char **name) are not documented: - parameter 'rd' - parameter 'rd_count' - parameter 'name' -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_json_lib.h:71: warning: The following parameter of GNUNET_GNSRECORD_JSON_from_gnsrecord(const char *rname, const struct GNUNET_GNSRECORD_Data *rd, unsigned int rd_count) is not documented: - parameter 'rd_count' -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:335: warning: argument 'type' from the argument list of GNUNET_GNSRECORD_value_to_string has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:335: warning: argument 'data' from the argument list of GNUNET_GNSRECORD_value_to_string has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:335: warning: argument 'data_size' from the argument list of GNUNET_GNSRECORD_value_to_string has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:350: warning: argument 'type' from the argument list of GNUNET_GNSRECORD_string_to_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:350: warning: argument 's' from the argument list of GNUNET_GNSRECORD_string_to_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:350: warning: argument 'data' from the argument list of GNUNET_GNSRECORD_string_to_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:350: warning: argument 'data_size' from the argument list of GNUNET_GNSRECORD_string_to_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:361: warning: argument 'dns_typename' from the argument list of GNUNET_GNSRECORD_typename_to_number has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:385: warning: argument 'rd_count' from the argument list of GNUNET_GNSRECORD_records_get_size has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:385: warning: argument 'rd' from the argument list of GNUNET_GNSRECORD_records_get_size has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:399: warning: argument 'rd_count' from the argument list of GNUNET_GNSRECORD_records_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:399: warning: argument 'rd' from the argument list of GNUNET_GNSRECORD_records_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:399: warning: argument 'dest_size' from the argument list of GNUNET_GNSRECORD_records_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:399: warning: argument 'dest' from the argument list of GNUNET_GNSRECORD_records_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:417: warning: argument 'len' from the argument list of GNUNET_GNSRECORD_records_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:417: warning: argument 'src' from the argument list of GNUNET_GNSRECORD_records_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:417: warning: argument 'rd_count' from the argument list of GNUNET_GNSRECORD_records_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:417: warning: argument 'dest' from the argument list of GNUNET_GNSRECORD_records_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:456: warning: argument 'z' from the argument list of GNUNET_GNSRECORD_z2s has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:470: warning: argument 'pkey' from the argument list of GNUNET_GNSRECORD_pkey_to_zkey has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:483: warning: argument 'zkey' from the argument list of GNUNET_GNSRECORD_zkey_to_pkey has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:483: warning: argument 'pkey' from the argument list of GNUNET_GNSRECORD_zkey_to_pkey has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:508: warning: argument 'pub' from the argument list of GNUNET_GNSRECORD_query_from_public_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:508: warning: argument 'label' from the argument list of GNUNET_GNSRECORD_query_from_public_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:508: warning: argument 'query' from the argument list of GNUNET_GNSRECORD_query_from_public_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:528: warning: argument 'result' of command @param is not found in the argument list of GNUNET_GNSRECORD_block_create(const struct GNUNET_IDENTITY_PrivateKey *key, struct GNUNET_TIME_Absolute expire, const char *label, const struct GNUNET_GNSRECORD_Data *rd, unsigned int rd_count, struct GNUNET_GNSRECORD_Block **block) -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:522: warning: The following parameter of GNUNET_GNSRECORD_block_create(const struct GNUNET_IDENTITY_PrivateKey *key, struct GNUNET_TIME_Absolute expire, const char *label, const struct GNUNET_GNSRECORD_Data *rd, unsigned int rd_count, struct GNUNET_GNSRECORD_Block **block) is not documented: - parameter 'block' -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:593: warning: argument 'block' from the argument list of GNUNET_GNSRECORD_block_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:593: warning: argument 'zone_key' from the argument list of GNUNET_GNSRECORD_block_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:593: warning: argument 'label' from the argument list of GNUNET_GNSRECORD_block_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:593: warning: argument 'proc' from the argument list of GNUNET_GNSRECORD_block_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:593: warning: argument 'proc_cls' from the argument list of GNUNET_GNSRECORD_block_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:607: warning: argument 'a' from the argument list of GNUNET_GNSRECORD_records_cmp has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:607: warning: argument 'b' from the argument list of GNUNET_GNSRECORD_records_cmp has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:661: warning: explicit link request to 'GNUNET_GNSRECORD_PublicKey' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:714: warning: argument 'rd_public_count' of command @param is not found in the argument list of GNUNET_GNSRECORD_normalize_record_set(const char *label, const struct GNUNET_GNSRECORD_Data *rd, unsigned int rd_count, struct GNUNET_GNSRECORD_Data *rd_public, unsigned int *rd_count_public, struct GNUNET_TIME_Absolute *min_expiry, int include_private, char **emsg) -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:636: warning: The following parameter of GNUNET_GNSRECORD_normalize_record_set(const char *label, const struct GNUNET_GNSRECORD_Data *rd, unsigned int rd_count, struct GNUNET_GNSRECORD_Data *rd_public, unsigned int *rd_count_public, struct GNUNET_TIME_Absolute *min_expiry, int include_private, char **emsg) is not documented: - parameter 'rd_count_public' -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:745: warning: argument 'rd_public_count' of command @param is not found in the argument list of GNUNET_GNSRECORD_convert_records_for_export(const char *label, const struct GNUNET_GNSRECORD_Data *rd, unsigned int rd_count, struct GNUNET_GNSRECORD_Data *rd_public, unsigned int *rd_count_public, struct GNUNET_TIME_Absolute *expiry, char **emsg) -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:636: warning: The following parameter of GNUNET_GNSRECORD_convert_records_for_export(const char *label, const struct GNUNET_GNSRECORD_Data *rd, unsigned int rd_count, struct GNUNET_GNSRECORD_Data *rd_public, unsigned int *rd_count_public, struct GNUNET_TIME_Absolute *expiry, char **emsg) is not documented: - parameter 'rd_count_public' -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:140: warning: argument 'peer' from the argument list of GNUNET_HELLO_address_allocate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:140: warning: argument 'transport_name' from the argument list of GNUNET_HELLO_address_allocate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:140: warning: argument 'address' from the argument list of GNUNET_HELLO_address_allocate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:140: warning: argument 'address_length' from the argument list of GNUNET_HELLO_address_allocate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:140: warning: argument 'local_info' from the argument list of GNUNET_HELLO_address_allocate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:166: warning: argument 'a1' from the argument list of GNUNET_HELLO_address_cmp has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:166: warning: argument 'a2' from the argument list of GNUNET_HELLO_address_cmp has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:257: warning: argument 'address' from the argument list of GNUNET_HELLO_add_address has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:257: warning: argument 'expiration' from the argument list of GNUNET_HELLO_add_address has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:257: warning: argument 'target' from the argument list of GNUNET_HELLO_add_address has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:257: warning: argument 'max' from the argument list of GNUNET_HELLO_add_address has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:321: warning: argument 'h1' from the argument list of GNUNET_HELLO_merge has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:321: warning: argument 'h2' from the argument list of GNUNET_HELLO_merge has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:321: warning: argument 'h1' from the argument list of GNUNET_HELLO_equals has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:321: warning: argument 'h2' from the argument list of GNUNET_HELLO_equals has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:321: warning: argument 'now' from the argument list of GNUNET_HELLO_equals has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:386: warning: argument 'msg' from the argument list of GNUNET_HELLO_iterate_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:386: warning: argument 'return_modified' from the argument list of GNUNET_HELLO_iterate_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:386: warning: argument 'it' from the argument list of GNUNET_HELLO_iterate_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:386: warning: argument 'it_cls' from the argument list of GNUNET_HELLO_iterate_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:406: warning: argument 'new_hello' from the argument list of GNUNET_HELLO_iterate_new_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:406: warning: argument 'old_hello' from the argument list of GNUNET_HELLO_iterate_new_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:406: warning: argument 'expiration_limit' from the argument list of GNUNET_HELLO_iterate_new_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:406: warning: argument 'it' from the argument list of GNUNET_HELLO_iterate_new_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:406: warning: argument 'it_cls' from the argument list of GNUNET_HELLO_iterate_new_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/hello/hello-ng.c:58: warning: argument 'out' of command @param is not found in the argument list of GNUNET_HELLO_sign_address(const char *address, enum GNUNET_NetworkType nt, struct GNUNET_TIME_Absolute mono_time, const struct GNUNET_CRYPTO_EddsaPrivateKey *private_key, void **result, size_t *result_size) -/home/william/Git/gnunet/src/hello/hello-ng.c:58: warning: argument 'out' of command @param is not found in the argument list of GNUNET_HELLO_sign_address(const char *address, enum GNUNET_NetworkType nt, struct GNUNET_TIME_Absolute mono_time, const struct GNUNET_CRYPTO_EddsaPrivateKey *private_key, void **result, size_t *result_size) -/home/william/Git/gnunet/src/hello/hello-ng.c:58: warning: argument 'out' of command @param is not found in the argument list of GNUNET_HELLO_sign_address(const char *address, enum GNUNET_NetworkType nt, struct GNUNET_TIME_Absolute mono_time, const struct GNUNET_CRYPTO_EddsaPrivateKey *private_key, void **result, size_t *result_size) -/home/william/Git/gnunet/src/hello/hello-ng.c:58: warning: argument 'out' of command @param is not found in the argument list of GNUNET_HELLO_sign_address(const char *address, enum GNUNET_NetworkType nt, struct GNUNET_TIME_Absolute mono_time, const struct GNUNET_CRYPTO_EddsaPrivateKey *private_key, void **result, size_t *result_size) -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:492: warning: argument 'address' from the argument list of GNUNET_HELLO_sign_address has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:492: warning: argument 'nt' from the argument list of GNUNET_HELLO_sign_address has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:492: warning: argument 'mono_time' from the argument list of GNUNET_HELLO_sign_address has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:492: warning: argument 'private_key' from the argument list of GNUNET_HELLO_sign_address has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:492: warning: argument 'result' from the argument list of GNUNET_HELLO_sign_address has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:492: warning: argument 'result_size' from the argument list of GNUNET_HELLO_sign_address has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:503: warning: argument 'out' of command @param is not found in the argument list of GNUNET_HELLO_extract_address(const void *raw, size_t raw_size, const struct GNUNET_PeerIdentity *pid, enum GNUNET_NetworkType *nt, struct GNUNET_TIME_Absolute *mono_time) -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:503: warning: argument 'out' of command @param is not found in the argument list of GNUNET_HELLO_extract_address(const void *raw, size_t raw_size, const struct GNUNET_PeerIdentity *pid, enum GNUNET_NetworkType *nt, struct GNUNET_TIME_Absolute *mono_time) -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:81: warning: argument 'with_control_pipe' from the argument list of GNUNET_HELPER_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:81: warning: argument 'binary_name' from the argument list of GNUNET_HELPER_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:81: warning: argument 'binary_argv' from the argument list of GNUNET_HELPER_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:81: warning: argument 'cb' from the argument list of GNUNET_HELPER_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:81: warning: argument 'exp_cb' from the argument list of GNUNET_HELPER_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:81: warning: argument 'cb_cls' from the argument list of GNUNET_HELPER_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:99: warning: argument 'h' from the argument list of GNUNET_HELPER_kill has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:99: warning: argument 'soft_kill' from the argument list of GNUNET_HELPER_kill has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:111: warning: argument 'h' from the argument list of GNUNET_HELPER_wait has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:132: warning: argument 'h' from the argument list of GNUNET_HELPER_stop has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:132: warning: argument 'soft_kill' from the argument list of GNUNET_HELPER_stop has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:167: warning: argument 'h' from the argument list of GNUNET_HELPER_send has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:167: warning: argument 'msg' from the argument list of GNUNET_HELPER_send has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:167: warning: argument 'can_drop' from the argument list of GNUNET_HELPER_send has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:167: warning: argument 'cont' from the argument list of GNUNET_HELPER_send has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:167: warning: argument 'cont_cls' from the argument list of GNUNET_HELPER_send has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:257: warning: argument 'cfg' from the argument list of GNUNET_IDENTITY_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:257: warning: argument 'cb' from the argument list of GNUNET_IDENTITY_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:257: warning: argument 'cb_cls' from the argument list of GNUNET_IDENTITY_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:262: warning: argument 'id' of command @param is not found in the argument list of GNUNET_IDENTITY_get(struct GNUNET_IDENTITY_Handle *h, const char *service_name, GNUNET_IDENTITY_Callback cb, void *cb_cls) -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:272: warning: argument 'service_name' from the argument list of GNUNET_IDENTITY_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:272: warning: argument 'cb' from the argument list of GNUNET_IDENTITY_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:272: warning: argument 'cb_cls' from the argument list of GNUNET_IDENTITY_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:290: warning: argument 'id' of command @param is not found in the argument list of GNUNET_IDENTITY_set(struct GNUNET_IDENTITY_Handle *h, const char *service_name, struct GNUNET_IDENTITY_Ego *ego, GNUNET_IDENTITY_Continuation cont, void *cont_cls) -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:301: warning: argument 'service_name' from the argument list of GNUNET_IDENTITY_set has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:301: warning: argument 'ego' from the argument list of GNUNET_IDENTITY_set has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:301: warning: argument 'cont' from the argument list of GNUNET_IDENTITY_set has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:301: warning: argument 'cont_cls' from the argument list of GNUNET_IDENTITY_set has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:314: warning: argument 'h' from the argument list of GNUNET_IDENTITY_disconnect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:352: warning: argument 'id' of command @param is not found in the argument list of GNUNET_IDENTITY_rename(struct GNUNET_IDENTITY_Handle *h, const char *old_name, const char *new_name, GNUNET_IDENTITY_Continuation cb, void *cb_cls) -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:363: warning: argument 'old_name' from the argument list of GNUNET_IDENTITY_rename has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:363: warning: argument 'new_name' from the argument list of GNUNET_IDENTITY_rename has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:363: warning: argument 'cb' from the argument list of GNUNET_IDENTITY_rename has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:363: warning: argument 'cb_cls' from the argument list of GNUNET_IDENTITY_rename has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:370: warning: argument 'id' of command @param is not found in the argument list of GNUNET_IDENTITY_delete(struct GNUNET_IDENTITY_Handle *h, const char *name, GNUNET_IDENTITY_Continuation cb, void *cb_cls) -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:380: warning: argument 'name' from the argument list of GNUNET_IDENTITY_delete has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:380: warning: argument 'cb' from the argument list of GNUNET_IDENTITY_delete has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:380: warning: argument 'cb_cls' from the argument list of GNUNET_IDENTITY_delete has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:465: warning: argument 'sig' of command @param is not found in the argument list of GNUNET_IDENTITY_signature_get_raw_length_by_type(const uint32_t type) -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:475: warning: The following parameter of GNUNET_IDENTITY_signature_get_raw_length_by_type(const uint32_t type) is not documented: - parameter 'type' -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:832: warning: argument 'name' of command @param is not found in the argument list of GNUNET_IDENTITY_ego_lookup_by_suffix(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *suffix, GNUNET_IDENTITY_EgoSuffixCallback cb, void *cb_cls) -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:845: warning: argument 'cfg' from the argument list of GNUNET_IDENTITY_ego_lookup_by_suffix has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:845: warning: argument 'cb' from the argument list of GNUNET_IDENTITY_ego_lookup_by_suffix has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:845: warning: argument 'cb_cls' from the argument list of GNUNET_IDENTITY_ego_lookup_by_suffix has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:858: warning: argument 'el' from the argument list of GNUNET_IDENTITY_ego_lookup_by_suffix_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_json_lib.h:122: warning: argument 'which' of command @param is not found in the argument list of GNUNET_JSON_parse(const json_t *root, struct GNUNET_JSON_Specification *spec, const char **error_json_name, unsigned int *error_line) -/home/william/Git/gnunet/src/include/gnunet_json_lib.h:63: warning: The following parameter of GNUNET_JSON_parse(const json_t *root, struct GNUNET_JSON_Specification *spec, const char **error_json_name, unsigned int *error_line) is not documented: - parameter 'error_line' -/home/william/Git/gnunet/src/include/gnunet_json_lib.h:316: warning: argument 'at' of command @param is not found in the argument list of GNUNET_JSON_spec_timestamp(const char *name, struct GNUNET_TIME_Timestamp *t) -/home/william/Git/gnunet/src/include/gnunet_json_lib.h:149: warning: The following parameter of GNUNET_JSON_spec_timestamp(const char *name, struct GNUNET_TIME_Timestamp *t) is not documented: - parameter 't' -/home/william/Git/gnunet/src/include/gnunet_json_lib.h:482: warning: explicit link request to 'GNUNET_JSON_post_parser_callback()' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_json_lib.h:518: warning: argument 'val' of command @param is not found in the argument list of GNUNET_JSON_getopt(char shortName, const char *name, const char *argumentHelp, const char *description, json_t **json) -/home/william/Git/gnunet/src/include/gnunet_json_lib.h:510: warning: The following parameter of GNUNET_JSON_getopt(char shortName, const char *name, const char *argumentHelp, const char *description, json_t **json) is not documented: - parameter 'json' -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:609: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MESSENGER_connect(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *name, GNUNET_MESSENGER_IdentityCallback identity_callback, void *identity_cls, GNUNET_MESSENGER_MessageCallback msg_callback, void *msg_cls) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:609: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MESSENGER_connect(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *name, GNUNET_MESSENGER_IdentityCallback identity_callback, void *identity_cls, GNUNET_MESSENGER_MessageCallback msg_callback, void *msg_cls) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:609: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MESSENGER_connect(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *name, GNUNET_MESSENGER_IdentityCallback identity_callback, void *identity_cls, GNUNET_MESSENGER_MessageCallback msg_callback, void *msg_cls) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:609: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MESSENGER_connect(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *name, GNUNET_MESSENGER_IdentityCallback identity_callback, void *identity_cls, GNUNET_MESSENGER_MessageCallback msg_callback, void *msg_cls) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:622: warning: The following parameters of GNUNET_MESSENGER_connect(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *name, GNUNET_MESSENGER_IdentityCallback identity_callback, void *identity_cls, GNUNET_MESSENGER_MessageCallback msg_callback, void *msg_cls) are not documented: - parameter 'identity_cls' - parameter 'msg_cls' -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:629: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MESSENGER_update(struct GNUNET_MESSENGER_Handle *handle) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:629: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MESSENGER_update(struct GNUNET_MESSENGER_Handle *handle) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:641: warning: The following parameter of GNUNET_MESSENGER_update(struct GNUNET_MESSENGER_Handle *handle) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:645: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MESSENGER_disconnect(struct GNUNET_MESSENGER_Handle *handle) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:645: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MESSENGER_disconnect(struct GNUNET_MESSENGER_Handle *handle) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:649: warning: The following parameter of GNUNET_MESSENGER_disconnect(struct GNUNET_MESSENGER_Handle *handle) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:660: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MESSENGER_set_name(struct GNUNET_MESSENGER_Handle *handle, const char *name) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:660: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MESSENGER_set_name(struct GNUNET_MESSENGER_Handle *handle, const char *name) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:670: warning: The following parameter of GNUNET_MESSENGER_set_name(struct GNUNET_MESSENGER_Handle *handle, const char *name) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:682: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MESSENGER_open_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:682: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MESSENGER_open_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:699: warning: The following parameter of GNUNET_MESSENGER_open_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:704: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MESSENGER_enter_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:704: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MESSENGER_enter_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:721: warning: The following parameter of GNUNET_MESSENGER_enter_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:725: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MESSENGER_close_room(struct GNUNET_MESSENGER_Room *room) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:725: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MESSENGER_close_room(struct GNUNET_MESSENGER_Room *room) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:735: warning: The following parameter of GNUNET_MESSENGER_close_room(struct GNUNET_MESSENGER_Room *room) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:794: warning: found tag without matching -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:794: warning: found tag without matching -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:794: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MESSENGER_send_message(struct GNUNET_MESSENGER_Room *room, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_MESSENGER_Contact *contact) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:794: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MESSENGER_send_message(struct GNUNET_MESSENGER_Room *room, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_MESSENGER_Contact *contact) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:813: warning: The following parameter of GNUNET_MESSENGER_send_message(struct GNUNET_MESSENGER_Room *room, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_MESSENGER_Contact *contact) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/include/gnunet_mhd_compat.h:25: warning: explicit link request to 'MHD_VERSION' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:57: warning: end of comment block while expecting command -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:35: warning: found tag without matching -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:69: warning: end of comment block while expecting command -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:623: warning: argument 'an' of command @param is not found in the argument list of GNUNET_MQ_check_zero_termination(m) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:633: warning: The following parameter of GNUNET_MQ_check_zero_termination(m) is not documented: - parameter 'm' -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:647: warning: argument 'an' of command @param is not found in the argument list of GNUNET_MQ_check_boxed_message(m) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:659: warning: The following parameter of GNUNET_MQ_check_boxed_message(m) is not documented: - parameter 'm' -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:1031: warning: explicit link request to 'gnunet_mq_impl_send_continue' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:275: warning: explicit link request to 'GNUNET_MQ_PREF_CORKING_ALLOWED' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:131: warning: explicit link request to 'GNUNET_MQ_extract_nexted_mh' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:385: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_head(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:385: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_head(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:385: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_head(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:385: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_head(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:385: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_head(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:385: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_head(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:398: warning: The following parameters of GNUNET_MQ_dll_insert_head(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) are not documented: - parameter 'env_head' - parameter 'env_tail' - parameter 'env' -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:403: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_tail(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:403: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_tail(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:403: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_tail(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:403: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_tail(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:403: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_tail(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:403: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_tail(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:416: warning: The following parameters of GNUNET_MQ_dll_insert_tail(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) are not documented: - parameter 'env_head' - parameter 'env_tail' - parameter 'env' -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:422: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MQ_dll_remove(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:422: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MQ_dll_remove(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:422: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MQ_dll_remove(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:422: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MQ_dll_remove(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:422: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MQ_dll_remove(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:422: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MQ_dll_remove(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:434: warning: The following parameters of GNUNET_MQ_dll_remove(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) are not documented: - parameter 'env_head' - parameter 'env_tail' - parameter 'env' -/home/william/Git/gnunet/src/include/gnunet_mst_lib.h:64: warning: explicit link request to 'GNUNET_mst_destroy' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_mst_lib.h:107: warning: argument 'mst' from the argument list of GNUNET_MST_from_buffer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_mst_lib.h:107: warning: argument 'buf' from the argument list of GNUNET_MST_from_buffer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_mst_lib.h:107: warning: argument 'size' from the argument list of GNUNET_MST_from_buffer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_mst_lib.h:107: warning: argument 'purge' from the argument list of GNUNET_MST_from_buffer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_mst_lib.h:107: warning: argument 'one_shot' from the argument list of GNUNET_MST_from_buffer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_mst_lib.h:116: warning: argument 'buf' of command @param is not found in the argument list of GNUNET_MST_read(struct GNUNET_MessageStreamTokenizer *mst, struct GNUNET_NETWORK_Handle *sock, int purge, int one_shot) -/home/william/Git/gnunet/src/include/gnunet_mst_lib.h:116: warning: argument 'size' of command @param is not found in the argument list of GNUNET_MST_read(struct GNUNET_MessageStreamTokenizer *mst, struct GNUNET_NETWORK_Handle *sock, int purge, int one_shot) -/home/william/Git/gnunet/src/include/gnunet_mst_lib.h:129: warning: The following parameter of GNUNET_MST_read(struct GNUNET_MessageStreamTokenizer *mst, struct GNUNET_NETWORK_Handle *sock, int purge, int one_shot) is not documented: - parameter 'sock' -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:355: warning: Found unknown command '\spec' -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:356: warning: Found unknown command '\spec' -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:125: warning: Found unknown command '\oaran' -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:74: warning: argument 'ptr' from the argument list of GNUNET_MY_query_param_fixed_size has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:145: warning: argument 'mc' from the argument list of GNUNET_MY_exec_prepared has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:145: warning: argument 'sh' from the argument list of GNUNET_MY_exec_prepared has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:145: warning: argument 'params' from the argument list of GNUNET_MY_exec_prepared has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:260: warning: Found unknown command '\spec' -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:261: warning: Found unknown command '\oaran' -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:260: warning: argument 'name' of command @param is not found in the argument list of GNUNET_MY_result_spec_fixed_size(void *ptr, size_t ptr_size) -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:260: warning: argument 'dst' of command @param is not found in the argument list of GNUNET_MY_result_spec_fixed_size(void *ptr, size_t ptr_size) -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:185: warning: The following parameter of GNUNET_MY_result_spec_fixed_size(void *ptr, size_t ptr_size) is not documented: - parameter 'ptr' -/home/william/Git/gnunet/src/my/my_result_helper.c:132: warning: argument 'sptr' of command @param is not found in the argument list of GNUNET_MY_result_spec_variable_size(void **dst, size_t *ptr_size) -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:185: warning: argument 'dst' from the argument list of GNUNET_MY_result_spec_variable_size has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:377: warning: argument 'name' of command @param is not found in the argument list of GNUNET_MY_result_spec_rsa_public_key(struct GNUNET_CRYPTO_RsaPublicKey **rsa) -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:406: warning: argument 'name' of command @param is not found in the argument list of GNUNET_MY_result_spec_absolute_time(struct GNUNET_TIME_Absolute *at) -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:470: warning: explicit link request to 'GNUNET_MY_exect_prepared()' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:473: warning: explicit link request to 'GNUNET_MY_exect_prepared()' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:477: warning: argument 'qp' from the argument list of GNUNET_MY_cleanup_query has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:477: warning: argument 'qbind' from the argument list of GNUNET_MY_cleanup_query has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:488: warning: argument 'rs' from the argument list of GNUNET_MY_cleanup_result has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_mysql_lib.h:107: warning: argument 'mc' from the argument list of GNUNET_MYSQL_statements_invalidate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_mysql_lib.h:119: warning: argument 'sh' from the argument list of GNUNET_MYSQL_statement_get_stmt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namecache_service.h:80: warning: argument 'cfg' from the argument list of GNUNET_NAMECACHE_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namecache_service.h:91: warning: argument 'h' from the argument list of GNUNET_NAMECACHE_disconnect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namecache_service.h:151: warning: argument 'h' from the argument list of GNUNET_NAMECACHE_lookup_block has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namecache_service.h:151: warning: argument 'derived_hash' from the argument list of GNUNET_NAMECACHE_lookup_block has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namecache_service.h:151: warning: argument 'proc' from the argument list of GNUNET_NAMECACHE_lookup_block has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namecache_service.h:151: warning: argument 'proc_cls' from the argument list of GNUNET_NAMECACHE_lookup_block has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namecache_service.h:166: warning: argument 'qe' from the argument list of GNUNET_NAMECACHE_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:81: warning: argument 'cfg' from the argument list of GNUNET_NAMESTORE_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:92: warning: argument 'h' from the argument list of GNUNET_NAMESTORE_disconnect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:254: warning: argument 'qe' from the argument list of GNUNET_NAMESTORE_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:283: warning: argument 'h' from the argument list of GNUNET_NAMESTORE_zone_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:283: warning: argument 'zone' from the argument list of GNUNET_NAMESTORE_zone_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:283: warning: argument 'error_cb' from the argument list of GNUNET_NAMESTORE_zone_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:283: warning: argument 'error_cb_cls' from the argument list of GNUNET_NAMESTORE_zone_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:283: warning: argument 'proc' from the argument list of GNUNET_NAMESTORE_zone_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:283: warning: argument 'proc_cls' from the argument list of GNUNET_NAMESTORE_zone_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:283: warning: argument 'finish_cb' from the argument list of GNUNET_NAMESTORE_zone_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:283: warning: argument 'finish_cb_cls' from the argument list of GNUNET_NAMESTORE_zone_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:315: warning: argument 'it' from the argument list of GNUNET_NAMESTORE_zone_iteration_stop has multiple @param documentation sections -/home/william/Git/gnunet/src/namestore/namestore_api_monitor.c:279: warning: argument 'cls' of command @param is not found in the argument list of GNUNET_NAMESTORE_zone_monitor_start(const struct GNUNET_CONFIGURATION_Handle *cfg, const struct GNUNET_IDENTITY_PrivateKey *zone, int iterate_first, GNUNET_SCHEDULER_TaskCallback error_cb, void *error_cb_cls, GNUNET_NAMESTORE_RecordMonitor monitor, void *monitor_cls, GNUNET_SCHEDULER_TaskCallback sync_cb, void *sync_cb_cls) -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:352: warning: argument 'cfg' from the argument list of GNUNET_NAMESTORE_zone_monitor_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:352: warning: argument 'zone' from the argument list of GNUNET_NAMESTORE_zone_monitor_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:352: warning: argument 'iterate_first' from the argument list of GNUNET_NAMESTORE_zone_monitor_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:352: warning: argument 'error_cb' from the argument list of GNUNET_NAMESTORE_zone_monitor_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:352: warning: argument 'error_cb_cls' from the argument list of GNUNET_NAMESTORE_zone_monitor_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:352: warning: argument 'monitor' from the argument list of GNUNET_NAMESTORE_zone_monitor_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:352: warning: argument 'monitor_cls' from the argument list of GNUNET_NAMESTORE_zone_monitor_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:352: warning: argument 'sync_cb' from the argument list of GNUNET_NAMESTORE_zone_monitor_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:335: warning: argument 'cfg' from the argument list of GNUNET_NAT_register has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:335: warning: argument 'config_section' from the argument list of GNUNET_NAT_register has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:335: warning: argument 'proto' from the argument list of GNUNET_NAT_register has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:335: warning: argument 'num_addrs' from the argument list of GNUNET_NAT_register has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:335: warning: argument 'addrs' from the argument list of GNUNET_NAT_register has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:335: warning: argument 'addrlens' from the argument list of GNUNET_NAT_register has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:335: warning: argument 'address_callback' from the argument list of GNUNET_NAT_register has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:335: warning: argument 'reversal_callback' from the argument list of GNUNET_NAT_register has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:335: warning: argument 'callback_cls' from the argument list of GNUNET_NAT_register has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:391: warning: argument 'nh' from the argument list of GNUNET_NAT_unregister has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:460: warning: argument 'server' from the argument list of GNUNET_NAT_stun_make_request has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:460: warning: argument 'port' from the argument list of GNUNET_NAT_stun_make_request has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:460: warning: argument 'sock' from the argument list of GNUNET_NAT_stun_make_request has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:460: warning: argument 'cb' from the argument list of GNUNET_NAT_stun_make_request has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:460: warning: argument 'cb_cls' from the argument list of GNUNET_NAT_stun_make_request has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:193: warning: argument 'desc' from the argument list of GNUNET_NETWORK_socket_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:193: warning: argument 'address' from the argument list of GNUNET_NETWORK_socket_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:193: warning: argument 'address_len' from the argument list of GNUNET_NETWORK_socket_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:193: warning: argument 'desc' from the argument list of GNUNET_NETWORK_socket_getsockopt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:193: warning: argument 'level' from the argument list of GNUNET_NETWORK_socket_getsockopt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:193: warning: argument 'optname' from the argument list of GNUNET_NETWORK_socket_getsockopt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:193: warning: argument 'optval' from the argument list of GNUNET_NETWORK_socket_getsockopt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:193: warning: argument 'optlen' from the argument list of GNUNET_NETWORK_socket_getsockopt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:193: warning: argument 'desc' from the argument list of GNUNET_NETWORK_socket_listen has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:193: warning: argument 'backlog' from the argument list of GNUNET_NETWORK_socket_listen has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:262: warning: argument 'desc' from the argument list of GNUNET_NETWORK_socket_recvfrom has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:262: warning: argument 'buffer' from the argument list of GNUNET_NETWORK_socket_recvfrom has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:262: warning: argument 'length' from the argument list of GNUNET_NETWORK_socket_recvfrom has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:262: warning: argument 'src_addr' from the argument list of GNUNET_NETWORK_socket_recvfrom has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:262: warning: argument 'addrlen' from the argument list of GNUNET_NETWORK_socket_recvfrom has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:278: warning: argument 'desc' from the argument list of GNUNET_NETWORK_socket_recv has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:278: warning: argument 'buffer' from the argument list of GNUNET_NETWORK_socket_recv has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:278: warning: argument 'length' from the argument list of GNUNET_NETWORK_socket_recv has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:293: warning: argument 'rfds' from the argument list of GNUNET_NETWORK_socket_select has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:293: warning: argument 'wfds' from the argument list of GNUNET_NETWORK_socket_select has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:293: warning: argument 'efds' from the argument list of GNUNET_NETWORK_socket_select has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:293: warning: argument 'timeout' from the argument list of GNUNET_NETWORK_socket_select has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:308: warning: argument 'desc' from the argument list of GNUNET_NETWORK_socket_send has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:308: warning: argument 'buffer' from the argument list of GNUNET_NETWORK_socket_send has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:308: warning: argument 'length' from the argument list of GNUNET_NETWORK_socket_send has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:325: warning: argument 'desc' from the argument list of GNUNET_NETWORK_socket_sendto has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:325: warning: argument 'message' from the argument list of GNUNET_NETWORK_socket_sendto has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:325: warning: argument 'length' from the argument list of GNUNET_NETWORK_socket_sendto has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:325: warning: argument 'dest_addr' from the argument list of GNUNET_NETWORK_socket_sendto has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:325: warning: argument 'dest_len' from the argument list of GNUNET_NETWORK_socket_sendto has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:397: warning: argument 'fds' from the argument list of GNUNET_NETWORK_fdset_zero has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:419: warning: argument 'fds' from the argument list of GNUNET_NETWORK_fdset_isset has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:419: warning: argument 'desc' from the argument list of GNUNET_NETWORK_fdset_isset has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:430: warning: argument 'dst' from the argument list of GNUNET_NETWORK_fdset_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:430: warning: argument 'src' from the argument list of GNUNET_NETWORK_fdset_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:462: warning: argument 'desc' from the argument list of GNUNET_NETWORK_get_addr has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:483: warning: argument 'to' from the argument list of GNUNET_NETWORK_fdset_copy_native has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:483: warning: argument 'from' from the argument list of GNUNET_NETWORK_fdset_copy_native has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:483: warning: argument 'nfds' from the argument list of GNUNET_NETWORK_fdset_copy_native has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:507: warning: argument 'to' from the argument list of GNUNET_NETWORK_fdset_test_native has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:507: warning: argument 'nfd' from the argument list of GNUNET_NETWORK_fdset_test_native has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:530: warning: argument 'fds' from the argument list of GNUNET_NETWORK_fdset_handle_set_first has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:530: warning: argument 'h' from the argument list of GNUNET_NETWORK_fdset_handle_set_first has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nse_service.h:99: warning: argument 'cfg' from the argument list of GNUNET_NSE_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nse_service.h:99: warning: argument 'func' from the argument list of GNUNET_NSE_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nse_service.h:99: warning: argument 'func_cls' from the argument list of GNUNET_NSE_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nt_lib.h:90: warning: explicit link request to 'GNUNET_ATS_interface_scanner_init()' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_nt_lib.h:81: warning: argument 'is' from the argument list of GNUNET_NT_scanner_get_type has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nt_lib.h:81: warning: argument 'addr' from the argument list of GNUNET_NT_scanner_get_type has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nt_lib.h:81: warning: argument 'addrlen' from the argument list of GNUNET_NT_scanner_get_type has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nt_lib.h:119: warning: argument 'is' from the argument list of GNUNET_NT_scanner_done has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_op_lib.h:87: warning: argument 'h' from the argument list of GNUNET_OP_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_op_lib.h:87: warning: argument 'op_id' from the argument list of GNUNET_OP_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_op_lib.h:87: warning: argument 'result_cb' from the argument list of GNUNET_OP_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_op_lib.h:87: warning: argument 'cls' from the argument list of GNUNET_OP_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_op_lib.h:87: warning: argument 'ctx' from the argument list of GNUNET_OP_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:330: warning: argument 'pd' from the argument list of GNUNET_OS_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:476: warning: argument 'std_inheritance' from the argument list of GNUNET_OS_start_process_vap has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:476: warning: argument 'pipe_stdin' from the argument list of GNUNET_OS_start_process_vap has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:476: warning: argument 'pipe_stdout' from the argument list of GNUNET_OS_start_process_vap has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:476: warning: argument 'pipe_stderr' from the argument list of GNUNET_OS_start_process_vap has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:476: warning: argument 'filename' from the argument list of GNUNET_OS_start_process_vap has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:476: warning: argument 'argv' from the argument list of GNUNET_OS_start_process_vap has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:496: warning: argument 'std_inheritance' from the argument list of GNUNET_OS_start_process has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:496: warning: argument 'pipe_stdin' from the argument list of GNUNET_OS_start_process has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:496: warning: argument 'pipe_stdout' from the argument list of GNUNET_OS_start_process has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:496: warning: argument 'filename' from the argument list of GNUNET_OS_start_process has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:515: warning: argument 'std_inheritance' from the argument list of GNUNET_OS_start_process_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:515: warning: argument 'pipe_stdin' from the argument list of GNUNET_OS_start_process_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:515: warning: argument 'pipe_stdout' from the argument list of GNUNET_OS_start_process_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:515: warning: argument 'pipe_stderr' from the argument list of GNUNET_OS_start_process_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:515: warning: argument 'filename' from the argument list of GNUNET_OS_start_process_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:515: warning: argument 'va' from the argument list of GNUNET_OS_start_process_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:533: warning: argument 'std_inheritance' from the argument list of GNUNET_OS_start_process_v has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:533: warning: argument 'lsocks' from the argument list of GNUNET_OS_start_process_v has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:533: warning: argument 'filename' from the argument list of GNUNET_OS_start_process_v has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:533: warning: argument 'argv' from the argument list of GNUNET_OS_start_process_v has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:584: warning: argument 'cmd' from the argument list of GNUNET_OS_command_stop has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:599: warning: argument 'proc' from the argument list of GNUNET_OS_command_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:599: warning: argument 'proc_cls' from the argument list of GNUNET_OS_command_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:599: warning: argument 'timeout' from the argument list of GNUNET_OS_command_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:599: warning: argument 'binary' from the argument list of GNUNET_OS_command_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:616: warning: argument 'proc' from the argument list of GNUNET_OS_process_status has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:616: warning: argument 'type' from the argument list of GNUNET_OS_process_status has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:616: warning: argument 'code' from the argument list of GNUNET_OS_process_status has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:632: warning: argument 'proc' from the argument list of GNUNET_OS_process_wait has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:645: warning: argument 'proc' from the argument list of GNUNET_OS_process_wait_status has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:645: warning: argument 'type' from the argument list of GNUNET_OS_process_wait_status has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:645: warning: argument 'code' from the argument list of GNUNET_OS_process_wait_status has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:659: warning: argument 'cls' from the argument list of GNUNET_OS_install_parent_control_handler has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peer_lib.h:96: warning: argument 'ids' from the argument list of GNUNET_PEER_decrement_rcs has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peer_lib.h:96: warning: argument 'count' from the argument list of GNUNET_PEER_decrement_rcs has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peer_lib.h:118: warning: argument 'id' from the argument list of GNUNET_PEER_resolve2 has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peerinfo_service.h:70: warning: argument 'cfg' from the argument list of GNUNET_PEERINFO_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peerinfo_service.h:105: warning: argument 'h' from the argument list of GNUNET_PEERINFO_add_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peerinfo_service.h:105: warning: argument 'hello' from the argument list of GNUNET_PEERINFO_add_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peerinfo_service.h:105: warning: argument 'cont' from the argument list of GNUNET_PEERINFO_add_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peerinfo_service.h:105: warning: argument 'cont_cls' from the argument list of GNUNET_PEERINFO_add_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/peerinfo/peerinfo_api.c:470: warning: argument 'timeout' of command @param is not found in the argument list of GNUNET_PEERINFO_iterate(struct GNUNET_PEERINFO_Handle *h, int include_friend_only, const struct GNUNET_PeerIdentity *peer, GNUNET_PEERINFO_Processor callback, void *callback_cls) -/home/william/Git/gnunet/src/include/gnunet_peerinfo_service.h:151: warning: argument 'h' from the argument list of GNUNET_PEERINFO_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peerinfo_service.h:151: warning: argument 'include_friend_only' from the argument list of GNUNET_PEERINFO_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peerinfo_service.h:151: warning: argument 'peer' from the argument list of GNUNET_PEERINFO_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peerinfo_service.h:151: warning: argument 'callback' from the argument list of GNUNET_PEERINFO_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peerinfo_service.h:151: warning: argument 'callback_cls' from the argument list of GNUNET_PEERINFO_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peerstore_service.h:254: warning: argument 'h' from the argument list of GNUNET_PEERSTORE_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peerstore_service.h:254: warning: argument 'sub_system' from the argument list of GNUNET_PEERSTORE_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peerstore_service.h:254: warning: argument 'peer' from the argument list of GNUNET_PEERSTORE_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peerstore_service.h:254: warning: argument 'key' from the argument list of GNUNET_PEERSTORE_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peerstore_service.h:254: warning: argument 'callback' from the argument list of GNUNET_PEERSTORE_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peerstore_service.h:254: warning: argument 'callback_cls' from the argument list of GNUNET_PEERSTORE_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_plugin_lib.h:73: warning: argument 'library_name' from the argument list of GNUNET_PLUGIN_test has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_plugin_lib.h:89: warning: argument 'library_name' from the argument list of GNUNET_PLUGIN_load has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_plugin_lib.h:89: warning: argument 'arg' from the argument list of GNUNET_PLUGIN_load has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_plugin_lib.h:122: warning: argument 'basename' from the argument list of GNUNET_PLUGIN_load_all has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_plugin_lib.h:122: warning: argument 'arg' from the argument list of GNUNET_PLUGIN_load_all has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_plugin_lib.h:122: warning: argument 'cb' from the argument list of GNUNET_PLUGIN_load_all has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_plugin_lib.h:122: warning: argument 'cb_cls' from the argument list of GNUNET_PLUGIN_load_all has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_plugin_lib.h:160: warning: argument 'library_name' from the argument list of GNUNET_PLUGIN_unload has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_plugin_lib.h:160: warning: argument 'arg' from the argument list of GNUNET_PLUGIN_unload has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:119: warning: Found unknown command '\oaran' -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:49: warning: The following parameter of GNUNET_PQ_query_param_fixed_size(const void *ptr, size_t ptr_size) is not documented: - parameter 'ptr_size' -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:230: warning: argument 'x' of command @param is not found in the argument list of GNUNET_PQ_query_param_timestamp_nbo(const struct GNUNET_TIME_TimestampNBO *t) -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:49: warning: The following parameter of GNUNET_PQ_query_param_timestamp_nbo(const struct GNUNET_TIME_TimestampNBO *t) is not documented: - parameter 't' -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:631: warning: argument 'db' from the argument list of GNUNET_PQ_eval_result has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:631: warning: argument 'statement_name' from the argument list of GNUNET_PQ_eval_result has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:631: warning: argument 'result' from the argument list of GNUNET_PQ_eval_result has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:631: warning: argument 'db' from the argument list of GNUNET_PQ_eval_prepared_non_select has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:631: warning: argument 'statement_name' from the argument list of GNUNET_PQ_eval_prepared_non_select has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:631: warning: argument 'params' from the argument list of GNUNET_PQ_eval_prepared_non_select has multiple @param documentation sections -/home/william/Git/gnunet/src/pq/pq_exec.c:68: warning: argument 'pq' of command @param is not found in the argument list of GNUNET_PQ_exec_statements(struct GNUNET_PQ_Context *db, const struct GNUNET_PQ_ExecuteStatement *es) -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:686: warning: argument 'es' from the argument list of GNUNET_PQ_exec_statements has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:896: warning: Found unknown command '\es' -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:925: warning: Found unknown command '\es' -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:1029: warning: explicit link request to 'GNUNET_PQ_event_do_poll()' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:1054: warning: explicit link request to 'GNUNET_PQ_event_do_poll()' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:1069: warning: explicit link request to 'GNUNET_PQ_event_do_poll()' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_program_lib.h:80: warning: explicit link request to 'a' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_program_lib.h:107: warning: explicit link request to 'a' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:347: warning: argument 'attr_name' from the argument list of GNUNET_RECLAIM_attribute_new has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:347: warning: argument 'credential' from the argument list of GNUNET_RECLAIM_attribute_new has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:347: warning: argument 'type' from the argument list of GNUNET_RECLAIM_attribute_new has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:347: warning: argument 'data' from the argument list of GNUNET_RECLAIM_attribute_new has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:347: warning: argument 'data_size' from the argument list of GNUNET_RECLAIM_attribute_new has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:355: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_attribute_list_serialize_get_size(const struct GNUNET_RECLAIM_AttributeList *al) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:362: warning: The following parameter of GNUNET_RECLAIM_attribute_list_serialize_get_size(const struct GNUNET_RECLAIM_AttributeList *al) is not documented: - parameter 'al' -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:366: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_attribute_list_destroy(struct GNUNET_RECLAIM_AttributeList *al) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:372: warning: The following parameter of GNUNET_RECLAIM_attribute_list_destroy(struct GNUNET_RECLAIM_AttributeList *al) is not documented: - parameter 'al' -/home/william/Git/gnunet/src/reclaim/reclaim_attribute.c:295: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_attribute_list_add(struct GNUNET_RECLAIM_AttributeList *al, const char *attr_name, const struct GNUNET_RECLAIM_Identifier *credential, uint32_t type, const void *data, size_t data_size) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:387: warning: argument 'attr_name' from the argument list of GNUNET_RECLAIM_attribute_list_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:387: warning: argument 'type' from the argument list of GNUNET_RECLAIM_attribute_list_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:387: warning: argument 'data' from the argument list of GNUNET_RECLAIM_attribute_list_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:387: warning: argument 'data_size' from the argument list of GNUNET_RECLAIM_attribute_list_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:387: warning: The following parameter of GNUNET_RECLAIM_attribute_list_add(struct GNUNET_RECLAIM_AttributeList *al, const char *attr_name, const struct GNUNET_RECLAIM_Identifier *credential, uint32_t type, const void *data, size_t data_size) is not documented: - parameter 'al' -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:396: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_attribute_list_serialize(const struct GNUNET_RECLAIM_AttributeList *al, char *result) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:404: warning: The following parameter of GNUNET_RECLAIM_attribute_list_serialize(const struct GNUNET_RECLAIM_AttributeList *al, char *result) is not documented: - parameter 'al' -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:452: warning: argument 'data' from the argument list of GNUNET_RECLAIM_attribute_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:452: warning: argument 'data_size' from the argument list of GNUNET_RECLAIM_attribute_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:456: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_attribute_list_dup(const struct GNUNET_RECLAIM_AttributeList *al) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:462: warning: The following parameter of GNUNET_RECLAIM_attribute_list_dup(const struct GNUNET_RECLAIM_AttributeList *al) is not documented: - parameter 'al' -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:515: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_credential_list_serialize_get_size(const struct GNUNET_RECLAIM_CredentialList *credentials) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:522: warning: The following parameter of GNUNET_RECLAIM_credential_list_serialize_get_size(const struct GNUNET_RECLAIM_CredentialList *credentials) is not documented: - parameter 'credentials' -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:526: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_credential_list_destroy(struct GNUNET_RECLAIM_CredentialList *al) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:526: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_credential_list_destroy(struct GNUNET_RECLAIM_CredentialList *al) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:532: warning: The following parameter of GNUNET_RECLAIM_credential_list_destroy(struct GNUNET_RECLAIM_CredentialList *al) is not documented: - parameter 'al' -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:536: warning: argument 'attr_name' of command @param is not found in the argument list of GNUNET_RECLAIM_credential_list_add(struct GNUNET_RECLAIM_CredentialList *attrs, const char *att_name, uint32_t type, const void *data, size_t data_size) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:545: warning: The following parameters of GNUNET_RECLAIM_credential_list_add(struct GNUNET_RECLAIM_CredentialList *attrs, const char *att_name, uint32_t type, const void *data, size_t data_size) are not documented: - parameter 'attrs' - parameter 'att_name' -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:553: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_credential_list_serialize(const struct GNUNET_RECLAIM_CredentialList *credentials, char *result) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:561: warning: The following parameter of GNUNET_RECLAIM_credential_list_serialize(const struct GNUNET_RECLAIM_CredentialList *credentials, char *result) is not documented: - parameter 'credentials' -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:574: warning: argument 'data' from the argument list of GNUNET_RECLAIM_credential_list_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:574: warning: argument 'data_size' from the argument list of GNUNET_RECLAIM_credential_list_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/reclaim/reclaim_credential.c:442: warning: argument 'attr' of command @param is not found in the argument list of GNUNET_RECLAIM_credential_serialize_get_size(const struct GNUNET_RECLAIM_Credential *credential) -/home/william/Git/gnunet/src/reclaim/reclaim_credential.c:457: warning: argument 'attr' of command @param is not found in the argument list of GNUNET_RECLAIM_credential_serialize(const struct GNUNET_RECLAIM_Credential *credential, char *result) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:595: warning: argument 'result' from the argument list of GNUNET_RECLAIM_credential_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/reclaim/reclaim_credential.c:255: warning: argument 'name' of command @param is not found in the argument list of GNUNET_RECLAIM_credential_new(const char *attr_name, uint32_t type, const void *data, size_t data_size) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:622: warning: argument 'type' from the argument list of GNUNET_RECLAIM_credential_new has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:622: warning: argument 'data' from the argument list of GNUNET_RECLAIM_credential_new has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:622: warning: argument 'data_size' from the argument list of GNUNET_RECLAIM_credential_new has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:674: warning: argument 'typename' of command @param is not found in the argument list of GNUNET_RECLAIM_credential_get_attributes(const struct GNUNET_RECLAIM_Credential *cred) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:681: warning: The following parameter of GNUNET_RECLAIM_credential_get_attributes(const struct GNUNET_RECLAIM_Credential *cred) is not documented: - parameter 'cred' -/home/william/Git/gnunet/src/reclaim/reclaim_credential.c:739: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_presentation_list_serialize_get_size(const struct GNUNET_RECLAIM_PresentationList *presentations) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:704: warning: argument 'presentations' of command @param is not found in the argument list of GNUNET_RECLAIM_presentation_list_destroy(struct GNUNET_RECLAIM_PresentationList *al) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:704: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_presentation_list_destroy(struct GNUNET_RECLAIM_PresentationList *al) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:710: warning: The following parameter of GNUNET_RECLAIM_presentation_list_destroy(struct GNUNET_RECLAIM_PresentationList *al) is not documented: - parameter 'al' -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:714: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_presentation_list_serialize(const struct GNUNET_RECLAIM_PresentationList *presentations, char *result) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:722: warning: argument 'result' from the argument list of GNUNET_RECLAIM_presentation_list_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:735: warning: argument 'data' from the argument list of GNUNET_RECLAIM_presentation_list_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:735: warning: argument 'data_size' from the argument list of GNUNET_RECLAIM_presentation_list_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/reclaim/reclaim_credential.c:889: warning: argument 'attr' of command @param is not found in the argument list of GNUNET_RECLAIM_presentation_serialize_get_size(const struct GNUNET_RECLAIM_Presentation *presentation) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:748: warning: argument 'attr' of command @param is not found in the argument list of GNUNET_RECLAIM_presentation_serialize(const struct GNUNET_RECLAIM_Presentation *presentation, char *result) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:756: warning: argument 'result' from the argument list of GNUNET_RECLAIM_presentation_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:770: warning: argument 'data' from the argument list of GNUNET_RECLAIM_presentation_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:770: warning: argument 'data_size' from the argument list of GNUNET_RECLAIM_presentation_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:782: warning: argument 'type' from the argument list of GNUNET_RECLAIM_presentation_value_to_string has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:782: warning: argument 'data' from the argument list of GNUNET_RECLAIM_presentation_value_to_string has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:782: warning: argument 'data_size' from the argument list of GNUNET_RECLAIM_presentation_value_to_string has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:802: warning: argument 'type' from the argument list of GNUNET_RECLAIM_presentation_string_to_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:802: warning: argument 's' from the argument list of GNUNET_RECLAIM_presentation_string_to_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:802: warning: argument 'data' from the argument list of GNUNET_RECLAIM_presentation_string_to_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:802: warning: argument 'data_size' from the argument list of GNUNET_RECLAIM_presentation_string_to_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:815: warning: argument 'type' from the argument list of GNUNET_RECLAIM_presentation_number_to_typename has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:845: warning: argument 'cred' from the argument list of GNUNET_RECLAIM_credential_get_presentation has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:845: warning: argument 'attrs' from the argument list of GNUNET_RECLAIM_credential_get_presentation has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:173: warning: argument 'cfg' from the argument list of GNUNET_RECLAIM_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:189: warning: argument 'h' from the argument list of GNUNET_RECLAIM_attribute_store has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:189: warning: argument 'pkey' from the argument list of GNUNET_RECLAIM_attribute_store has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:189: warning: argument 'attr' from the argument list of GNUNET_RECLAIM_attribute_store has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:189: warning: argument 'exp_interval' from the argument list of GNUNET_RECLAIM_attribute_store has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:189: warning: argument 'cont' from the argument list of GNUNET_RECLAIM_attribute_store has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:189: warning: argument 'cont_cls' from the argument list of GNUNET_RECLAIM_attribute_store has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:210: warning: argument 'h' from the argument list of GNUNET_RECLAIM_credential_store has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:210: warning: argument 'pkey' from the argument list of GNUNET_RECLAIM_credential_store has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:210: warning: argument 'attr' from the argument list of GNUNET_RECLAIM_credential_store has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:210: warning: argument 'exp_interval' from the argument list of GNUNET_RECLAIM_credential_store has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:210: warning: argument 'cont' from the argument list of GNUNET_RECLAIM_credential_store has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:210: warning: argument 'cont_cls' from the argument list of GNUNET_RECLAIM_credential_store has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:237: warning: argument 'cred' of command @param is not found in the argument list of GNUNET_RECLAIM_credential_delete(struct GNUNET_RECLAIM_Handle *h, const struct GNUNET_IDENTITY_PrivateKey *pkey, const struct GNUNET_RECLAIM_Credential *attr, GNUNET_RECLAIM_ContinuationWithStatus cont, void *cont_cls) -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:249: warning: argument 'h' from the argument list of GNUNET_RECLAIM_credential_delete has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:249: warning: argument 'pkey' from the argument list of GNUNET_RECLAIM_credential_delete has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:249: warning: argument 'cont' from the argument list of GNUNET_RECLAIM_credential_delete has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:249: warning: argument 'cont_cls' from the argument list of GNUNET_RECLAIM_credential_delete has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:296: warning: argument 'it' from the argument list of GNUNET_RECLAIM_get_attributes_next has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:348: warning: argument 'it' of command @param is not found in the argument list of GNUNET_RECLAIM_get_credentials_next(struct GNUNET_RECLAIM_CredentialIterator *ait) -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:348: warning: argument 'it' of command @param is not found in the argument list of GNUNET_RECLAIM_get_credentials_next(struct GNUNET_RECLAIM_CredentialIterator *ait) -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:355: warning: The following parameter of GNUNET_RECLAIM_get_credentials_next(struct GNUNET_RECLAIM_CredentialIterator *ait) is not documented: - parameter 'ait' -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:359: warning: argument 'it' of command @param is not found in the argument list of GNUNET_RECLAIM_get_credentials_stop(struct GNUNET_RECLAIM_CredentialIterator *ait) -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:367: warning: The following parameter of GNUNET_RECLAIM_get_credentials_stop(struct GNUNET_RECLAIM_CredentialIterator *ait) is not documented: - parameter 'ait' -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:386: warning: Found unknown command '\GNUNET_RECLAIM_ticket_consume' -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:385: warning: argument 'h' from the argument list of GNUNET_RECLAIM_ticket_issue has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:385: warning: argument 'iss' from the argument list of GNUNET_RECLAIM_ticket_issue has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:385: warning: argument 'rp' from the argument list of GNUNET_RECLAIM_ticket_issue has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:385: warning: argument 'attrs' from the argument list of GNUNET_RECLAIM_ticket_issue has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:385: warning: argument 'cb' from the argument list of GNUNET_RECLAIM_ticket_issue has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:385: warning: argument 'cb_cls' from the argument list of GNUNET_RECLAIM_ticket_issue has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:427: warning: argument 'h' from the argument list of GNUNET_RECLAIM_ticket_consume has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:427: warning: argument 'identity' from the argument list of GNUNET_RECLAIM_ticket_consume has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:427: warning: argument 'ticket' from the argument list of GNUNET_RECLAIM_ticket_consume has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:427: warning: argument 'cb' from the argument list of GNUNET_RECLAIM_ticket_consume has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:427: warning: argument 'cb_cls' from the argument list of GNUNET_RECLAIM_ticket_consume has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:452: warning: argument 'h' from the argument list of GNUNET_RECLAIM_ticket_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:452: warning: argument 'identity' from the argument list of GNUNET_RECLAIM_ticket_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:452: warning: argument 'error_cb' from the argument list of GNUNET_RECLAIM_ticket_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:452: warning: argument 'error_cb_cls' from the argument list of GNUNET_RECLAIM_ticket_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:452: warning: argument 'proc' from the argument list of GNUNET_RECLAIM_ticket_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:452: warning: argument 'proc_cls' from the argument list of GNUNET_RECLAIM_ticket_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:452: warning: argument 'finish_cb' from the argument list of GNUNET_RECLAIM_ticket_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:452: warning: argument 'finish_cb_cls' from the argument list of GNUNET_RECLAIM_ticket_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:487: warning: argument 'h' from the argument list of GNUNET_RECLAIM_disconnect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:499: warning: argument 'op' from the argument list of GNUNET_RECLAIM_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_regex_service.h:83: warning: argument 'cfg' from the argument list of GNUNET_REGEX_announce has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_regex_service.h:83: warning: argument 'regex' from the argument list of GNUNET_REGEX_announce has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_regex_service.h:83: warning: argument 'refresh_delay' from the argument list of GNUNET_REGEX_announce has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_regex_service.h:83: warning: argument 'compression' from the argument list of GNUNET_REGEX_announce has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_regex_service.h:95: warning: argument 'a' from the argument list of GNUNET_REGEX_announce_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_regex_service.h:130: warning: argument 'cfg' from the argument list of GNUNET_REGEX_search has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_regex_service.h:130: warning: argument 'string' from the argument list of GNUNET_REGEX_search has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_regex_service.h:130: warning: argument 'callback' from the argument list of GNUNET_REGEX_search has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_regex_service.h:130: warning: argument 'callback_cls' from the argument list of GNUNET_REGEX_search has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_regex_service.h:142: warning: argument 's' from the argument list of GNUNET_REGEX_search_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_resolver_service.h:111: warning: argument 'af' from the argument list of GNUNET_RESOLVER_hostname_resolve has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_resolver_service.h:111: warning: argument 'timeout' from the argument list of GNUNET_RESOLVER_hostname_resolve has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_resolver_service.h:111: warning: argument 'callback' from the argument list of GNUNET_RESOLVER_hostname_resolve has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_resolver_service.h:111: warning: argument 'cls' from the argument list of GNUNET_RESOLVER_hostname_resolve has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_resolver_service.h:149: warning: argument 'sa' from the argument list of GNUNET_RESOLVER_hostname_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_resolver_service.h:149: warning: argument 'salen' from the argument list of GNUNET_RESOLVER_hostname_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_resolver_service.h:149: warning: argument 'do_resolve' from the argument list of GNUNET_RESOLVER_hostname_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_resolver_service.h:149: warning: argument 'timeout' from the argument list of GNUNET_RESOLVER_hostname_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_resolver_service.h:149: warning: argument 'callback' from the argument list of GNUNET_RESOLVER_hostname_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_resolver_service.h:149: warning: argument 'cls' from the argument list of GNUNET_RESOLVER_hostname_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_rest_lib.h:121: warning: argument 'url' from the argument list of GNUNET_REST_namespace_match has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_rest_lib.h:121: warning: argument 'namespace' from the argument list of GNUNET_REST_namespace_match has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_rest_lib.h:130: warning: argument 'data' from the argument list of GNUNET_REST_create_response has multiple @param documentation sections -/home/william/Git/gnunet/src/revocation/revocation_api.c:286: warning: argument 'key' of command @param is not found in the argument list of GNUNET_REVOCATION_revoke(const struct GNUNET_CONFIGURATION_Handle *cfg, const struct GNUNET_REVOCATION_PowP *pow, GNUNET_REVOCATION_Callback func, void *func_cls) -/home/william/Git/gnunet/src/revocation/revocation_api.c:286: warning: argument 'sig' of command @param is not found in the argument list of GNUNET_REVOCATION_revoke(const struct GNUNET_CONFIGURATION_Handle *cfg, const struct GNUNET_REVOCATION_PowP *pow, GNUNET_REVOCATION_Callback func, void *func_cls) -/home/william/Git/gnunet/src/revocation/revocation_api.c:298: warning: explicit link request to 'GNUNET_REVOCATION_sign_revocation' could not be resolved -/home/william/Git/gnunet/src/revocation/revocation_api.c:286: warning: argument 'ts' of command @param is not found in the argument list of GNUNET_REVOCATION_revoke(const struct GNUNET_CONFIGURATION_Handle *cfg, const struct GNUNET_REVOCATION_PowP *pow, GNUNET_REVOCATION_Callback func, void *func_cls) -/home/william/Git/gnunet/src/include/gnunet_revocation_service.h:186: warning: argument 'cfg' from the argument list of GNUNET_REVOCATION_revoke has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_revocation_service.h:186: warning: argument 'pow' from the argument list of GNUNET_REVOCATION_revoke has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_revocation_service.h:186: warning: argument 'func' from the argument list of GNUNET_REVOCATION_revoke has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_revocation_service.h:186: warning: argument 'func_cls' from the argument list of GNUNET_REVOCATION_revoke has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_revocation_service.h:202: warning: argument 'matching_bits' of command @param is not found in the argument list of GNUNET_REVOCATION_check_pow(const struct GNUNET_REVOCATION_PowP *pow, unsigned int difficulty, struct GNUNET_TIME_Relative epoch_duration) -/home/william/Git/gnunet/src/include/gnunet_revocation_service.h:197: warning: The following parameter of GNUNET_REVOCATION_check_pow(const struct GNUNET_REVOCATION_PowP *pow, unsigned int difficulty, struct GNUNET_TIME_Relative epoch_duration) is not documented: - parameter 'difficulty' -/home/william/Git/gnunet/src/include/gnunet_revocation_service.h:221: warning: argument 'key' from the argument list of GNUNET_REVOCATION_pow_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_revocation_service.h:221: warning: argument 'pow' from the argument list of GNUNET_REVOCATION_pow_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_revocation_service.h:240: warning: argument 'epochs' of command @param is not found in the argument list of GNUNET_REVOCATION_pow_round(struct GNUNET_REVOCATION_PowCalculationHandle *pc) -/home/william/Git/gnunet/src/include/gnunet_revocation_service.h:240: warning: argument 'pow' of command @param is not found in the argument list of GNUNET_REVOCATION_pow_round(struct GNUNET_REVOCATION_PowCalculationHandle *pc) -/home/william/Git/gnunet/src/include/gnunet_revocation_service.h:240: warning: argument 'difficulty' of command @param is not found in the argument list of GNUNET_REVOCATION_pow_round(struct GNUNET_REVOCATION_PowCalculationHandle *pc) -/home/william/Git/gnunet/src/include/gnunet_revocation_service.h:235: warning: argument 'pc' from the argument list of GNUNET_REVOCATION_pow_round has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_revocation_service.h:258: warning: documented empty return type of GNUNET_REVOCATION_pow_stop -/home/william/Git/gnunet/src/include/gnunet_rps_service.h:96: warning: argument 'cfg' from the argument list of GNUNET_RPS_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_rps_service.h:106: warning: argument 'h' from the argument list of GNUNET_RPS_sub_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_rps_service.h:106: warning: argument 'shared_value' from the argument list of GNUNET_RPS_sub_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_rps_service.h:117: warning: argument 'h' from the argument list of GNUNET_RPS_sub_stop has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_rps_service.h:117: warning: argument 'shared_value' from the argument list of GNUNET_RPS_sub_stop has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/rps_api.c:942: warning: argument 'h' of command @param is not found in the argument list of GNUNET_RPS_request_peers(struct GNUNET_RPS_Handle *rps_handle, uint32_t num_req_peers, GNUNET_RPS_NotifyReadyCB ready_cb, void *cls) -/home/william/Git/gnunet/src/rps/rps_api.c:942: warning: argument 'n' of command @param is not found in the argument list of GNUNET_RPS_request_peers(struct GNUNET_RPS_Handle *rps_handle, uint32_t num_req_peers, GNUNET_RPS_NotifyReadyCB ready_cb, void *cls) -/home/william/Git/gnunet/src/include/gnunet_rps_service.h:136: warning: argument 'ready_cb' from the argument list of GNUNET_RPS_request_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_rps_service.h:136: warning: argument 'cls' from the argument list of GNUNET_RPS_request_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_rps_service.h:172: warning: argument 'rh' from the argument list of GNUNET_RPS_request_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_rps_service.h:211: warning: argument 'num_req_peers' of command @param is not found in the argument list of GNUNET_RPS_view_request(struct GNUNET_RPS_Handle *rps_handle, uint32_t num_updates, GNUNET_RPS_NotifyReadyCB view_update_cb, void *cls) -/home/william/Git/gnunet/src/include/gnunet_rps_service.h:211: warning: argument 'ready_cb' of command @param is not found in the argument list of GNUNET_RPS_view_request(struct GNUNET_RPS_Handle *rps_handle, uint32_t num_updates, GNUNET_RPS_NotifyReadyCB view_update_cb, void *cls) -/home/william/Git/gnunet/src/include/gnunet_rps_service.h:221: warning: The following parameters of GNUNET_RPS_view_request(struct GNUNET_RPS_Handle *rps_handle, uint32_t num_updates, GNUNET_RPS_NotifyReadyCB view_update_cb, void *cls) are not documented: - parameter 'num_updates' - parameter 'view_update_cb' -/home/william/Git/gnunet/src/include/gnunet_rps_service.h:227: warning: argument 'ready_cb' of command @param is not found in the argument list of GNUNET_RPS_stream_request(struct GNUNET_RPS_Handle *rps_handle, GNUNET_RPS_NotifyReadyCB stream_input_cb, void *cls) -/home/william/Git/gnunet/src/include/gnunet_rps_service.h:235: warning: The following parameter of GNUNET_RPS_stream_request(struct GNUNET_RPS_Handle *rps_handle, GNUNET_RPS_NotifyReadyCB stream_input_cb, void *cls) is not documented: - parameter 'stream_input_cb' -/home/william/Git/gnunet/src/include/gnunet_scalarproduct_service.h:158: warning: argument 'cfg' from the argument list of GNUNET_SCALARPRODUCT_start_computation has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scalarproduct_service.h:158: warning: argument 'session_key' from the argument list of GNUNET_SCALARPRODUCT_start_computation has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scalarproduct_service.h:158: warning: argument 'peer' from the argument list of GNUNET_SCALARPRODUCT_start_computation has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scalarproduct_service.h:158: warning: argument 'elements' from the argument list of GNUNET_SCALARPRODUCT_start_computation has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scalarproduct_service.h:158: warning: argument 'element_count' from the argument list of GNUNET_SCALARPRODUCT_start_computation has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scalarproduct_service.h:158: warning: argument 'cont' from the argument list of GNUNET_SCALARPRODUCT_start_computation has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scalarproduct_service.h:158: warning: argument 'cont_cls' from the argument list of GNUNET_SCALARPRODUCT_start_computation has multiple @param documentation sections -/home/william/Git/gnunet/src/scalarproduct/scalarproduct_api.c:213: warning: argument 'key' of command @param is not found in the argument list of GNUNET_SCALARPRODUCT_accept_computation(const struct GNUNET_CONFIGURATION_Handle *cfg, const struct GNUNET_HashCode *session_key, const struct GNUNET_SCALARPRODUCT_Element *elements, uint32_t element_count, GNUNET_SCALARPRODUCT_ContinuationWithStatus cont, void *cont_cls) -/home/william/Git/gnunet/src/include/gnunet_scalarproduct_service.h:180: warning: argument 'cfg' from the argument list of GNUNET_SCALARPRODUCT_accept_computation has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scalarproduct_service.h:180: warning: argument 'elements' from the argument list of GNUNET_SCALARPRODUCT_accept_computation has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scalarproduct_service.h:180: warning: argument 'element_count' from the argument list of GNUNET_SCALARPRODUCT_accept_computation has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scalarproduct_service.h:180: warning: argument 'cont' from the argument list of GNUNET_SCALARPRODUCT_accept_computation has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scalarproduct_service.h:180: warning: argument 'cont_cls' from the argument list of GNUNET_SCALARPRODUCT_accept_computation has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scheduler_lib.h:422: warning: argument 'task' from the argument list of GNUNET_SCHEDULER_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scheduler_lib.h:422: warning: argument 'task_cls' from the argument list of GNUNET_SCHEDULER_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scheduler_lib.h:464: warning: argument 'p' from the argument list of GNUNET_SCHEDULER_get_load has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scheduler_lib.h:576: warning: argument 'lifeness' from the argument list of GNUNET_SCHEDULER_add_now_with_lifeness has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scheduler_lib.h:576: warning: argument 'task' from the argument list of GNUNET_SCHEDULER_add_now_with_lifeness has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scheduler_lib.h:576: warning: argument 'task_cls' from the argument list of GNUNET_SCHEDULER_add_now_with_lifeness has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scheduler_lib.h:593: warning: argument 'delay' from the argument list of GNUNET_SCHEDULER_add_delayed has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scheduler_lib.h:593: warning: argument 'task' from the argument list of GNUNET_SCHEDULER_add_delayed has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scheduler_lib.h:593: warning: argument 'task_cls' from the argument list of GNUNET_SCHEDULER_add_delayed has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scheduler_lib.h:906: warning: argument 'new_select' from the argument list of GNUNET_SCHEDULER_set_select has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scheduler_lib.h:906: warning: argument 'new_select_cls' from the argument list of GNUNET_SCHEDULER_set_select has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scheduler_lib.h:906: warning: documented empty return type of GNUNET_SCHEDULER_set_select -/home/william/Git/gnunet/src/include/gnunet_secretsharing_service.h:235: warning: argument 'message' of command @param is not found in the argument list of GNUNET_SECRETSHARING_encrypt(const struct GNUNET_SECRETSHARING_PublicKey *public_key, const struct GNUNET_SECRETSHARING_Plaintext *plaintext, struct GNUNET_SECRETSHARING_Ciphertext *result_ciphertext) -/home/william/Git/gnunet/src/include/gnunet_secretsharing_service.h:235: warning: argument 'message_size' of command @param is not found in the argument list of GNUNET_SECRETSHARING_encrypt(const struct GNUNET_SECRETSHARING_PublicKey *public_key, const struct GNUNET_SECRETSHARING_Plaintext *plaintext, struct GNUNET_SECRETSHARING_Ciphertext *result_ciphertext) -/home/william/Git/gnunet/src/include/gnunet_secretsharing_service.h:249: warning: The following parameter of GNUNET_SECRETSHARING_encrypt(const struct GNUNET_SECRETSHARING_PublicKey *public_key, const struct GNUNET_SECRETSHARING_Plaintext *plaintext, struct GNUNET_SECRETSHARING_Ciphertext *result_ciphertext) is not documented: - parameter 'plaintext' -/home/william/Git/gnunet/src/include/gnunet_secretsharing_service.h:274: warning: argument 'share' from the argument list of GNUNET_SECRETSHARING_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_secretsharing_service.h:274: warning: argument 'ciphertext' from the argument list of GNUNET_SECRETSHARING_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_secretsharing_service.h:274: warning: argument 'decrypt_cb' from the argument list of GNUNET_SECRETSHARING_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_secretsharing_service.h:274: warning: argument 'decrypt_cb_cls' from the argument list of GNUNET_SECRETSHARING_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_service_lib.h:255: warning: argument 'options' of command @param is not found in the argument list of GNUNET_SERVICE_MAIN(service_name, service_options, init_cb, connect_cb, disconnect_cb, cls,...) -/home/william/Git/gnunet/src/include/gnunet_service_lib.h:255: warning: argument 'service_init_cb' of command @param is not found in the argument list of GNUNET_SERVICE_MAIN(service_name, service_options, init_cb, connect_cb, disconnect_cb, cls,...) -/home/william/Git/gnunet/src/include/gnunet_service_lib.h:313: warning: The following parameters of GNUNET_SERVICE_MAIN(service_name, service_options, init_cb, connect_cb, disconnect_cb, cls,...) are not documented: - parameter 'service_options' - parameter 'init_cb' - parameter '...' -/home/william/Git/gnunet/src/include/gnunet_service_lib.h:401: warning: argument 'c' from the argument list of GNUNET_SERVICE_client_drop has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_service_lib.h:415: warning: explicit link request to 'GNUNET_SERVICE_stop_listening()' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_set_service.h:364: warning: argument 'set' from the argument list of GNUNET_SET_add_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:364: warning: argument 'element' from the argument list of GNUNET_SET_add_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:364: warning: argument 'cont' from the argument list of GNUNET_SET_add_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:364: warning: argument 'cont_cls' from the argument list of GNUNET_SET_add_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:384: warning: argument 'set' from the argument list of GNUNET_SET_remove_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:384: warning: argument 'element' from the argument list of GNUNET_SET_remove_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:384: warning: argument 'cont' from the argument list of GNUNET_SET_remove_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:384: warning: argument 'cont_cls' from the argument list of GNUNET_SET_remove_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:405: warning: argument 'set' from the argument list of GNUNET_SET_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:423: warning: argument 'other_peer' from the argument list of GNUNET_SET_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:423: warning: argument 'app_id' from the argument list of GNUNET_SET_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:423: warning: argument 'context_msg' from the argument list of GNUNET_SET_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:423: warning: argument 'result_mode' from the argument list of GNUNET_SET_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:423: warning: argument 'result_cb' from the argument list of GNUNET_SET_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:423: warning: argument 'result_cls' from the argument list of GNUNET_SET_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:423: warning: The following parameter of GNUNET_SET_prepare(const struct GNUNET_PeerIdentity *other_peer, const struct GNUNET_HashCode *app_id, const struct GNUNET_MessageHeader *context_msg, enum GNUNET_SET_ResultMode result_mode, struct GNUNET_SET_Option options[], GNUNET_SET_ResultIterator result_cb, void *result_cls) is not documented: - parameter 'options' -/home/william/Git/gnunet/src/include/gnunet_set_service.h:447: warning: argument 'cfg' from the argument list of GNUNET_SET_listen has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:447: warning: argument 'operation' from the argument list of GNUNET_SET_listen has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:447: warning: argument 'app_id' from the argument list of GNUNET_SET_listen has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:447: warning: argument 'listen_cb' from the argument list of GNUNET_SET_listen has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:447: warning: argument 'listen_cls' from the argument list of GNUNET_SET_listen has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:463: warning: argument 'lh' from the argument list of GNUNET_SET_listen_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:481: warning: argument 'request' from the argument list of GNUNET_SET_accept has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:481: warning: argument 'result_mode' from the argument list of GNUNET_SET_accept has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:481: warning: argument 'result_cb' from the argument list of GNUNET_SET_accept has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:481: warning: argument 'result_cls' from the argument list of GNUNET_SET_accept has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:481: warning: The following parameter of GNUNET_SET_accept(struct GNUNET_SET_Request *request, enum GNUNET_SET_ResultMode result_mode, struct GNUNET_SET_Option options[], GNUNET_SET_ResultIterator result_cb, void *result_cls) is not documented: - parameter 'options' -/home/william/Git/gnunet/src/include/gnunet_set_service.h:514: warning: argument 'oh' from the argument list of GNUNET_SET_operation_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:531: warning: argument 'set' from the argument list of GNUNET_SET_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:531: warning: argument 'iter' from the argument list of GNUNET_SET_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:531: warning: argument 'iter_cls' from the argument list of GNUNET_SET_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:566: warning: argument 'element' from the argument list of GNUNET_SET_element_hash has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:566: warning: argument 'ret_hash' from the argument list of GNUNET_SET_element_hash has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:176: warning: explicit link request to 'GNUNET_SETI_STATUS_OK' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:218: warning: argument 'cfg' from the argument list of GNUNET_SETI_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:232: warning: argument 'set' from the argument list of GNUNET_SETI_add_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:232: warning: argument 'element' from the argument list of GNUNET_SETI_add_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:232: warning: argument 'cb' from the argument list of GNUNET_SETI_add_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:232: warning: argument 'cb_cls' from the argument list of GNUNET_SETI_add_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:245: warning: argument 'set' from the argument list of GNUNET_SETI_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:262: warning: argument 'other_peer' from the argument list of GNUNET_SETI_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:262: warning: argument 'app_id' from the argument list of GNUNET_SETI_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:262: warning: argument 'context_msg' from the argument list of GNUNET_SETI_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:262: warning: argument 'options' from the argument list of GNUNET_SETI_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:262: warning: argument 'result_cb' from the argument list of GNUNET_SETI_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:262: warning: argument 'result_cls' from the argument list of GNUNET_SETI_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:284: warning: argument 'cfg' from the argument list of GNUNET_SETI_listen has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:284: warning: argument 'app_id' from the argument list of GNUNET_SETI_listen has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:284: warning: argument 'listen_cb' from the argument list of GNUNET_SETI_listen has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:284: warning: argument 'listen_cls' from the argument list of GNUNET_SETI_listen has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:299: warning: argument 'lh' from the argument list of GNUNET_SETI_listen_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:316: warning: argument 'request' from the argument list of GNUNET_SETI_accept has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:316: warning: argument 'options' from the argument list of GNUNET_SETI_accept has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:316: warning: argument 'result_cb' from the argument list of GNUNET_SETI_accept has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:316: warning: argument 'result_cls' from the argument list of GNUNET_SETI_accept has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:348: warning: argument 'oh' from the argument list of GNUNET_SETI_operation_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:221: warning: explicit link request to 'GNUNET_SETU_STATUS_OK' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:277: warning: argument 'set' from the argument list of GNUNET_SETU_add_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:277: warning: argument 'element' from the argument list of GNUNET_SETU_add_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:277: warning: argument 'cb' from the argument list of GNUNET_SETU_add_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:277: warning: argument 'cb_cls' from the argument list of GNUNET_SETU_add_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:290: warning: argument 'set' from the argument list of GNUNET_SETU_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:307: warning: argument 'other_peer' from the argument list of GNUNET_SETU_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:307: warning: argument 'app_id' from the argument list of GNUNET_SETU_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:307: warning: argument 'context_msg' from the argument list of GNUNET_SETU_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:307: warning: argument 'result_cb' from the argument list of GNUNET_SETU_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:307: warning: argument 'result_cls' from the argument list of GNUNET_SETU_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:329: warning: argument 'cfg' from the argument list of GNUNET_SETU_listen has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:329: warning: argument 'app_id' from the argument list of GNUNET_SETU_listen has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:329: warning: argument 'listen_cb' from the argument list of GNUNET_SETU_listen has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:329: warning: argument 'listen_cls' from the argument list of GNUNET_SETU_listen has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:344: warning: argument 'lh' from the argument list of GNUNET_SETU_listen_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:347: warning: argument 'result_mode' of command @param is not found in the argument list of GNUNET_SETU_accept(struct GNUNET_SETU_Request *request, const struct GNUNET_SETU_Option options[], GNUNET_SETU_ResultIterator result_cb, void *result_cls) -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:361: warning: argument 'request' from the argument list of GNUNET_SETU_accept has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:361: warning: argument 'result_cb' from the argument list of GNUNET_SETU_accept has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:361: warning: argument 'result_cls' from the argument list of GNUNET_SETU_accept has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:393: warning: argument 'oh' from the argument list of GNUNET_SETU_operation_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_sq_lib.h:92: warning: Found unknown command '\oaran' -/home/william/Git/gnunet/src/include/gnunet_sq_lib.h:1: warning: The following parameter of GNUNET_SQ_query_param_fixed_size(const void *ptr, size_t ptr_size) is not documented: - parameter 'ptr_size' -/home/william/Git/gnunet/src/include/gnunet_sq_lib.h:190: warning: argument 'db_conn' of command @param is not found in the argument list of GNUNET_SQ_bind(sqlite3_stmt *stmt, const struct GNUNET_SQ_QueryParam *params) -/home/william/Git/gnunet/src/include/gnunet_sq_lib.h:190: warning: argument 'db_conn' of command @param is not found in the argument list of GNUNET_SQ_bind(sqlite3_stmt *stmt, const struct GNUNET_SQ_QueryParam *params) -/home/william/Git/gnunet/src/include/gnunet_sq_lib.h:198: warning: argument 'params' from the argument list of GNUNET_SQ_bind has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_sq_lib.h:198: warning: The following parameter of GNUNET_SQ_bind(sqlite3_stmt *stmt, const struct GNUNET_SQ_QueryParam *params) is not documented: - parameter 'stmt' -/home/william/Git/gnunet/src/include/gnunet_sq_lib.h:502: warning: argument 'dbh' from the argument list of GNUNET_SQ_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_sq_lib.h:502: warning: argument 'ps' from the argument list of GNUNET_SQ_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_statistics_service.h:174: warning: argument 'handle' from the argument list of GNUNET_STATISTICS_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_statistics_service.h:174: warning: argument 'subsystem' from the argument list of GNUNET_STATISTICS_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_statistics_service.h:174: warning: argument 'name' from the argument list of GNUNET_STATISTICS_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_statistics_service.h:174: warning: argument 'cont' from the argument list of GNUNET_STATISTICS_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_statistics_service.h:174: warning: argument 'proc' from the argument list of GNUNET_STATISTICS_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_statistics_service.h:174: warning: argument 'cls' from the argument list of GNUNET_STATISTICS_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_statistics_service.h:189: warning: argument 'gh' from the argument list of GNUNET_STATISTICS_get_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_statistics_service.h:202: warning: argument 'handle' from the argument list of GNUNET_STATISTICS_set has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_statistics_service.h:202: warning: argument 'name' from the argument list of GNUNET_STATISTICS_set has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_statistics_service.h:202: warning: argument 'value' from the argument list of GNUNET_STATISTICS_set has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_statistics_service.h:202: warning: argument 'make_persistent' from the argument list of GNUNET_STATISTICS_set has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_statistics_service.h:218: warning: argument 'handle' from the argument list of GNUNET_STATISTICS_update has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_statistics_service.h:218: warning: argument 'name' from the argument list of GNUNET_STATISTICS_update has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_statistics_service.h:218: warning: argument 'delta' from the argument list of GNUNET_STATISTICS_update has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_statistics_service.h:218: warning: argument 'make_persistent' from the argument list of GNUNET_STATISTICS_update has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_strings_lib.h:388: warning: argument 'data' of command @param is not found in the argument list of GNUNET_STRINGS_base64_encode(const void *in, size_t len, char **output) -/home/william/Git/gnunet/src/include/gnunet_strings_lib.h:396: warning: The following parameter of GNUNET_STRINGS_base64_encode(const void *in, size_t len, char **output) is not documented: - parameter 'in' -/home/william/Git/gnunet/src/include/gnunet_strings_lib.h:403: warning: argument 'output' of command @param is not found in the argument list of GNUNET_STRINGS_urlencode(const char *data, size_t len, char **out) -/home/william/Git/gnunet/src/include/gnunet_strings_lib.h:411: warning: The following parameter of GNUNET_STRINGS_urlencode(const char *data, size_t len, char **out) is not documented: - parameter 'out' -/home/william/Git/gnunet/src/include/gnunet_strings_lib.h:446: warning: argument 'output' of command @param is not found in the argument list of GNUNET_STRINGS_base64url_decode(const char *data, size_t len, void **out) -/home/william/Git/gnunet/src/include/gnunet_strings_lib.h:456: warning: The following parameter of GNUNET_STRINGS_base64url_decode(const char *data, size_t len, void **out) is not documented: - parameter 'out' -/home/william/Git/gnunet/src/include/gnunet_testbed_logger_service.h:71: warning: argument 'h' from the argument list of GNUNET_TESTBED_LOGGER_disconnect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_logger_service.h:109: warning: argument 'h' from the argument list of GNUNET_TESTBED_LOGGER_flush has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_logger_service.h:109: warning: argument 'cb' from the argument list of GNUNET_TESTBED_LOGGER_flush has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_logger_service.h:109: warning: argument 'cb_cls' from the argument list of GNUNET_TESTBED_LOGGER_flush has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:117: warning: argument 'id' from the argument list of GNUNET_TESTBED_host_create_with_id has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:117: warning: argument 'hostname' from the argument list of GNUNET_TESTBED_host_create_with_id has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:117: warning: argument 'username' from the argument list of GNUNET_TESTBED_host_create_with_id has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:117: warning: argument 'cfg' from the argument list of GNUNET_TESTBED_host_create_with_id has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:117: warning: argument 'port' from the argument list of GNUNET_TESTBED_host_create_with_id has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:138: warning: argument 'filename' from the argument list of GNUNET_TESTBED_hosts_load_from_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:138: warning: argument 'cfg' from the argument list of GNUNET_TESTBED_hosts_load_from_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:138: warning: argument 'hosts' from the argument list of GNUNET_TESTBED_hosts_load_from_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:479: warning: argument 'host' from the argument list of GNUNET_TESTBED_controller_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:479: warning: argument 'event_mask' from the argument list of GNUNET_TESTBED_controller_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:479: warning: argument 'cc' from the argument list of GNUNET_TESTBED_controller_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:479: warning: argument 'cc_cls' from the argument list of GNUNET_TESTBED_controller_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:529: warning: argument 'controller' from the argument list of GNUNET_TESTBED_register_host has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:529: warning: argument 'host' from the argument list of GNUNET_TESTBED_register_host has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:529: warning: argument 'cc' from the argument list of GNUNET_TESTBED_register_host has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:529: warning: argument 'cc_cls' from the argument list of GNUNET_TESTBED_register_host has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:545: warning: argument 'handle' from the argument list of GNUNET_TESTBED_cancel_registration has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:593: warning: argument 'op_cls' from the argument list of GNUNET_TESTBED_controller_link has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:593: warning: argument 'master' from the argument list of GNUNET_TESTBED_controller_link has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:593: warning: argument 'delegated_host' from the argument list of GNUNET_TESTBED_controller_link has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:593: warning: argument 'slave_host' from the argument list of GNUNET_TESTBED_controller_link has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:593: warning: argument 'is_subordinate' from the argument list of GNUNET_TESTBED_controller_link has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:616: warning: argument 'op_cls' from the argument list of GNUNET_TESTBED_get_slave_config has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:616: warning: argument 'master' from the argument list of GNUNET_TESTBED_get_slave_config has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:616: warning: argument 'slave_host' from the argument list of GNUNET_TESTBED_get_slave_config has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:666: warning: argument 'controller' from the argument list of GNUNET_TESTBED_peer_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:666: warning: argument 'host' from the argument list of GNUNET_TESTBED_peer_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:666: warning: argument 'cfg' from the argument list of GNUNET_TESTBED_peer_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:666: warning: argument 'cb' from the argument list of GNUNET_TESTBED_peer_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:666: warning: argument 'cls' from the argument list of GNUNET_TESTBED_peer_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:696: warning: argument 'op_cls' from the argument list of GNUNET_TESTBED_peer_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:696: warning: argument 'peer' from the argument list of GNUNET_TESTBED_peer_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:696: warning: argument 'pcc' from the argument list of GNUNET_TESTBED_peer_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:696: warning: argument 'pcc_cls' from the argument list of GNUNET_TESTBED_peer_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:715: warning: argument 'op_cls' from the argument list of GNUNET_TESTBED_peer_stop has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:715: warning: argument 'peer' from the argument list of GNUNET_TESTBED_peer_stop has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:715: warning: argument 'pcc' from the argument list of GNUNET_TESTBED_peer_stop has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:715: warning: argument 'pcc_cls' from the argument list of GNUNET_TESTBED_peer_stop has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:783: warning: argument 'peer' from the argument list of GNUNET_TESTBED_peer_get_information has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:783: warning: argument 'pit' from the argument list of GNUNET_TESTBED_peer_get_information has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:783: warning: argument 'cb' from the argument list of GNUNET_TESTBED_peer_get_information has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:783: warning: argument 'cb_cls' from the argument list of GNUNET_TESTBED_peer_get_information has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:799: warning: argument 'peer' from the argument list of GNUNET_TESTBED_peer_update_configuration has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:799: warning: argument 'cfg' from the argument list of GNUNET_TESTBED_peer_update_configuration has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:831: warning: argument 'op_cls' from the argument list of GNUNET_TESTBED_peer_manage_service has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:831: warning: argument 'peer' from the argument list of GNUNET_TESTBED_peer_manage_service has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:831: warning: argument 'service_name' from the argument list of GNUNET_TESTBED_peer_manage_service has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:831: warning: argument 'cb' from the argument list of GNUNET_TESTBED_peer_manage_service has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:831: warning: argument 'cb_cls' from the argument list of GNUNET_TESTBED_peer_manage_service has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:831: warning: argument 'start' from the argument list of GNUNET_TESTBED_peer_manage_service has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1041: warning: argument 'op_cls' from the argument list of GNUNET_TESTBED_underlay_configure_topology_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1041: warning: argument 'num_peers' from the argument list of GNUNET_TESTBED_underlay_configure_topology_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1041: warning: argument 'peers' from the argument list of GNUNET_TESTBED_underlay_configure_topology_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1041: warning: argument 'topo' from the argument list of GNUNET_TESTBED_underlay_configure_topology_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1041: warning: argument 'ap' from the argument list of GNUNET_TESTBED_underlay_configure_topology_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1063: warning: argument 'op_cls' from the argument list of GNUNET_TESTBED_underlay_configure_topology has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1063: warning: argument 'num_peers' from the argument list of GNUNET_TESTBED_underlay_configure_topology has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1063: warning: argument 'peers' from the argument list of GNUNET_TESTBED_underlay_configure_topology has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1063: warning: argument 'topo' from the argument list of GNUNET_TESTBED_underlay_configure_topology has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1086: warning: argument 'op_cls' from the argument list of GNUNET_TESTBED_overlay_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1086: warning: argument 'cb' from the argument list of GNUNET_TESTBED_overlay_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1086: warning: argument 'cb_cls' from the argument list of GNUNET_TESTBED_overlay_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1086: warning: argument 'p1' from the argument list of GNUNET_TESTBED_overlay_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1086: warning: argument 'p2' from the argument list of GNUNET_TESTBED_overlay_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1130: warning: argument 'op_cls' from the argument list of GNUNET_TESTBED_overlay_configure_topology_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1130: warning: argument 'num_peers' from the argument list of GNUNET_TESTBED_overlay_configure_topology_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1130: warning: argument 'peers' from the argument list of GNUNET_TESTBED_overlay_configure_topology_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1130: warning: argument 'max_connections' from the argument list of GNUNET_TESTBED_overlay_configure_topology_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1130: warning: argument 'comp_cb' from the argument list of GNUNET_TESTBED_overlay_configure_topology_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1130: warning: argument 'comp_cb_cls' from the argument list of GNUNET_TESTBED_overlay_configure_topology_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1130: warning: argument 'topo' from the argument list of GNUNET_TESTBED_overlay_configure_topology_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1130: warning: argument 'va' from the argument list of GNUNET_TESTBED_overlay_configure_topology_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1186: warning: argument 'controller' from the argument list of GNUNET_TESTBED_overlay_write_topology_to_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1186: warning: argument 'filename' from the argument list of GNUNET_TESTBED_overlay_write_topology_to_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1259: warning: argument 'op_cls' from the argument list of GNUNET_TESTBED_service_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1259: warning: argument 'peer' from the argument list of GNUNET_TESTBED_service_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1259: warning: argument 'service_name' from the argument list of GNUNET_TESTBED_service_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1259: warning: argument 'cb' from the argument list of GNUNET_TESTBED_service_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1259: warning: argument 'cb_cls' from the argument list of GNUNET_TESTBED_service_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1259: warning: argument 'ca' from the argument list of GNUNET_TESTBED_service_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1259: warning: argument 'da' from the argument list of GNUNET_TESTBED_service_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1259: warning: argument 'cada_cls' from the argument list of GNUNET_TESTBED_service_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1331: warning: argument 'num_peers' from the argument list of GNUNET_TESTBED_get_statistics has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1331: warning: argument 'peers' from the argument list of GNUNET_TESTBED_get_statistics has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1331: warning: argument 'subsystem' from the argument list of GNUNET_TESTBED_get_statistics has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1331: warning: argument 'name' from the argument list of GNUNET_TESTBED_get_statistics has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1331: warning: argument 'proc' from the argument list of GNUNET_TESTBED_get_statistics has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1331: warning: argument 'cont' from the argument list of GNUNET_TESTBED_get_statistics has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1331: warning: argument 'cls' from the argument list of GNUNET_TESTBED_get_statistics has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1414: warning: argument 'host_filename' from the argument list of GNUNET_TESTBED_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1414: warning: argument 'cfg' from the argument list of GNUNET_TESTBED_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1414: warning: argument 'num_peers' from the argument list of GNUNET_TESTBED_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1414: warning: argument 'event_mask' from the argument list of GNUNET_TESTBED_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1414: warning: argument 'cc' from the argument list of GNUNET_TESTBED_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1414: warning: argument 'cc_cls' from the argument list of GNUNET_TESTBED_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1414: warning: argument 'test_master' from the argument list of GNUNET_TESTBED_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1414: warning: argument 'test_master_cls' from the argument list of GNUNET_TESTBED_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1463: warning: argument 'testname' from the argument list of GNUNET_TESTBED_test_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1463: warning: argument 'cfg_filename' from the argument list of GNUNET_TESTBED_test_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1463: warning: argument 'num_peers' from the argument list of GNUNET_TESTBED_test_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1463: warning: argument 'event_mask' from the argument list of GNUNET_TESTBED_test_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1463: warning: argument 'cc' from the argument list of GNUNET_TESTBED_test_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1463: warning: argument 'cc_cls' from the argument list of GNUNET_TESTBED_test_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1463: warning: argument 'test_master' from the argument list of GNUNET_TESTBED_test_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1463: warning: argument 'test_master_cls' from the argument list of GNUNET_TESTBED_test_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1535: warning: argument 'cb_cls' of command @param is not found in the argument list of GNUNET_TESTBED_barrier_init(struct GNUNET_TESTBED_Controller *controller, const char *name, unsigned int quorum, GNUNET_TESTBED_barrier_status_cb cb, void *cls) -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1550: warning: argument 'controller' from the argument list of GNUNET_TESTBED_barrier_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1550: warning: argument 'name' from the argument list of GNUNET_TESTBED_barrier_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1550: warning: argument 'quorum' from the argument list of GNUNET_TESTBED_barrier_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1550: warning: argument 'cb' from the argument list of GNUNET_TESTBED_barrier_init has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api_barriers.c:163: warning: argument 'cls' of command @param is not found in the argument list of GNUNET_TESTBED_barrier_wait(const char *name, GNUNET_TESTBED_barrier_wait_cb cb, void *cb_cls) -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1600: warning: argument 'name' from the argument list of GNUNET_TESTBED_barrier_wait has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1600: warning: argument 'cb' from the argument list of GNUNET_TESTBED_barrier_wait has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1612: warning: argument 'h' from the argument list of GNUNET_TESTBED_barrier_wait_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:161: warning: argument 'testdir' from the argument list of GNUNET_TESTING_system_create_with_portrange has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:161: warning: argument 'trusted_ip' from the argument list of GNUNET_TESTING_system_create_with_portrange has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:161: warning: argument 'hostname' from the argument list of GNUNET_TESTING_system_create_with_portrange has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:161: warning: argument 'shared_services' from the argument list of GNUNET_TESTING_system_create_with_portrange has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:161: warning: argument 'lowport' from the argument list of GNUNET_TESTING_system_create_with_portrange has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:161: warning: argument 'highport' from the argument list of GNUNET_TESTING_system_create_with_portrange has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:201: warning: argument 'system' from the argument list of GNUNET_TESTING_hostkey_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:201: warning: argument 'key_number' from the argument list of GNUNET_TESTING_hostkey_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:201: warning: argument 'id' from the argument list of GNUNET_TESTING_hostkey_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:213: warning: argument 'system' from the argument list of GNUNET_TESTING_reserve_port has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:224: warning: argument 'system' from the argument list of GNUNET_TESTING_release_port has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:224: warning: argument 'port' from the argument list of GNUNET_TESTING_release_port has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:246: warning: argument 'system' from the argument list of GNUNET_TESTING_configuration_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:246: warning: argument 'cfg' from the argument list of GNUNET_TESTING_configuration_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:305: warning: argument 'peer' from the argument list of GNUNET_TESTING_peer_stop has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:367: warning: argument 'peer' from the argument list of GNUNET_TESTING_peer_stop_async has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:367: warning: argument 'cb' from the argument list of GNUNET_TESTING_peer_stop_async has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:367: warning: argument 'cb_cls' from the argument list of GNUNET_TESTING_peer_stop_async has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:416: warning: argument 'testdir' from the argument list of GNUNET_TESTING_peer_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:416: warning: argument 'cfgfilename' from the argument list of GNUNET_TESTING_peer_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:416: warning: argument 'tm' from the argument list of GNUNET_TESTING_peer_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:416: warning: argument 'tm_cls' from the argument list of GNUNET_TESTING_peer_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:444: warning: argument 'testdir' from the argument list of GNUNET_TESTING_service_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:444: warning: argument 'service_name' from the argument list of GNUNET_TESTING_service_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:444: warning: argument 'cfgfilename' from the argument list of GNUNET_TESTING_service_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:444: warning: argument 'tm' from the argument list of GNUNET_TESTING_service_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:444: warning: argument 'tm_cls' from the argument list of GNUNET_TESTING_service_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_netjail_lib.h:303: warning: argument 'label' from the argument list of GNUNET_TESTING_cmd_system_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_netjail_lib.h:303: warning: The following parameter of GNUNET_TESTING_cmd_system_create(const char *label, const char *testdir) is not documented: - parameter 'testdir' -/home/william/Git/gnunet/src/include/gnunet_testing_netjail_lib.h:303: warning: argument 'label' from the argument list of GNUNET_TESTING_cmd_netjail_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_netjail_lib.h:303: warning: argument 'topology_config' from the argument list of GNUNET_TESTING_cmd_netjail_start has multiple @param documentation sections -/home/william/Git/gnunet/src/testing/testing_api_cmd_block_until_external_trigger.c:98: warning: argument 'all_peers_started' of command @param is not found in the argument list of GNUNET_TESTING_cmd_block_until_external_trigger(const char *label) -/home/william/Git/gnunet/src/testing/testing_api_cmd_block_until_external_trigger.c:98: warning: argument 'asynchronous_finish' of command @param is not found in the argument list of GNUNET_TESTING_cmd_block_until_external_trigger(const char *label) -/home/william/Git/gnunet/src/testing/testing_api_cmd_block_until_external_trigger.c:98: warning: argument 'all_peers_started' of command @param is not found in the argument list of GNUNET_TESTING_cmd_block_until_external_trigger(const char *label) -/home/william/Git/gnunet/src/testing/testing_api_cmd_block_until_external_trigger.c:98: warning: argument 'asynchronous_finish' of command @param is not found in the argument list of GNUNET_TESTING_cmd_block_until_external_trigger(const char *label) -/home/william/Git/gnunet/src/include/gnunet_testing_netjail_lib.h:428: warning: argument 'label' from the argument list of GNUNET_TESTING_cmd_block_until_external_trigger has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_netjail_lib.h:488: warning: argument 'all_local_tests_prepared' of command @param is not found in the argument list of GNUNET_TESTING_cmd_local_test_prepared(const char *label, TESTING_CMD_HELPER_write_cb write_message) -/home/william/Git/gnunet/src/include/gnunet_testing_ng_lib.h:236: warning: argument 'is' from the argument list of GNUNET_TESTING_interpreter_lookup_command has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_ng_lib.h:236: warning: argument 'label' from the argument list of GNUNET_TESTING_interpreter_lookup_command has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_ng_lib.h:417: warning: argument 'cmd' of command @param is not found in the argument list of GNUNET_TESTING_running(const struct GNUNET_TESTING_Command *command) -/home/william/Git/gnunet/src/include/gnunet_testing_ng_lib.h:411: warning: The following parameter of GNUNET_TESTING_running(const struct GNUNET_TESTING_Command *command) is not documented: - parameter 'command' -/home/william/Git/gnunet/src/include/gnunet_testing_ng_lib.h:427: warning: argument 'cmd' of command @param is not found in the argument list of GNUNET_TESTING_finished(struct GNUNET_TESTING_Command *command) -/home/william/Git/gnunet/src/include/gnunet_testing_ng_lib.h:411: warning: The following parameter of GNUNET_TESTING_finished(struct GNUNET_TESTING_Command *command) is not documented: - parameter 'command' -/home/william/Git/gnunet/src/include/gnunet_testing_ng_lib.h:520: warning: argument 'traits' from the argument list of GNUNET_TESTING_get_trait has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_ng_lib.h:520: warning: argument 'ret' from the argument list of GNUNET_TESTING_get_trait has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_ng_lib.h:520: warning: argument 'trait' from the argument list of GNUNET_TESTING_get_trait has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_ng_lib.h:520: warning: argument 'index' from the argument list of GNUNET_TESTING_get_trait has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_time_lib.h:239: warning: argument 't' of command @param is not found in the argument list of GNUNET_TIME_absolute2s(struct GNUNET_TIME_Absolute ts) -/home/william/Git/gnunet/src/include/gnunet_time_lib.h:249: warning: The following parameter of GNUNET_TIME_absolute2s(struct GNUNET_TIME_Absolute ts) is not documented: - parameter 'ts' -/home/william/Git/gnunet/src/include/gnunet_transport_application_service.h:58: warning: argument 'cfg' from the argument list of GNUNET_TRANSPORT_application_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_application_service.h:68: warning: argument 'ch' from the argument list of GNUNET_TRANSPORT_application_done has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport_api2_communication.c:798: warning: argument 'mtu' of command @param is not found in the argument list of GNUNET_TRANSPORT_communicator_connect(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *config_section, const char *addr_prefix, enum GNUNET_TRANSPORT_CommunicatorCharacteristics cc, GNUNET_TRANSPORT_CommunicatorMqInit mq_init, void *mq_init_cls, GNUNET_TRANSPORT_CommunicatorNotify notify_cb, void *notify_cb_cls) -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:154: warning: argument 'cfg' from the argument list of GNUNET_TRANSPORT_communicator_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:154: warning: argument 'config_section' from the argument list of GNUNET_TRANSPORT_communicator_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:154: warning: argument 'addr_prefix' from the argument list of GNUNET_TRANSPORT_communicator_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:154: warning: argument 'cc' from the argument list of GNUNET_TRANSPORT_communicator_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:154: warning: argument 'mq_init' from the argument list of GNUNET_TRANSPORT_communicator_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:154: warning: argument 'mq_init_cls' from the argument list of GNUNET_TRANSPORT_communicator_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:154: warning: argument 'notify_cb' from the argument list of GNUNET_TRANSPORT_communicator_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:154: warning: argument 'notify_cb_cls' from the argument list of GNUNET_TRANSPORT_communicator_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport_api2_communication.c:876: warning: argument 'handle' of command @param is not found in the argument list of GNUNET_TRANSPORT_communicator_receive(struct GNUNET_TRANSPORT_CommunicatorHandle *ch, const struct GNUNET_PeerIdentity *sender, const struct GNUNET_MessageHeader *msg, struct GNUNET_TIME_Relative expected_addr_validity, GNUNET_TRANSPORT_MessageCompletedCallback cb, void *cb_cls) -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:212: warning: argument 'sender' from the argument list of GNUNET_TRANSPORT_communicator_receive has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:212: warning: argument 'msg' from the argument list of GNUNET_TRANSPORT_communicator_receive has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:212: warning: argument 'expected_addr_validity' from the argument list of GNUNET_TRANSPORT_communicator_receive has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:212: warning: argument 'cb' from the argument list of GNUNET_TRANSPORT_communicator_receive has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:212: warning: argument 'cb_cls' from the argument list of GNUNET_TRANSPORT_communicator_receive has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:252: warning: argument 'cc' of command @param is not found in the argument list of GNUNET_TRANSPORT_communicator_mq_add(struct GNUNET_TRANSPORT_CommunicatorHandle *ch, const struct GNUNET_PeerIdentity *peer, const char *address, uint32_t mtu, uint64_t q_len, uint32_t priority, enum GNUNET_NetworkType nt, enum GNUNET_TRANSPORT_ConnectionStatus cs, struct GNUNET_MQ_Handle *mq) -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:271: warning: argument 'ch' from the argument list of GNUNET_TRANSPORT_communicator_mq_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:271: warning: argument 'peer' from the argument list of GNUNET_TRANSPORT_communicator_mq_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:271: warning: argument 'address' from the argument list of GNUNET_TRANSPORT_communicator_mq_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:271: warning: argument 'mtu' from the argument list of GNUNET_TRANSPORT_communicator_mq_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:271: warning: argument 'q_len' from the argument list of GNUNET_TRANSPORT_communicator_mq_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:271: warning: argument 'priority' from the argument list of GNUNET_TRANSPORT_communicator_mq_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:271: warning: argument 'nt' from the argument list of GNUNET_TRANSPORT_communicator_mq_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:271: warning: argument 'cs' from the argument list of GNUNET_TRANSPORT_communicator_mq_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:271: warning: argument 'mq' from the argument list of GNUNET_TRANSPORT_communicator_mq_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:282: warning: argument 'qh' of command @param is not found in the argument list of GNUNET_TRANSPORT_communicator_mq_update(struct GNUNET_TRANSPORT_CommunicatorHandle *ch, const struct GNUNET_TRANSPORT_QueueHandle *u_qh, uint64_t q_len, uint32_t priority) -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:292: warning: The following parameter of GNUNET_TRANSPORT_communicator_mq_update(struct GNUNET_TRANSPORT_CommunicatorHandle *ch, const struct GNUNET_TRANSPORT_QueueHandle *u_qh, uint64_t q_len, uint32_t priority) is not documented: - parameter 'u_qh' -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:370: warning: argument 'ch' from the argument list of GNUNET_TRANSPORT_communicator_notify has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:370: warning: argument 'pid' from the argument list of GNUNET_TRANSPORT_communicator_notify has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:370: warning: argument 'comm' from the argument list of GNUNET_TRANSPORT_communicator_notify has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:370: warning: argument 'header' from the argument list of GNUNET_TRANSPORT_communicator_notify has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_core_service.h:95: warning: argument 'neb' of command @param is not found in the argument list of GNUNET_TRANSPORT_core_connect(const struct GNUNET_CONFIGURATION_Handle *cfg, const struct GNUNET_PeerIdentity *self, const struct GNUNET_MQ_MessageHandler *handlers, void *cls, GNUNET_TRANSPORT_NotifyConnect nc, GNUNET_TRANSPORT_NotifyDisconnect nd) -/home/william/Git/gnunet/src/include/gnunet_transport_core_service.h:113: warning: argument 'handlers' from the argument list of GNUNET_TRANSPORT_core_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_core_service.h:127: warning: argument 'handle' from the argument list of GNUNET_TRANSPORT_core_disconnect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_hello_service.h:145: warning: argument 'cfg' from the argument list of GNUNET_TRANSPORT_hello_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_hello_service.h:145: warning: argument 'ac' from the argument list of GNUNET_TRANSPORT_hello_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_hello_service.h:145: warning: argument 'rec' from the argument list of GNUNET_TRANSPORT_hello_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_hello_service.h:145: warning: argument 'rec_cls' from the argument list of GNUNET_TRANSPORT_hello_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_manipulation_service.h:82: warning: argument 'handle' from the argument list of GNUNET_TRANSPORT_manipulation_disconnect has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport_api2_monitor.c:279: warning: argument 'pmc' of command @param is not found in the argument list of GNUNET_TRANSPORT_monitor_cancel(struct GNUNET_TRANSPORT_MonitorContext *mc) -/home/william/Git/gnunet/src/include/gnunet_transport_plugin.h:132: warning: explicit link request to 'GNUNET_ATS_address_get_type()' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:167: warning: explicit link request to 'GNUNET_TRANSPORT_PS_CONNECT_RECV_ATS' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:168: warning: explicit link request to 'GNUNET_TRANSPORT_PS_CONNECT_RECV_ACK' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:175: warning: explicit link request to 'GNUNET_TRANSPORT_PS_CONNECT_SENT' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:192: warning: explicit link request to 'GNUNET_TRANSPORT_PS_CONNECTED_SWITCHING_SYN_SENT' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:93: warning: argument 'ohh' from the argument list of GNUNET_TRANSPORT_offer_hello_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:296: warning: argument 'state' from the argument list of GNUNET_TRANSPORT_ps2s has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:369: warning: argument 'cfg' from the argument list of GNUNET_TRANSPORT_monitor_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:369: warning: argument 'peer' from the argument list of GNUNET_TRANSPORT_monitor_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:369: warning: argument 'one_shot' from the argument list of GNUNET_TRANSPORT_monitor_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:369: warning: argument 'peer_callback' from the argument list of GNUNET_TRANSPORT_monitor_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:369: warning: argument 'peer_callback_cls' from the argument list of GNUNET_TRANSPORT_monitor_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport_api_monitor_plugins.c:441: warning: explicit link request to 'GNUNET_TRANSPORT_SS_FINI' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:581: warning: argument 'pm' from the argument list of GNUNET_TRANSPORT_monitor_plugins_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport_api_core.c:844: warning: argument 'rec' of command @param is not found in the argument list of GNUNET_TRANSPORT_core_connect(const struct GNUNET_CONFIGURATION_Handle *cfg, const struct GNUNET_PeerIdentity *self, const struct GNUNET_MQ_MessageHandler *handlers, void *cls, GNUNET_TRANSPORT_NotifyConnect nc, GNUNET_TRANSPORT_NotifyDisconnect nd, GNUNET_TRANSPORT_NotifyExcessBandwidth neb) -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:669: warning: argument 'cfg' from the argument list of GNUNET_TRANSPORT_core_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:669: warning: argument 'self' from the argument list of GNUNET_TRANSPORT_core_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:669: warning: argument 'handlers' from the argument list of GNUNET_TRANSPORT_core_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:669: warning: argument 'cls' from the argument list of GNUNET_TRANSPORT_core_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:669: warning: argument 'nc' from the argument list of GNUNET_TRANSPORT_core_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:669: warning: argument 'nd' from the argument list of GNUNET_TRANSPORT_core_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:669: warning: argument 'neb' from the argument list of GNUNET_TRANSPORT_core_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_core_service.h:127: warning: argument 'handle' from the argument list of GNUNET_TRANSPORT_core_disconnect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:777: warning: argument 'ip' from the argument list of GNUNET_TUN_initialize_ipv6_header has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:777: warning: argument 'protocol' from the argument list of GNUNET_TUN_initialize_ipv6_header has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:777: warning: argument 'payload_length' from the argument list of GNUNET_TUN_initialize_ipv6_header has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:777: warning: argument 'src' from the argument list of GNUNET_TUN_initialize_ipv6_header has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:777: warning: argument 'dst' from the argument list of GNUNET_TUN_initialize_ipv6_header has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:792: warning: argument 'ip' from the argument list of GNUNET_TUN_calculate_tcp4_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:792: warning: argument 'tcp' from the argument list of GNUNET_TUN_calculate_tcp4_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:792: warning: argument 'payload' from the argument list of GNUNET_TUN_calculate_tcp4_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:792: warning: argument 'payload_length' from the argument list of GNUNET_TUN_calculate_tcp4_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:806: warning: argument 'ip' from the argument list of GNUNET_TUN_calculate_tcp6_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:806: warning: argument 'tcp' from the argument list of GNUNET_TUN_calculate_tcp6_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:806: warning: argument 'payload' from the argument list of GNUNET_TUN_calculate_tcp6_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:806: warning: argument 'payload_length' from the argument list of GNUNET_TUN_calculate_tcp6_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:820: warning: argument 'ip' from the argument list of GNUNET_TUN_calculate_udp4_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:820: warning: argument 'udp' from the argument list of GNUNET_TUN_calculate_udp4_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:820: warning: argument 'payload' from the argument list of GNUNET_TUN_calculate_udp4_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:820: warning: argument 'payload_length' from the argument list of GNUNET_TUN_calculate_udp4_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:835: warning: argument 'ip' from the argument list of GNUNET_TUN_calculate_udp6_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:835: warning: argument 'udp' from the argument list of GNUNET_TUN_calculate_udp6_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:835: warning: argument 'payload' from the argument list of GNUNET_TUN_calculate_udp6_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:835: warning: argument 'payload_length' from the argument list of GNUNET_TUN_calculate_udp6_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:849: warning: argument 'icmp' from the argument list of GNUNET_TUN_calculate_icmp_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:849: warning: argument 'payload' from the argument list of GNUNET_TUN_calculate_icmp_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:849: warning: argument 'payload_length' from the argument list of GNUNET_TUN_calculate_icmp_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:863: warning: argument 'ip' from the argument list of GNUNET_TUN_ipv4toregexsearch has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:863: warning: argument 'port' from the argument list of GNUNET_TUN_ipv4toregexsearch has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:863: warning: argument 'rxstr' from the argument list of GNUNET_TUN_ipv4toregexsearch has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:877: warning: argument 'ipv6' from the argument list of GNUNET_TUN_ipv6toregexsearch has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:877: warning: argument 'port' from the argument list of GNUNET_TUN_ipv6toregexsearch has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:877: warning: argument 'rxstr' from the argument list of GNUNET_TUN_ipv6toregexsearch has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:892: warning: argument 'policy' from the argument list of GNUNET_TUN_ipv6policy2regex has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:905: warning: argument 'policy' from the argument list of GNUNET_TUN_ipv4policy2regex has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:917: warning: argument 'service_name' from the argument list of GNUNET_TUN_service_name_to_hash has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:917: warning: argument 'hc' from the argument list of GNUNET_TUN_service_name_to_hash has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_vpn_service.h:101: warning: argument 'vh' from the argument list of GNUNET_VPN_redirect_to_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_vpn_service.h:101: warning: argument 'result_af' from the argument list of GNUNET_VPN_redirect_to_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_vpn_service.h:101: warning: argument 'protocol' from the argument list of GNUNET_VPN_redirect_to_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_vpn_service.h:101: warning: argument 'peer' from the argument list of GNUNET_VPN_redirect_to_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_vpn_service.h:101: warning: argument 'serv' from the argument list of GNUNET_VPN_redirect_to_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_vpn_service.h:101: warning: argument 'expiration_time' from the argument list of GNUNET_VPN_redirect_to_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_vpn_service.h:101: warning: argument 'cb' from the argument list of GNUNET_VPN_redirect_to_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_vpn_service.h:101: warning: argument 'cb_cls' from the argument list of GNUNET_VPN_redirect_to_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_vpn_service.h:135: warning: argument 'vh' from the argument list of GNUNET_VPN_redirect_to_ip has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_vpn_service.h:135: warning: argument 'result_af' from the argument list of GNUNET_VPN_redirect_to_ip has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_vpn_service.h:135: warning: argument 'addr_af' from the argument list of GNUNET_VPN_redirect_to_ip has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_vpn_service.h:135: warning: argument 'addr' from the argument list of GNUNET_VPN_redirect_to_ip has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_vpn_service.h:135: warning: argument 'expiration_time' from the argument list of GNUNET_VPN_redirect_to_ip has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_vpn_service.h:135: warning: argument 'cb' from the argument list of GNUNET_VPN_redirect_to_ip has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_vpn_service.h:135: warning: argument 'cb_cls' from the argument list of GNUNET_VPN_redirect_to_ip has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_json_lib.h:122: warning: argument 'which' of command @param is not found in the argument list of GNUNET_JSON_parse(const json_t *root, struct GNUNET_JSON_Specification *spec, const char **error_json_name, unsigned int *error_line) -/home/william/Git/gnunet/src/json/json.c:1: warning: The following parameter of GNUNET_JSON_parse(const json_t *root, struct GNUNET_JSON_Specification *spec, const char **error_json_name, unsigned int *error_line) is not documented: - parameter 'error_line' -/home/william/Git/gnunet/src/include/gnunet_json_lib.h:518: warning: argument 'val' of command @param is not found in the argument list of GNUNET_JSON_getopt(char shortName, const char *name, const char *argumentHelp, const char *description, json_t **json) -/home/william/Git/gnunet/src/json/json.c:94: warning: The following parameter of GNUNET_JSON_getopt(char shortName, const char *name, const char *argumentHelp, const char *description, json_t **json) is not documented: - parameter 'json' -/home/william/Git/gnunet/src/include/gnunet_json_lib.h:316: warning: argument 'at' of command @param is not found in the argument list of GNUNET_JSON_spec_timestamp(const char *name, struct GNUNET_TIME_Timestamp *t) -/home/william/Git/gnunet/src/json/json_helper.c:546: warning: The following parameter of GNUNET_JSON_spec_timestamp(const char *name, struct GNUNET_TIME_Timestamp *t) is not documented: - parameter 't' -/home/william/Git/gnunet/src/json/json_mhd.c:253: warning: explicit link request to 'GNUNET_JSON_post_parser_callback()' could not be resolved -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:36: warning: argument 'in' of command @param is not found in the argument list of on_message(void *cls, struct GNUNET_MESSENGER_Room *room, const struct GNUNET_MESSENGER_Contact *sender, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash, enum GNUNET_MESSENGER_MessageFlags flags) -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:36: warning: argument 'out' of command @param is not found in the argument list of on_message(void *cls, struct GNUNET_MESSENGER_Room *room, const struct GNUNET_MESSENGER_Contact *sender, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash, enum GNUNET_MESSENGER_MessageFlags flags) -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:45: warning: The following parameter of on_message(void *cls, struct GNUNET_MESSENGER_Room *room, const struct GNUNET_MESSENGER_Contact *sender, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash, enum GNUNET_MESSENGER_MessageFlags flags) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:106: warning: argument 'in' of command @param is not found in the argument list of shutdown_hook(void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:106: warning: argument 'out' of command @param is not found in the argument list of shutdown_hook(void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:110: warning: The following parameter of shutdown_hook(void *cls) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:186: warning: argument 'in' of command @param is not found in the argument list of listen_stdio(void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:186: warning: argument 'out' of command @param is not found in the argument list of listen_stdio(void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:190: warning: The following parameter of listen_stdio(void *cls) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:146: warning: argument 'in' of command @param is not found in the argument list of read_stdio(void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:146: warning: argument 'out' of command @param is not found in the argument list of read_stdio(void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:150: warning: The following parameter of read_stdio(void *cls) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:207: warning: argument 'in' of command @param is not found in the argument list of idle(void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:207: warning: argument 'out' of command @param is not found in the argument list of idle(void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:211: warning: The following parameter of idle(void *cls) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:228: warning: argument 'in' of command @param is not found in the argument list of on_identity(void *cls, struct GNUNET_MESSENGER_Handle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:228: warning: argument 'out' of command @param is not found in the argument list of on_identity(void *cls, struct GNUNET_MESSENGER_Handle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:228: warning: argument 'in' of command @param is not found in the argument list of on_identity(void *cls, struct GNUNET_MESSENGER_Handle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:228: warning: argument 'out' of command @param is not found in the argument list of on_identity(void *cls, struct GNUNET_MESSENGER_Handle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:233: warning: The following parameters of on_identity(void *cls, struct GNUNET_MESSENGER_Handle *handle) are not documented: - parameter 'cls' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:293: warning: argument 'in' of command @param is not found in the argument list of run(void *cls, char *const *args, const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg) -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:293: warning: argument 'out' of command @param is not found in the argument list of run(void *cls, char *const *args, const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg) -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:300: warning: The following parameter of run(void *cls, char *const *args, const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:314: warning: explicit link request to 'EXIT_SUCCESS' could not be resolved -/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:314: warning: explicit link request to 'EXIT_FAILURE' could not be resolved -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger.c:383: warning: argument 'in' of command @param is not found in the argument list of run(void *cls, const struct GNUNET_CONFIGURATION_Handle *config, struct GNUNET_SERVICE_Handle *service) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger.c:383: warning: argument 'out' of command @param is not found in the argument list of run(void *cls, const struct GNUNET_CONFIGURATION_Handle *config, struct GNUNET_SERVICE_Handle *service) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger.c:383: warning: argument 'in' of command @param is not found in the argument list of run(void *cls, const struct GNUNET_CONFIGURATION_Handle *config, struct GNUNET_SERVICE_Handle *service) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger.c:383: warning: argument 'out' of command @param is not found in the argument list of run(void *cls, const struct GNUNET_CONFIGURATION_Handle *config, struct GNUNET_SERVICE_Handle *service) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger.c:389: warning: The following parameters of run(void *cls, const struct GNUNET_CONFIGURATION_Handle *config, struct GNUNET_SERVICE_Handle *service) are not documented: - parameter 'cls' - parameter 'service' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:98: warning: argument 'in' of command @param is not found in the argument list of clear_ego_store(struct GNUNET_MESSENGER_EgoStore *store) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:98: warning: argument 'out' of command @param is not found in the argument list of clear_ego_store(struct GNUNET_MESSENGER_EgoStore *store) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.c:82: warning: The following parameter of clear_ego_store(struct GNUNET_MESSENGER_EgoStore *store) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:106: warning: argument 'in' of command @param is not found in the argument list of create_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:106: warning: argument 'out' of command @param is not found in the argument list of create_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.c:170: warning: The following parameter of create_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:115: warning: argument 'in' of command @param is not found in the argument list of bind_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, void *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:115: warning: argument 'out' of command @param is not found in the argument list of bind_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, void *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:115: warning: argument 'in' of command @param is not found in the argument list of bind_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, void *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:115: warning: argument 'out' of command @param is not found in the argument list of bind_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, void *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.c:197: warning: The following parameters of bind_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, void *handle) are not documented: - parameter 'store' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:128: warning: argument 'in' of command @param is not found in the argument list of unbind_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, void *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:128: warning: argument 'out' of command @param is not found in the argument list of unbind_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, void *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:128: warning: argument 'in' of command @param is not found in the argument list of unbind_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, void *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:128: warning: argument 'out' of command @param is not found in the argument list of unbind_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, void *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.c:217: warning: The following parameters of unbind_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, void *handle) are not documented: - parameter 'store' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:143: warning: argument 'in' of command @param is not found in the argument list of lookup_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, GNUNET_MESSENGER_EgoLookupCallback lookup, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:143: warning: argument 'out' of command @param is not found in the argument list of lookup_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, GNUNET_MESSENGER_EgoLookupCallback lookup, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.c:276: warning: The following parameter of lookup_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, GNUNET_MESSENGER_EgoLookupCallback lookup, void *cls) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:158: warning: argument 'in' of command @param is not found in the argument list of update_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, const struct GNUNET_IDENTITY_PrivateKey *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:158: warning: argument 'out' of command @param is not found in the argument list of update_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, const struct GNUNET_IDENTITY_PrivateKey *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.c:306: warning: The following parameter of update_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, const struct GNUNET_IDENTITY_PrivateKey *key) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:172: warning: argument 'in' of command @param is not found in the argument list of delete_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:172: warning: argument 'out' of command @param is not found in the argument list of delete_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.c:334: warning: The following parameter of delete_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:184: warning: end of comment block while expecting command -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:184: warning: end of comment block while expecting command -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:183: warning: argument 'in' of command @param is not found in the argument list of rename_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *old_identifier, const char *new_identifier) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:183: warning: argument 'out' of command @param is not found in the argument list of rename_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *old_identifier, const char *new_identifier) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.c:401: warning: The following parameter of rename_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *old_identifier, const char *new_identifier) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:197: warning: argument 'in' of command @param is not found in the argument list of renew_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:197: warning: argument 'out' of command @param is not found in the argument list of renew_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.c:447: warning: The following parameter of renew_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:98: warning: argument 'in' of command @param is not found in the argument list of clear_ego_store(struct GNUNET_MESSENGER_EgoStore *store) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:98: warning: argument 'out' of command @param is not found in the argument list of clear_ego_store(struct GNUNET_MESSENGER_EgoStore *store) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:102: warning: The following parameter of clear_ego_store(struct GNUNET_MESSENGER_EgoStore *store) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:106: warning: argument 'in' of command @param is not found in the argument list of create_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:106: warning: argument 'out' of command @param is not found in the argument list of create_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:112: warning: The following parameter of create_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:115: warning: argument 'in' of command @param is not found in the argument list of bind_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, void *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:115: warning: argument 'out' of command @param is not found in the argument list of bind_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, void *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:115: warning: argument 'in' of command @param is not found in the argument list of bind_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, void *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:115: warning: argument 'out' of command @param is not found in the argument list of bind_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, void *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:124: warning: The following parameters of bind_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, void *handle) are not documented: - parameter 'store' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:128: warning: argument 'in' of command @param is not found in the argument list of unbind_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, void *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:128: warning: argument 'out' of command @param is not found in the argument list of unbind_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, void *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:128: warning: argument 'in' of command @param is not found in the argument list of unbind_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, void *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:128: warning: argument 'out' of command @param is not found in the argument list of unbind_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, void *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:137: warning: The following parameters of unbind_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, void *handle) are not documented: - parameter 'store' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:143: warning: argument 'in' of command @param is not found in the argument list of lookup_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, GNUNET_MESSENGER_EgoLookupCallback lookup, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:143: warning: argument 'out' of command @param is not found in the argument list of lookup_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, GNUNET_MESSENGER_EgoLookupCallback lookup, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:151: warning: The following parameter of lookup_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, GNUNET_MESSENGER_EgoLookupCallback lookup, void *cls) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:158: warning: argument 'in' of command @param is not found in the argument list of update_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, const struct GNUNET_IDENTITY_PrivateKey *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:158: warning: argument 'out' of command @param is not found in the argument list of update_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, const struct GNUNET_IDENTITY_PrivateKey *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:166: warning: The following parameter of update_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier, const struct GNUNET_IDENTITY_PrivateKey *key) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:172: warning: argument 'in' of command @param is not found in the argument list of delete_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:172: warning: argument 'out' of command @param is not found in the argument list of delete_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:178: warning: The following parameter of delete_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:184: warning: end of comment block while expecting command -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:184: warning: end of comment block while expecting command -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:183: warning: argument 'in' of command @param is not found in the argument list of rename_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *old_identifier, const char *new_identifier) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:183: warning: argument 'out' of command @param is not found in the argument list of rename_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *old_identifier, const char *new_identifier) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:191: warning: The following parameter of rename_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *old_identifier, const char *new_identifier) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:197: warning: argument 'in' of command @param is not found in the argument list of renew_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:197: warning: argument 'out' of command @param is not found in the argument list of renew_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:203: warning: The following parameter of renew_store_ego(struct GNUNET_MESSENGER_EgoStore *store, const char *identifier) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:57: warning: argument 'in' of command @param is not found in the argument list of create_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MQ_Handle *mq) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:57: warning: argument 'out' of command @param is not found in the argument list of create_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MQ_Handle *mq) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:57: warning: argument 'in' of command @param is not found in the argument list of create_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MQ_Handle *mq) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:57: warning: argument 'out' of command @param is not found in the argument list of create_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MQ_Handle *mq) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.c:34: warning: The following parameters of create_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MQ_Handle *mq) are not documented: - parameter 'service' - parameter 'mq' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:68: warning: argument 'in' of command @param is not found in the argument list of destroy_handle(struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:68: warning: argument 'out' of command @param is not found in the argument list of destroy_handle(struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.c:63: warning: The following parameter of destroy_handle(struct GNUNET_MESSENGER_SrvHandle *handle) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:102: warning: argument 'in' of command @param is not found in the argument list of change_handle_member_id(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key, const struct GNUNET_ShortHashCode *unique_id) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:102: warning: argument 'out' of command @param is not found in the argument list of change_handle_member_id(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key, const struct GNUNET_ShortHashCode *unique_id) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.c:136: warning: The following parameter of change_handle_member_id(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key, const struct GNUNET_ShortHashCode *unique_id) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:118: warning: argument 'in' of command @param is not found in the argument list of set_handle_ego(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Ego *ego) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:118: warning: argument 'out' of command @param is not found in the argument list of set_handle_ego(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Ego *ego) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.c:253: warning: The following parameter of set_handle_ego(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Ego *ego) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:137: warning: argument 'in' of command @param is not found in the argument list of setup_handle_name(struct GNUNET_MESSENGER_SrvHandle *handle, const char *name) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:137: warning: argument 'out' of command @param is not found in the argument list of setup_handle_name(struct GNUNET_MESSENGER_SrvHandle *handle, const char *name) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.c:309: warning: The following parameter of setup_handle_name(struct GNUNET_MESSENGER_SrvHandle *handle, const char *name) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:147: warning: argument 'in' of command @param is not found in the argument list of update_handle(struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:147: warning: argument 'out' of command @param is not found in the argument list of update_handle(struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.c:339: warning: The following parameter of update_handle(struct GNUNET_MESSENGER_SrvHandle *handle) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:156: warning: argument 'in' of command @param is not found in the argument list of set_handle_name(struct GNUNET_MESSENGER_SrvHandle *handle, const char *name) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:156: warning: argument 'out' of command @param is not found in the argument list of set_handle_name(struct GNUNET_MESSENGER_SrvHandle *handle, const char *name) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.c:406: warning: The following parameter of set_handle_name(struct GNUNET_MESSENGER_SrvHandle *handle, const char *name) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:169: warning: argument 'in' of command @param is not found in the argument list of open_handle_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:169: warning: argument 'out' of command @param is not found in the argument list of open_handle_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.c:427: warning: The following parameter of open_handle_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:181: warning: argument 'in' of command @param is not found in the argument list of entry_handle_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:181: warning: argument 'out' of command @param is not found in the argument list of entry_handle_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.c:439: warning: The following parameter of entry_handle_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:195: warning: argument 'in' of command @param is not found in the argument list of close_handle_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:195: warning: argument 'out' of command @param is not found in the argument list of close_handle_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.c:452: warning: The following parameter of close_handle_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:207: warning: argument 'in' of command @param is not found in the argument list of send_handle_message(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key, const struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:207: warning: argument 'out' of command @param is not found in the argument list of send_handle_message(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key, const struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.c:464: warning: The following parameter of send_handle_message(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key, const struct GNUNET_MESSENGER_Message *message) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:220: warning: argument 'in' of command @param is not found in the argument list of notify_handle_message(struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:220: warning: argument 'out' of command @param is not found in the argument list of notify_handle_message(struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.c:526: warning: The following parameter of notify_handle_message(struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:57: warning: argument 'in' of command @param is not found in the argument list of create_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MQ_Handle *mq) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:57: warning: argument 'out' of command @param is not found in the argument list of create_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MQ_Handle *mq) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:57: warning: argument 'in' of command @param is not found in the argument list of create_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MQ_Handle *mq) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:57: warning: argument 'out' of command @param is not found in the argument list of create_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MQ_Handle *mq) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:63: warning: The following parameters of create_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MQ_Handle *mq) are not documented: - parameter 'service' - parameter 'mq' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:68: warning: argument 'in' of command @param is not found in the argument list of destroy_handle(struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:68: warning: argument 'out' of command @param is not found in the argument list of destroy_handle(struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:72: warning: The following parameter of destroy_handle(struct GNUNET_MESSENGER_SrvHandle *handle) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:102: warning: argument 'in' of command @param is not found in the argument list of change_handle_member_id(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key, const struct GNUNET_ShortHashCode *unique_id) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:102: warning: argument 'out' of command @param is not found in the argument list of change_handle_member_id(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key, const struct GNUNET_ShortHashCode *unique_id) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:112: warning: The following parameter of change_handle_member_id(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key, const struct GNUNET_ShortHashCode *unique_id) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:118: warning: argument 'in' of command @param is not found in the argument list of set_handle_ego(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Ego *ego) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:118: warning: argument 'out' of command @param is not found in the argument list of set_handle_ego(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Ego *ego) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:123: warning: The following parameter of set_handle_ego(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Ego *ego) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:137: warning: argument 'in' of command @param is not found in the argument list of setup_handle_name(struct GNUNET_MESSENGER_SrvHandle *handle, const char *name) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:137: warning: argument 'out' of command @param is not found in the argument list of setup_handle_name(struct GNUNET_MESSENGER_SrvHandle *handle, const char *name) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:142: warning: The following parameter of setup_handle_name(struct GNUNET_MESSENGER_SrvHandle *handle, const char *name) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:147: warning: argument 'in' of command @param is not found in the argument list of update_handle(struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:147: warning: argument 'out' of command @param is not found in the argument list of update_handle(struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:152: warning: The following parameter of update_handle(struct GNUNET_MESSENGER_SrvHandle *handle) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:156: warning: argument 'in' of command @param is not found in the argument list of set_handle_name(struct GNUNET_MESSENGER_SrvHandle *handle, const char *name) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:156: warning: argument 'out' of command @param is not found in the argument list of set_handle_name(struct GNUNET_MESSENGER_SrvHandle *handle, const char *name) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:164: warning: The following parameter of set_handle_name(struct GNUNET_MESSENGER_SrvHandle *handle, const char *name) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:169: warning: argument 'in' of command @param is not found in the argument list of open_handle_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:169: warning: argument 'out' of command @param is not found in the argument list of open_handle_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:176: warning: The following parameter of open_handle_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:181: warning: argument 'in' of command @param is not found in the argument list of entry_handle_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:181: warning: argument 'out' of command @param is not found in the argument list of entry_handle_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:189: warning: The following parameter of entry_handle_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:195: warning: argument 'in' of command @param is not found in the argument list of close_handle_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:195: warning: argument 'out' of command @param is not found in the argument list of close_handle_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:202: warning: The following parameter of close_handle_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:207: warning: argument 'in' of command @param is not found in the argument list of send_handle_message(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key, const struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:207: warning: argument 'out' of command @param is not found in the argument list of send_handle_message(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key, const struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:214: warning: The following parameter of send_handle_message(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key, const struct GNUNET_MESSENGER_Message *message) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:220: warning: argument 'in' of command @param is not found in the argument list of notify_handle_message(struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:220: warning: argument 'out' of command @param is not found in the argument list of notify_handle_message(struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_handle.h:228: warning: The following parameter of notify_handle_message(struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:59: warning: argument 'in' of command @param is not found in the argument list of clear_list_handles(struct GNUNET_MESSENGER_ListHandles *handles) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:59: warning: argument 'out' of command @param is not found in the argument list of clear_list_handles(struct GNUNET_MESSENGER_ListHandles *handles) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.c:40: warning: The following parameter of clear_list_handles(struct GNUNET_MESSENGER_ListHandles *handles) is not documented: - parameter 'handles' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:67: warning: argument 'in' of command @param is not found in the argument list of add_list_handle(struct GNUNET_MESSENGER_ListHandles *handles, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:67: warning: argument 'out' of command @param is not found in the argument list of add_list_handle(struct GNUNET_MESSENGER_ListHandles *handles, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:67: warning: argument 'in' of command @param is not found in the argument list of add_list_handle(struct GNUNET_MESSENGER_ListHandles *handles, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:67: warning: argument 'out' of command @param is not found in the argument list of add_list_handle(struct GNUNET_MESSENGER_ListHandles *handles, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.c:58: warning: The following parameters of add_list_handle(struct GNUNET_MESSENGER_ListHandles *handles, struct GNUNET_MESSENGER_SrvHandle *handle) are not documented: - parameter 'handles' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:77: warning: argument 'in' of command @param is not found in the argument list of remove_list_handle(struct GNUNET_MESSENGER_ListHandles *handles, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:77: warning: argument 'out' of command @param is not found in the argument list of remove_list_handle(struct GNUNET_MESSENGER_ListHandles *handles, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:77: warning: argument 'in' of command @param is not found in the argument list of remove_list_handle(struct GNUNET_MESSENGER_ListHandles *handles, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:77: warning: argument 'out' of command @param is not found in the argument list of remove_list_handle(struct GNUNET_MESSENGER_ListHandles *handles, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.c:71: warning: The following parameters of remove_list_handle(struct GNUNET_MESSENGER_ListHandles *handles, struct GNUNET_MESSENGER_SrvHandle *handle) are not documented: - parameter 'handles' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:59: warning: argument 'in' of command @param is not found in the argument list of clear_list_handles(struct GNUNET_MESSENGER_ListHandles *handles) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:59: warning: argument 'out' of command @param is not found in the argument list of clear_list_handles(struct GNUNET_MESSENGER_ListHandles *handles) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:63: warning: The following parameter of clear_list_handles(struct GNUNET_MESSENGER_ListHandles *handles) is not documented: - parameter 'handles' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:67: warning: argument 'in' of command @param is not found in the argument list of add_list_handle(struct GNUNET_MESSENGER_ListHandles *handles, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:67: warning: argument 'out' of command @param is not found in the argument list of add_list_handle(struct GNUNET_MESSENGER_ListHandles *handles, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:67: warning: argument 'in' of command @param is not found in the argument list of add_list_handle(struct GNUNET_MESSENGER_ListHandles *handles, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:67: warning: argument 'out' of command @param is not found in the argument list of add_list_handle(struct GNUNET_MESSENGER_ListHandles *handles, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:72: warning: The following parameters of add_list_handle(struct GNUNET_MESSENGER_ListHandles *handles, struct GNUNET_MESSENGER_SrvHandle *handle) are not documented: - parameter 'handles' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:77: warning: argument 'in' of command @param is not found in the argument list of remove_list_handle(struct GNUNET_MESSENGER_ListHandles *handles, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:77: warning: argument 'out' of command @param is not found in the argument list of remove_list_handle(struct GNUNET_MESSENGER_ListHandles *handles, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:77: warning: argument 'in' of command @param is not found in the argument list of remove_list_handle(struct GNUNET_MESSENGER_ListHandles *handles, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:77: warning: argument 'out' of command @param is not found in the argument list of remove_list_handle(struct GNUNET_MESSENGER_ListHandles *handles, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_handles.h:84: warning: The following parameters of remove_list_handle(struct GNUNET_MESSENGER_ListHandles *handles, struct GNUNET_MESSENGER_SrvHandle *handle) are not documented: - parameter 'handles' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.h:58: warning: argument 'in' of command @param is not found in the argument list of clear_list_messages(struct GNUNET_MESSENGER_ListMessages *messages) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.h:58: warning: argument 'out' of command @param is not found in the argument list of clear_list_messages(struct GNUNET_MESSENGER_ListMessages *messages) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.c:38: warning: The following parameter of clear_list_messages(struct GNUNET_MESSENGER_ListMessages *messages) is not documented: - parameter 'messages' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.h:66: warning: argument 'in' of command @param is not found in the argument list of add_to_list_messages(struct GNUNET_MESSENGER_ListMessages *messages, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.h:66: warning: argument 'out' of command @param is not found in the argument list of add_to_list_messages(struct GNUNET_MESSENGER_ListMessages *messages, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.c:55: warning: The following parameter of add_to_list_messages(struct GNUNET_MESSENGER_ListMessages *messages, const struct GNUNET_HashCode *hash) is not documented: - parameter 'messages' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.h:76: warning: argument 'in' of command @param is not found in the argument list of copy_list_messages(struct GNUNET_MESSENGER_ListMessages *messages, const struct GNUNET_MESSENGER_ListMessages *origin) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.h:76: warning: argument 'out' of command @param is not found in the argument list of copy_list_messages(struct GNUNET_MESSENGER_ListMessages *messages, const struct GNUNET_MESSENGER_ListMessages *origin) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.c:68: warning: The following parameter of copy_list_messages(struct GNUNET_MESSENGER_ListMessages *messages, const struct GNUNET_MESSENGER_ListMessages *origin) is not documented: - parameter 'messages' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.h:86: warning: argument 'in' of command @param is not found in the argument list of remove_from_list_messages(struct GNUNET_MESSENGER_ListMessages *messages, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.h:86: warning: argument 'out' of command @param is not found in the argument list of remove_from_list_messages(struct GNUNET_MESSENGER_ListMessages *messages, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.c:80: warning: The following parameter of remove_from_list_messages(struct GNUNET_MESSENGER_ListMessages *messages, const struct GNUNET_HashCode *hash) is not documented: - parameter 'messages' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.h:58: warning: argument 'in' of command @param is not found in the argument list of clear_list_messages(struct GNUNET_MESSENGER_ListMessages *messages) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.h:58: warning: argument 'out' of command @param is not found in the argument list of clear_list_messages(struct GNUNET_MESSENGER_ListMessages *messages) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.h:62: warning: The following parameter of clear_list_messages(struct GNUNET_MESSENGER_ListMessages *messages) is not documented: - parameter 'messages' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.h:66: warning: argument 'in' of command @param is not found in the argument list of add_to_list_messages(struct GNUNET_MESSENGER_ListMessages *messages, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.h:66: warning: argument 'out' of command @param is not found in the argument list of add_to_list_messages(struct GNUNET_MESSENGER_ListMessages *messages, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.h:71: warning: The following parameter of add_to_list_messages(struct GNUNET_MESSENGER_ListMessages *messages, const struct GNUNET_HashCode *hash) is not documented: - parameter 'messages' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.h:76: warning: argument 'in' of command @param is not found in the argument list of copy_list_messages(struct GNUNET_MESSENGER_ListMessages *messages, const struct GNUNET_MESSENGER_ListMessages *origin) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.h:76: warning: argument 'out' of command @param is not found in the argument list of copy_list_messages(struct GNUNET_MESSENGER_ListMessages *messages, const struct GNUNET_MESSENGER_ListMessages *origin) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.h:81: warning: The following parameter of copy_list_messages(struct GNUNET_MESSENGER_ListMessages *messages, const struct GNUNET_MESSENGER_ListMessages *origin) is not documented: - parameter 'messages' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.h:86: warning: argument 'in' of command @param is not found in the argument list of remove_from_list_messages(struct GNUNET_MESSENGER_ListMessages *messages, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.h:86: warning: argument 'out' of command @param is not found in the argument list of remove_from_list_messages(struct GNUNET_MESSENGER_ListMessages *messages, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_list_messages.h:91: warning: The following parameter of remove_from_list_messages(struct GNUNET_MESSENGER_ListMessages *messages, const struct GNUNET_HashCode *hash) is not documented: - parameter 'messages' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:46: warning: argument 'in' of command @param is not found in the argument list of create_member(struct GNUNET_MESSENGER_MemberStore *store, const struct GNUNET_ShortHashCode *id) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:46: warning: argument 'out' of command @param is not found in the argument list of create_member(struct GNUNET_MESSENGER_MemberStore *store, const struct GNUNET_ShortHashCode *id) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.c:31: warning: The following parameter of create_member(struct GNUNET_MESSENGER_MemberStore *store, const struct GNUNET_ShortHashCode *id) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:60: warning: argument 'in' of command @param is not found in the argument list of destroy_member(struct GNUNET_MESSENGER_Member *member) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:60: warning: argument 'out' of command @param is not found in the argument list of destroy_member(struct GNUNET_MESSENGER_Member *member) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.c:64: warning: The following parameter of destroy_member(struct GNUNET_MESSENGER_Member *member) is not documented: - parameter 'member' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:89: warning: argument 'in' of command @param is not found in the argument list of load_member_next_sessions(const struct GNUNET_MESSENGER_Member *member, const char *directory) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:89: warning: argument 'out' of command @param is not found in the argument list of load_member_next_sessions(const struct GNUNET_MESSENGER_Member *member, const char *directory) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.c:168: warning: The following parameter of load_member_next_sessions(const struct GNUNET_MESSENGER_Member *member, const char *directory) is not documented: - parameter 'member' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:111: warning: argument 'in' of command @param is not found in the argument list of sync_member_contacts(struct GNUNET_MESSENGER_Member *member) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:111: warning: argument 'out' of command @param is not found in the argument list of sync_member_contacts(struct GNUNET_MESSENGER_Member *member) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.c:267: warning: The following parameter of sync_member_contacts(struct GNUNET_MESSENGER_Member *member) is not documented: - parameter 'member' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:147: warning: argument 'in' of command @param is not found in the argument list of add_member_session(struct GNUNET_MESSENGER_Member *member, struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:147: warning: argument 'out' of command @param is not found in the argument list of add_member_session(struct GNUNET_MESSENGER_Member *member, struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:147: warning: argument 'in' of command @param is not found in the argument list of add_member_session(struct GNUNET_MESSENGER_Member *member, struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:147: warning: argument 'out' of command @param is not found in the argument list of add_member_session(struct GNUNET_MESSENGER_Member *member, struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.c:350: warning: The following parameters of add_member_session(struct GNUNET_MESSENGER_Member *member, struct GNUNET_MESSENGER_MemberSession *session) are not documented: - parameter 'member' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:157: warning: argument 'in' of command @param is not found in the argument list of remove_member_session(struct GNUNET_MESSENGER_Member *member, struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:157: warning: argument 'out' of command @param is not found in the argument list of remove_member_session(struct GNUNET_MESSENGER_Member *member, struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:157: warning: argument 'in' of command @param is not found in the argument list of remove_member_session(struct GNUNET_MESSENGER_Member *member, struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:157: warning: argument 'out' of command @param is not found in the argument list of remove_member_session(struct GNUNET_MESSENGER_Member *member, struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.c:371: warning: The following parameters of remove_member_session(struct GNUNET_MESSENGER_Member *member, struct GNUNET_MESSENGER_MemberSession *session) are not documented: - parameter 'member' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:165: warning: argument 'in' of command @param is not found in the argument list of iterate_member_sessions(struct GNUNET_MESSENGER_Member *member, GNUNET_MESSENGER_MemberIteratorCallback it, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:165: warning: argument 'out' of command @param is not found in the argument list of iterate_member_sessions(struct GNUNET_MESSENGER_Member *member, GNUNET_MESSENGER_MemberIteratorCallback it, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:165: warning: argument 'in' of command @param is not found in the argument list of iterate_member_sessions(struct GNUNET_MESSENGER_Member *member, GNUNET_MESSENGER_MemberIteratorCallback it, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:165: warning: argument 'out' of command @param is not found in the argument list of iterate_member_sessions(struct GNUNET_MESSENGER_Member *member, GNUNET_MESSENGER_MemberIteratorCallback it, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.c:403: warning: The following parameters of iterate_member_sessions(struct GNUNET_MESSENGER_Member *member, GNUNET_MESSENGER_MemberIteratorCallback it, void *cls) are not documented: - parameter 'member' - parameter 'cls' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:46: warning: argument 'in' of command @param is not found in the argument list of create_member(struct GNUNET_MESSENGER_MemberStore *store, const struct GNUNET_ShortHashCode *id) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:46: warning: argument 'out' of command @param is not found in the argument list of create_member(struct GNUNET_MESSENGER_MemberStore *store, const struct GNUNET_ShortHashCode *id) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:55: warning: The following parameter of create_member(struct GNUNET_MESSENGER_MemberStore *store, const struct GNUNET_ShortHashCode *id) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:60: warning: argument 'in' of command @param is not found in the argument list of destroy_member(struct GNUNET_MESSENGER_Member *member) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:60: warning: argument 'out' of command @param is not found in the argument list of destroy_member(struct GNUNET_MESSENGER_Member *member) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:64: warning: The following parameter of destroy_member(struct GNUNET_MESSENGER_Member *member) is not documented: - parameter 'member' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:89: warning: argument 'in' of command @param is not found in the argument list of load_member_next_sessions(const struct GNUNET_MESSENGER_Member *member, const char *directory) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:89: warning: argument 'out' of command @param is not found in the argument list of load_member_next_sessions(const struct GNUNET_MESSENGER_Member *member, const char *directory) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:95: warning: The following parameter of load_member_next_sessions(const struct GNUNET_MESSENGER_Member *member, const char *directory) is not documented: - parameter 'member' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:111: warning: argument 'in' of command @param is not found in the argument list of sync_member_contacts(struct GNUNET_MESSENGER_Member *member) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:111: warning: argument 'out' of command @param is not found in the argument list of sync_member_contacts(struct GNUNET_MESSENGER_Member *member) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:116: warning: The following parameter of sync_member_contacts(struct GNUNET_MESSENGER_Member *member) is not documented: - parameter 'member' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:147: warning: argument 'in' of command @param is not found in the argument list of add_member_session(struct GNUNET_MESSENGER_Member *member, struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:147: warning: argument 'out' of command @param is not found in the argument list of add_member_session(struct GNUNET_MESSENGER_Member *member, struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:147: warning: argument 'in' of command @param is not found in the argument list of add_member_session(struct GNUNET_MESSENGER_Member *member, struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:147: warning: argument 'out' of command @param is not found in the argument list of add_member_session(struct GNUNET_MESSENGER_Member *member, struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:152: warning: The following parameters of add_member_session(struct GNUNET_MESSENGER_Member *member, struct GNUNET_MESSENGER_MemberSession *session) are not documented: - parameter 'member' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:157: warning: argument 'in' of command @param is not found in the argument list of remove_member_session(struct GNUNET_MESSENGER_Member *member, struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:157: warning: argument 'out' of command @param is not found in the argument list of remove_member_session(struct GNUNET_MESSENGER_Member *member, struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:157: warning: argument 'in' of command @param is not found in the argument list of remove_member_session(struct GNUNET_MESSENGER_Member *member, struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:157: warning: argument 'out' of command @param is not found in the argument list of remove_member_session(struct GNUNET_MESSENGER_Member *member, struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:162: warning: The following parameters of remove_member_session(struct GNUNET_MESSENGER_Member *member, struct GNUNET_MESSENGER_MemberSession *session) are not documented: - parameter 'member' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:165: warning: argument 'in' of command @param is not found in the argument list of iterate_member_sessions(struct GNUNET_MESSENGER_Member *member, GNUNET_MESSENGER_MemberIteratorCallback it, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:165: warning: argument 'out' of command @param is not found in the argument list of iterate_member_sessions(struct GNUNET_MESSENGER_Member *member, GNUNET_MESSENGER_MemberIteratorCallback it, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:165: warning: argument 'in' of command @param is not found in the argument list of iterate_member_sessions(struct GNUNET_MESSENGER_Member *member, GNUNET_MESSENGER_MemberIteratorCallback it, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:165: warning: argument 'out' of command @param is not found in the argument list of iterate_member_sessions(struct GNUNET_MESSENGER_Member *member, GNUNET_MESSENGER_MemberIteratorCallback it, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member.h:176: warning: The following parameters of iterate_member_sessions(struct GNUNET_MESSENGER_Member *member, GNUNET_MESSENGER_MemberIteratorCallback it, void *cls) are not documented: - parameter 'member' - parameter 'cls' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:61: warning: argument 'in' of command @param is not found in the argument list of create_member_session(struct GNUNET_MESSENGER_Member *member, const struct GNUNET_IDENTITY_PublicKey *pubkey) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:61: warning: argument 'out' of command @param is not found in the argument list of create_member_session(struct GNUNET_MESSENGER_Member *member, const struct GNUNET_IDENTITY_PublicKey *pubkey) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.c:34: warning: The following parameter of create_member_session(struct GNUNET_MESSENGER_Member *member, const struct GNUNET_IDENTITY_PublicKey *pubkey) is not documented: - parameter 'member' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:73: warning: argument 'in' of command @param is not found in the argument list of switch_member_session(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:73: warning: argument 'out' of command @param is not found in the argument list of switch_member_session(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.c:180: warning: The following parameter of switch_member_session(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) is not documented: - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:92: warning: argument 'in' of command @param is not found in the argument list of destroy_member_session(struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:92: warning: argument 'out' of command @param is not found in the argument list of destroy_member_session(struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.c:251: warning: The following parameter of destroy_member_session(struct GNUNET_MESSENGER_MemberSession *session) is not documented: - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:98: warning: argument 'in' of command @param is not found in the argument list of reset_member_session(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:98: warning: argument 'out' of command @param is not found in the argument list of reset_member_session(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.c:272: warning: The following parameter of reset_member_session(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash) is not documented: - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:114: warning: argument 'in' of command @param is not found in the argument list of close_member_session(struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:114: warning: argument 'out' of command @param is not found in the argument list of close_member_session(struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.c:305: warning: The following parameter of close_member_session(struct GNUNET_MESSENGER_MemberSession *session) is not documented: - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:231: warning: argument 'in' of command @param is not found in the argument list of update_member_session_history(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:231: warning: argument 'out' of command @param is not found in the argument list of update_member_session_history(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.c:419: warning: The following parameter of update_member_session_history(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) is not documented: - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:248: warning: argument 'in' of command @param is not found in the argument list of clear_member_session_history(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:248: warning: argument 'out' of command @param is not found in the argument list of clear_member_session_history(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.c:456: warning: The following parameter of clear_member_session_history(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash) is not documented: - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:269: warning: argument 'in' of command @param is not found in the argument list of load_member_session_next(struct GNUNET_MESSENGER_MemberSession *session, const char *directory) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:269: warning: argument 'out' of command @param is not found in the argument list of load_member_session_next(struct GNUNET_MESSENGER_MemberSession *session, const char *directory) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.c:605: warning: The following parameter of load_member_session_next(struct GNUNET_MESSENGER_MemberSession *session, const char *directory) is not documented: - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:61: warning: argument 'in' of command @param is not found in the argument list of create_member_session(struct GNUNET_MESSENGER_Member *member, const struct GNUNET_IDENTITY_PublicKey *pubkey) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:61: warning: argument 'out' of command @param is not found in the argument list of create_member_session(struct GNUNET_MESSENGER_Member *member, const struct GNUNET_IDENTITY_PublicKey *pubkey) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:70: warning: The following parameter of create_member_session(struct GNUNET_MESSENGER_Member *member, const struct GNUNET_IDENTITY_PublicKey *pubkey) is not documented: - parameter 'member' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:73: warning: argument 'in' of command @param is not found in the argument list of switch_member_session(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:73: warning: argument 'out' of command @param is not found in the argument list of switch_member_session(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:86: warning: The following parameter of switch_member_session(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) is not documented: - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:92: warning: argument 'in' of command @param is not found in the argument list of destroy_member_session(struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:92: warning: argument 'out' of command @param is not found in the argument list of destroy_member_session(struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:96: warning: The following parameter of destroy_member_session(struct GNUNET_MESSENGER_MemberSession *session) is not documented: - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:98: warning: argument 'in' of command @param is not found in the argument list of reset_member_session(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:98: warning: argument 'out' of command @param is not found in the argument list of reset_member_session(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:109: warning: The following parameter of reset_member_session(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash) is not documented: - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:114: warning: argument 'in' of command @param is not found in the argument list of close_member_session(struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:114: warning: argument 'out' of command @param is not found in the argument list of close_member_session(struct GNUNET_MESSENGER_MemberSession *session) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:122: warning: The following parameter of close_member_session(struct GNUNET_MESSENGER_MemberSession *session) is not documented: - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:231: warning: argument 'in' of command @param is not found in the argument list of update_member_session_history(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:231: warning: argument 'out' of command @param is not found in the argument list of update_member_session_history(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:242: warning: The following parameter of update_member_session_history(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) is not documented: - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:248: warning: argument 'in' of command @param is not found in the argument list of clear_member_session_history(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:248: warning: argument 'out' of command @param is not found in the argument list of clear_member_session_history(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:254: warning: The following parameter of clear_member_session_history(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash) is not documented: - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:269: warning: argument 'in' of command @param is not found in the argument list of load_member_session_next(struct GNUNET_MESSENGER_MemberSession *session, const char *directory) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:269: warning: argument 'out' of command @param is not found in the argument list of load_member_session_next(struct GNUNET_MESSENGER_MemberSession *session, const char *directory) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_session.h:278: warning: The following parameter of load_member_session_next(struct GNUNET_MESSENGER_MemberSession *session, const char *directory) is not documented: - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:64: warning: argument 'in' of command @param is not found in the argument list of clear_member_store(struct GNUNET_MESSENGER_MemberStore *store) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:64: warning: argument 'out' of command @param is not found in the argument list of clear_member_store(struct GNUNET_MESSENGER_MemberStore *store) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.c:53: warning: The following parameter of clear_member_store(struct GNUNET_MESSENGER_MemberStore *store) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:72: warning: argument 'in' of command @param is not found in the argument list of get_member_contact_store(struct GNUNET_MESSENGER_MemberStore *store) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:72: warning: argument 'out' of command @param is not found in the argument list of get_member_contact_store(struct GNUNET_MESSENGER_MemberStore *store) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.c:63: warning: The following parameter of get_member_contact_store(struct GNUNET_MESSENGER_MemberStore *store) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:121: warning: argument 'in' of command @param is not found in the argument list of get_store_member_of(struct GNUNET_MESSENGER_MemberStore *store, const struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:121: warning: argument 'out' of command @param is not found in the argument list of get_store_member_of(struct GNUNET_MESSENGER_MemberStore *store, const struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.c:203: warning: The following parameter of get_store_member_of(struct GNUNET_MESSENGER_MemberStore *store, const struct GNUNET_MESSENGER_Message *message) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:134: warning: argument 'in' of command @param is not found in the argument list of add_store_member(struct GNUNET_MESSENGER_MemberStore *store, const struct GNUNET_ShortHashCode *id) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:134: warning: argument 'out' of command @param is not found in the argument list of add_store_member(struct GNUNET_MESSENGER_MemberStore *store, const struct GNUNET_ShortHashCode *id) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.c:214: warning: The following parameter of add_store_member(struct GNUNET_MESSENGER_MemberStore *store, const struct GNUNET_ShortHashCode *id) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:144: warning: argument 'in' of command @param is not found in the argument list of iterate_store_members(struct GNUNET_MESSENGER_MemberStore *store, GNUNET_MESSENGER_MemberIteratorCallback it, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:144: warning: argument 'out' of command @param is not found in the argument list of iterate_store_members(struct GNUNET_MESSENGER_MemberStore *store, GNUNET_MESSENGER_MemberIteratorCallback it, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:144: warning: argument 'in' of command @param is not found in the argument list of iterate_store_members(struct GNUNET_MESSENGER_MemberStore *store, GNUNET_MESSENGER_MemberIteratorCallback it, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:144: warning: argument 'out' of command @param is not found in the argument list of iterate_store_members(struct GNUNET_MESSENGER_MemberStore *store, GNUNET_MESSENGER_MemberIteratorCallback it, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.c:256: warning: The following parameters of iterate_store_members(struct GNUNET_MESSENGER_MemberStore *store, GNUNET_MESSENGER_MemberIteratorCallback it, void *cls) are not documented: - parameter 'store' - parameter 'cls' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:64: warning: argument 'in' of command @param is not found in the argument list of clear_member_store(struct GNUNET_MESSENGER_MemberStore *store) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:64: warning: argument 'out' of command @param is not found in the argument list of clear_member_store(struct GNUNET_MESSENGER_MemberStore *store) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:68: warning: The following parameter of clear_member_store(struct GNUNET_MESSENGER_MemberStore *store) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:72: warning: argument 'in' of command @param is not found in the argument list of get_member_contact_store(struct GNUNET_MESSENGER_MemberStore *store) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:72: warning: argument 'out' of command @param is not found in the argument list of get_member_contact_store(struct GNUNET_MESSENGER_MemberStore *store) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:77: warning: The following parameter of get_member_contact_store(struct GNUNET_MESSENGER_MemberStore *store) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:121: warning: argument 'in' of command @param is not found in the argument list of get_store_member_of(struct GNUNET_MESSENGER_MemberStore *store, const struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:121: warning: argument 'out' of command @param is not found in the argument list of get_store_member_of(struct GNUNET_MESSENGER_MemberStore *store, const struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:129: warning: The following parameter of get_store_member_of(struct GNUNET_MESSENGER_MemberStore *store, const struct GNUNET_MESSENGER_Message *message) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:134: warning: argument 'in' of command @param is not found in the argument list of add_store_member(struct GNUNET_MESSENGER_MemberStore *store, const struct GNUNET_ShortHashCode *id) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:134: warning: argument 'out' of command @param is not found in the argument list of add_store_member(struct GNUNET_MESSENGER_MemberStore *store, const struct GNUNET_ShortHashCode *id) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:140: warning: The following parameter of add_store_member(struct GNUNET_MESSENGER_MemberStore *store, const struct GNUNET_ShortHashCode *id) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:144: warning: argument 'in' of command @param is not found in the argument list of iterate_store_members(struct GNUNET_MESSENGER_MemberStore *store, GNUNET_MESSENGER_MemberIteratorCallback it, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:144: warning: argument 'out' of command @param is not found in the argument list of iterate_store_members(struct GNUNET_MESSENGER_MemberStore *store, GNUNET_MESSENGER_MemberIteratorCallback it, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:144: warning: argument 'in' of command @param is not found in the argument list of iterate_store_members(struct GNUNET_MESSENGER_MemberStore *store, GNUNET_MESSENGER_MemberIteratorCallback it, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:144: warning: argument 'out' of command @param is not found in the argument list of iterate_store_members(struct GNUNET_MESSENGER_MemberStore *store, GNUNET_MESSENGER_MemberIteratorCallback it, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_member_store.h:154: warning: The following parameters of iterate_store_members(struct GNUNET_MESSENGER_MemberStore *store, GNUNET_MESSENGER_MemberIteratorCallback it, void *cls) are not documented: - parameter 'store' - parameter 'cls' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:39: warning: argument 'in' of command @param is not found in the argument list of handle_message_join(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:39: warning: argument 'out' of command @param is not found in the argument list of handle_message_join(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:39: warning: argument 'in' of command @param is not found in the argument list of handle_message_join(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:39: warning: argument 'out' of command @param is not found in the argument list of handle_message_join(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.c:40: warning: The following parameters of handle_message_join(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:54: warning: argument 'in' of command @param is not found in the argument list of handle_message_leave(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:54: warning: argument 'out' of command @param is not found in the argument list of handle_message_leave(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:54: warning: argument 'in' of command @param is not found in the argument list of handle_message_leave(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:54: warning: argument 'out' of command @param is not found in the argument list of handle_message_leave(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.c:60: warning: The following parameters of handle_message_leave(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:69: warning: argument 'in' of command @param is not found in the argument list of handle_message_name(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:69: warning: argument 'out' of command @param is not found in the argument list of handle_message_name(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:69: warning: argument 'in' of command @param is not found in the argument list of handle_message_name(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:69: warning: argument 'out' of command @param is not found in the argument list of handle_message_name(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.c:72: warning: The following parameters of handle_message_name(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:84: warning: argument 'in' of command @param is not found in the argument list of handle_message_key(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:84: warning: argument 'out' of command @param is not found in the argument list of handle_message_key(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:84: warning: argument 'in' of command @param is not found in the argument list of handle_message_key(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:84: warning: argument 'out' of command @param is not found in the argument list of handle_message_key(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.c:86: warning: The following parameters of handle_message_key(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:99: warning: argument 'in' of command @param is not found in the argument list of handle_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:99: warning: argument 'out' of command @param is not found in the argument list of handle_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:99: warning: argument 'in' of command @param is not found in the argument list of handle_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:99: warning: argument 'out' of command @param is not found in the argument list of handle_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.c:95: warning: The following parameters of handle_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:114: warning: argument 'in' of command @param is not found in the argument list of handle_message_id(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:114: warning: argument 'out' of command @param is not found in the argument list of handle_message_id(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:114: warning: argument 'in' of command @param is not found in the argument list of handle_message_id(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:114: warning: argument 'out' of command @param is not found in the argument list of handle_message_id(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.c:108: warning: The following parameters of handle_message_id(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:129: warning: argument 'in' of command @param is not found in the argument list of handle_message_miss(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:129: warning: argument 'out' of command @param is not found in the argument list of handle_message_miss(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:129: warning: argument 'in' of command @param is not found in the argument list of handle_message_miss(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:129: warning: argument 'out' of command @param is not found in the argument list of handle_message_miss(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.c:124: warning: The following parameters of handle_message_miss(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:144: warning: argument 'in' of command @param is not found in the argument list of handle_message_delete(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:144: warning: argument 'out' of command @param is not found in the argument list of handle_message_delete(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:144: warning: argument 'in' of command @param is not found in the argument list of handle_message_delete(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:144: warning: argument 'out' of command @param is not found in the argument list of handle_message_delete(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.c:141: warning: The following parameters of handle_message_delete(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:39: warning: argument 'in' of command @param is not found in the argument list of handle_message_join(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:39: warning: argument 'out' of command @param is not found in the argument list of handle_message_join(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:39: warning: argument 'in' of command @param is not found in the argument list of handle_message_join(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:39: warning: argument 'out' of command @param is not found in the argument list of handle_message_join(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:48: warning: The following parameters of handle_message_join(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:54: warning: argument 'in' of command @param is not found in the argument list of handle_message_leave(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:54: warning: argument 'out' of command @param is not found in the argument list of handle_message_leave(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:54: warning: argument 'in' of command @param is not found in the argument list of handle_message_leave(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:54: warning: argument 'out' of command @param is not found in the argument list of handle_message_leave(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:63: warning: The following parameters of handle_message_leave(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:69: warning: argument 'in' of command @param is not found in the argument list of handle_message_name(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:69: warning: argument 'out' of command @param is not found in the argument list of handle_message_name(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:69: warning: argument 'in' of command @param is not found in the argument list of handle_message_name(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:69: warning: argument 'out' of command @param is not found in the argument list of handle_message_name(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:78: warning: The following parameters of handle_message_name(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:84: warning: argument 'in' of command @param is not found in the argument list of handle_message_key(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:84: warning: argument 'out' of command @param is not found in the argument list of handle_message_key(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:84: warning: argument 'in' of command @param is not found in the argument list of handle_message_key(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:84: warning: argument 'out' of command @param is not found in the argument list of handle_message_key(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:93: warning: The following parameters of handle_message_key(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:99: warning: argument 'in' of command @param is not found in the argument list of handle_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:99: warning: argument 'out' of command @param is not found in the argument list of handle_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:99: warning: argument 'in' of command @param is not found in the argument list of handle_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:99: warning: argument 'out' of command @param is not found in the argument list of handle_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:108: warning: The following parameters of handle_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:114: warning: argument 'in' of command @param is not found in the argument list of handle_message_id(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:114: warning: argument 'out' of command @param is not found in the argument list of handle_message_id(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:114: warning: argument 'in' of command @param is not found in the argument list of handle_message_id(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:114: warning: argument 'out' of command @param is not found in the argument list of handle_message_id(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:123: warning: The following parameters of handle_message_id(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:129: warning: argument 'in' of command @param is not found in the argument list of handle_message_miss(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:129: warning: argument 'out' of command @param is not found in the argument list of handle_message_miss(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:129: warning: argument 'in' of command @param is not found in the argument list of handle_message_miss(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:129: warning: argument 'out' of command @param is not found in the argument list of handle_message_miss(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:138: warning: The following parameters of handle_message_miss(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:144: warning: argument 'in' of command @param is not found in the argument list of handle_message_delete(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:144: warning: argument 'out' of command @param is not found in the argument list of handle_message_delete(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:144: warning: argument 'in' of command @param is not found in the argument list of handle_message_delete(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:144: warning: argument 'out' of command @param is not found in the argument list of handle_message_delete(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_handle.h:153: warning: The following parameters of handle_message_delete(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_kind.h:40: warning: argument 'members' of command @param is not found in the argument list of create_message_info(const struct GNUNET_MESSENGER_Ego *ego) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_kind.h:153: warning: end of comment block while expecting command -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_kind.h:40: warning: argument 'members' of command @param is not found in the argument list of create_message_info(const struct GNUNET_MESSENGER_Ego *ego) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_kind.h:153: warning: end of comment block while expecting command -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:38: warning: argument 'in' of command @param is not found in the argument list of recv_message_info(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:38: warning: argument 'out' of command @param is not found in the argument list of recv_message_info(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:38: warning: argument 'in' of command @param is not found in the argument list of recv_message_info(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:38: warning: argument 'out' of command @param is not found in the argument list of recv_message_info(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.c:77: warning: The following parameters of recv_message_info(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'tunnel' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:55: warning: argument 'in' of command @param is not found in the argument list of recv_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:55: warning: argument 'out' of command @param is not found in the argument list of recv_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:55: warning: argument 'in' of command @param is not found in the argument list of recv_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:55: warning: argument 'out' of command @param is not found in the argument list of recv_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.c:116: warning: The following parameters of recv_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'tunnel' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:71: warning: argument 'in' of command @param is not found in the argument list of recv_message_request(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:71: warning: argument 'out' of command @param is not found in the argument list of recv_message_request(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:71: warning: argument 'in' of command @param is not found in the argument list of recv_message_request(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:71: warning: argument 'out' of command @param is not found in the argument list of recv_message_request(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.c:163: warning: The following parameters of recv_message_request(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'tunnel' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:38: warning: argument 'in' of command @param is not found in the argument list of recv_message_info(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:38: warning: argument 'out' of command @param is not found in the argument list of recv_message_info(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:38: warning: argument 'in' of command @param is not found in the argument list of recv_message_info(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:38: warning: argument 'out' of command @param is not found in the argument list of recv_message_info(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:49: warning: The following parameters of recv_message_info(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'tunnel' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:55: warning: argument 'in' of command @param is not found in the argument list of recv_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:55: warning: argument 'out' of command @param is not found in the argument list of recv_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:55: warning: argument 'in' of command @param is not found in the argument list of recv_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:55: warning: argument 'out' of command @param is not found in the argument list of recv_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:65: warning: The following parameters of recv_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'tunnel' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:71: warning: argument 'in' of command @param is not found in the argument list of recv_message_request(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:71: warning: argument 'out' of command @param is not found in the argument list of recv_message_request(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:71: warning: argument 'in' of command @param is not found in the argument list of recv_message_request(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:71: warning: argument 'out' of command @param is not found in the argument list of recv_message_request(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_recv.h:82: warning: The following parameters of recv_message_request(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'tunnel' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:38: warning: argument 'in' of command @param is not found in the argument list of send_message_join(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:38: warning: argument 'out' of command @param is not found in the argument list of send_message_join(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:38: warning: argument 'in' of command @param is not found in the argument list of send_message_join(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:38: warning: argument 'out' of command @param is not found in the argument list of send_message_join(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.c:33: warning: The following parameters of send_message_join(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:53: warning: argument 'in' of command @param is not found in the argument list of send_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:53: warning: argument 'out' of command @param is not found in the argument list of send_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:53: warning: argument 'in' of command @param is not found in the argument list of send_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:53: warning: argument 'out' of command @param is not found in the argument list of send_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.c:42: warning: The following parameters of send_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:68: warning: argument 'in' of command @param is not found in the argument list of send_message_id(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:68: warning: argument 'out' of command @param is not found in the argument list of send_message_id(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:68: warning: argument 'in' of command @param is not found in the argument list of send_message_id(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:68: warning: argument 'out' of command @param is not found in the argument list of send_message_id(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.c:54: warning: The following parameters of send_message_id(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:83: warning: argument 'in' of command @param is not found in the argument list of send_message_request(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:83: warning: argument 'out' of command @param is not found in the argument list of send_message_request(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:83: warning: argument 'in' of command @param is not found in the argument list of send_message_request(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:83: warning: argument 'out' of command @param is not found in the argument list of send_message_request(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.c:63: warning: The following parameters of send_message_request(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:38: warning: argument 'in' of command @param is not found in the argument list of send_message_join(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:38: warning: argument 'out' of command @param is not found in the argument list of send_message_join(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:38: warning: argument 'in' of command @param is not found in the argument list of send_message_join(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:38: warning: argument 'out' of command @param is not found in the argument list of send_message_join(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:47: warning: The following parameters of send_message_join(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:53: warning: argument 'in' of command @param is not found in the argument list of send_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:53: warning: argument 'out' of command @param is not found in the argument list of send_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:53: warning: argument 'in' of command @param is not found in the argument list of send_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:53: warning: argument 'out' of command @param is not found in the argument list of send_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:62: warning: The following parameters of send_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:68: warning: argument 'in' of command @param is not found in the argument list of send_message_id(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:68: warning: argument 'out' of command @param is not found in the argument list of send_message_id(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:68: warning: argument 'in' of command @param is not found in the argument list of send_message_id(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:68: warning: argument 'out' of command @param is not found in the argument list of send_message_id(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:77: warning: The following parameters of send_message_id(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:83: warning: argument 'in' of command @param is not found in the argument list of send_message_request(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:83: warning: argument 'out' of command @param is not found in the argument list of send_message_request(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:83: warning: argument 'in' of command @param is not found in the argument list of send_message_request(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:83: warning: argument 'out' of command @param is not found in the argument list of send_message_request(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_send.h:92: warning: The following parameters of send_message_request(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:71: warning: argument 'in' of command @param is not found in the argument list of clear_message_store(struct GNUNET_MESSENGER_MessageStore *store) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:71: warning: argument 'out' of command @param is not found in the argument list of clear_message_store(struct GNUNET_MESSENGER_MessageStore *store) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.c:81: warning: The following parameter of clear_message_store(struct GNUNET_MESSENGER_MessageStore *store) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:111: warning: argument 'in' of command @param is not found in the argument list of get_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:111: warning: argument 'out' of command @param is not found in the argument list of get_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.c:414: warning: The following parameter of get_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:126: warning: argument 'in' of command @param is not found in the argument list of get_store_message_link(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash, int deleted_only) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:126: warning: argument 'out' of command @param is not found in the argument list of get_store_message_link(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash, int deleted_only) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.c:476: warning: The following parameter of get_store_message_link(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash, int deleted_only) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:144: warning: argument 'in' of command @param is not found in the argument list of put_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:144: warning: argument 'out' of command @param is not found in the argument list of put_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:144: warning: argument 'in' of command @param is not found in the argument list of put_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:144: warning: argument 'out' of command @param is not found in the argument list of put_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.c:506: warning: The following parameters of put_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash, struct GNUNET_MESSENGER_Message *message) are not documented: - parameter 'store' - parameter 'message' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:157: warning: argument 'in' of command @param is not found in the argument list of delete_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:157: warning: argument 'out' of command @param is not found in the argument list of delete_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.c:538: warning: The following parameter of delete_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:71: warning: argument 'in' of command @param is not found in the argument list of clear_message_store(struct GNUNET_MESSENGER_MessageStore *store) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:71: warning: argument 'out' of command @param is not found in the argument list of clear_message_store(struct GNUNET_MESSENGER_MessageStore *store) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:75: warning: The following parameter of clear_message_store(struct GNUNET_MESSENGER_MessageStore *store) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:111: warning: argument 'in' of command @param is not found in the argument list of get_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:111: warning: argument 'out' of command @param is not found in the argument list of get_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:123: warning: The following parameter of get_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:126: warning: argument 'in' of command @param is not found in the argument list of get_store_message_link(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash, int deleted_only) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:126: warning: argument 'out' of command @param is not found in the argument list of get_store_message_link(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash, int deleted_only) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:140: warning: The following parameter of get_store_message_link(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash, int deleted_only) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:144: warning: argument 'in' of command @param is not found in the argument list of put_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:144: warning: argument 'out' of command @param is not found in the argument list of put_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:144: warning: argument 'in' of command @param is not found in the argument list of put_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:144: warning: argument 'out' of command @param is not found in the argument list of put_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:153: warning: The following parameters of put_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash, struct GNUNET_MESSENGER_Message *message) are not documented: - parameter 'store' - parameter 'message' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:157: warning: argument 'in' of command @param is not found in the argument list of delete_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:157: warning: argument 'out' of command @param is not found in the argument list of delete_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_store.h:166: warning: The following parameter of delete_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation.h:68: warning: argument 'in' of command @param is not found in the argument list of destroy_operation(struct GNUNET_MESSENGER_Operation *op) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation.h:68: warning: argument 'out' of command @param is not found in the argument list of destroy_operation(struct GNUNET_MESSENGER_Operation *op) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation.c:47: warning: The following parameter of destroy_operation(struct GNUNET_MESSENGER_Operation *op) is not documented: - parameter 'op' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation.h:76: warning: argument 'in' of command @param is not found in the argument list of load_operation(struct GNUNET_MESSENGER_OperationStore *store, const char *path) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation.h:76: warning: argument 'out' of command @param is not found in the argument list of load_operation(struct GNUNET_MESSENGER_OperationStore *store, const char *path) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation.c:61: warning: The following parameter of load_operation(struct GNUNET_MESSENGER_OperationStore *store, const char *path) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation.h:104: warning: argument 'in' of command @param is not found in the argument list of start_operation(struct GNUNET_MESSENGER_Operation *op, enum GNUNET_MESSENGER_OperationType type, struct GNUNET_MESSENGER_OperationStore *store, struct GNUNET_TIME_Relative delay) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation.h:104: warning: argument 'out' of command @param is not found in the argument list of start_operation(struct GNUNET_MESSENGER_Operation *op, enum GNUNET_MESSENGER_OperationType type, struct GNUNET_MESSENGER_OperationStore *store, struct GNUNET_TIME_Relative delay) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation.h:104: warning: argument 'in' of command @param is not found in the argument list of start_operation(struct GNUNET_MESSENGER_Operation *op, enum GNUNET_MESSENGER_OperationType type, struct GNUNET_MESSENGER_OperationStore *store, struct GNUNET_TIME_Relative delay) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation.h:104: warning: argument 'out' of command @param is not found in the argument list of start_operation(struct GNUNET_MESSENGER_Operation *op, enum GNUNET_MESSENGER_OperationType type, struct GNUNET_MESSENGER_OperationStore *store, struct GNUNET_TIME_Relative delay) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation.c:175: warning: The following parameters of start_operation(struct GNUNET_MESSENGER_Operation *op, enum GNUNET_MESSENGER_OperationType type, struct GNUNET_MESSENGER_OperationStore *store, struct GNUNET_TIME_Relative delay) are not documented: - parameter 'op' - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation.h:68: warning: argument 'in' of command @param is not found in the argument list of destroy_operation(struct GNUNET_MESSENGER_Operation *op) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation.h:68: warning: argument 'out' of command @param is not found in the argument list of destroy_operation(struct GNUNET_MESSENGER_Operation *op) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation.h:72: warning: The following parameter of destroy_operation(struct GNUNET_MESSENGER_Operation *op) is not documented: - parameter 'op' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation.h:76: warning: argument 'in' of command @param is not found in the argument list of load_operation(struct GNUNET_MESSENGER_OperationStore *store, const char *path) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation.h:76: warning: argument 'out' of command @param is not found in the argument list of load_operation(struct GNUNET_MESSENGER_OperationStore *store, const char *path) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation.h:89: warning: The following parameter of load_operation(struct GNUNET_MESSENGER_OperationStore *store, const char *path) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation.h:104: warning: argument 'in' of command @param is not found in the argument list of start_operation(struct GNUNET_MESSENGER_Operation *op, enum GNUNET_MESSENGER_OperationType type, struct GNUNET_MESSENGER_OperationStore *store, struct GNUNET_TIME_Relative delay) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation.h:104: warning: argument 'out' of command @param is not found in the argument list of start_operation(struct GNUNET_MESSENGER_Operation *op, enum GNUNET_MESSENGER_OperationType type, struct GNUNET_MESSENGER_OperationStore *store, struct GNUNET_TIME_Relative delay) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation.h:104: warning: argument 'in' of command @param is not found in the argument list of start_operation(struct GNUNET_MESSENGER_Operation *op, enum GNUNET_MESSENGER_OperationType type, struct GNUNET_MESSENGER_OperationStore *store, struct GNUNET_TIME_Relative delay) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation.h:104: warning: argument 'out' of command @param is not found in the argument list of start_operation(struct GNUNET_MESSENGER_Operation *op, enum GNUNET_MESSENGER_OperationType type, struct GNUNET_MESSENGER_OperationStore *store, struct GNUNET_TIME_Relative delay) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation.h:117: warning: The following parameters of start_operation(struct GNUNET_MESSENGER_Operation *op, enum GNUNET_MESSENGER_OperationType type, struct GNUNET_MESSENGER_OperationStore *store, struct GNUNET_TIME_Relative delay) are not documented: - parameter 'op' - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.h:46: warning: argument 'in' of command @param is not found in the argument list of init_operation_store(struct GNUNET_MESSENGER_OperationStore *store, struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.h:46: warning: argument 'out' of command @param is not found in the argument list of init_operation_store(struct GNUNET_MESSENGER_OperationStore *store, struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.c:32: warning: The following parameter of init_operation_store(struct GNUNET_MESSENGER_OperationStore *store, struct GNUNET_MESSENGER_SrvRoom *room) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.h:56: warning: argument 'in' of command @param is not found in the argument list of clear_operation_store(struct GNUNET_MESSENGER_OperationStore *store) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.h:56: warning: argument 'out' of command @param is not found in the argument list of clear_operation_store(struct GNUNET_MESSENGER_OperationStore *store) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.c:54: warning: The following parameter of clear_operation_store(struct GNUNET_MESSENGER_OperationStore *store) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.h:95: warning: argument 'in' of command @param is not found in the argument list of use_store_operation(struct GNUNET_MESSENGER_OperationStore *store, const struct GNUNET_HashCode *hash, enum GNUNET_MESSENGER_OperationType type, struct GNUNET_TIME_Relative delay) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.h:95: warning: argument 'out' of command @param is not found in the argument list of use_store_operation(struct GNUNET_MESSENGER_OperationStore *store, const struct GNUNET_HashCode *hash, enum GNUNET_MESSENGER_OperationType type, struct GNUNET_TIME_Relative delay) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.c:153: warning: The following parameter of use_store_operation(struct GNUNET_MESSENGER_OperationStore *store, const struct GNUNET_HashCode *hash, enum GNUNET_MESSENGER_OperationType type, struct GNUNET_TIME_Relative delay) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.h:120: warning: argument 'in' of command @param is not found in the argument list of cancel_store_operation(struct GNUNET_MESSENGER_OperationStore *store, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.h:120: warning: argument 'out' of command @param is not found in the argument list of cancel_store_operation(struct GNUNET_MESSENGER_OperationStore *store, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.c:183: warning: The following parameter of cancel_store_operation(struct GNUNET_MESSENGER_OperationStore *store, const struct GNUNET_HashCode *hash) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.h:46: warning: argument 'in' of command @param is not found in the argument list of init_operation_store(struct GNUNET_MESSENGER_OperationStore *store, struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.h:46: warning: argument 'out' of command @param is not found in the argument list of init_operation_store(struct GNUNET_MESSENGER_OperationStore *store, struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.h:51: warning: The following parameter of init_operation_store(struct GNUNET_MESSENGER_OperationStore *store, struct GNUNET_MESSENGER_SrvRoom *room) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.h:56: warning: argument 'in' of command @param is not found in the argument list of clear_operation_store(struct GNUNET_MESSENGER_OperationStore *store) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.h:56: warning: argument 'out' of command @param is not found in the argument list of clear_operation_store(struct GNUNET_MESSENGER_OperationStore *store) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.h:60: warning: The following parameter of clear_operation_store(struct GNUNET_MESSENGER_OperationStore *store) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.h:95: warning: argument 'in' of command @param is not found in the argument list of use_store_operation(struct GNUNET_MESSENGER_OperationStore *store, const struct GNUNET_HashCode *hash, enum GNUNET_MESSENGER_OperationType type, struct GNUNET_TIME_Relative delay) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.h:95: warning: argument 'out' of command @param is not found in the argument list of use_store_operation(struct GNUNET_MESSENGER_OperationStore *store, const struct GNUNET_HashCode *hash, enum GNUNET_MESSENGER_OperationType type, struct GNUNET_TIME_Relative delay) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.h:113: warning: The following parameter of use_store_operation(struct GNUNET_MESSENGER_OperationStore *store, const struct GNUNET_HashCode *hash, enum GNUNET_MESSENGER_OperationType type, struct GNUNET_TIME_Relative delay) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.h:120: warning: argument 'in' of command @param is not found in the argument list of cancel_store_operation(struct GNUNET_MESSENGER_OperationStore *store, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.h:120: warning: argument 'out' of command @param is not found in the argument list of cancel_store_operation(struct GNUNET_MESSENGER_OperationStore *store, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_operation_store.h:129: warning: The following parameter of cancel_store_operation(struct GNUNET_MESSENGER_OperationStore *store, const struct GNUNET_HashCode *hash) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:86: warning: argument 'in' of command @param is not found in the argument list of create_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:86: warning: argument 'out' of command @param is not found in the argument list of create_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.c:46: warning: The following parameter of create_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:97: warning: argument 'in' of command @param is not found in the argument list of destroy_room(struct GNUNET_MESSENGER_SrvRoom *room, int deletion) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:97: warning: argument 'out' of command @param is not found in the argument list of destroy_room(struct GNUNET_MESSENGER_SrvRoom *room, int deletion) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.c:95: warning: The following parameter of destroy_room(struct GNUNET_MESSENGER_SrvRoom *room, int deletion) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:110: warning: argument 'in' of command @param is not found in the argument list of get_room_member_store(struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:110: warning: argument 'out' of command @param is not found in the argument list of get_room_member_store(struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.c:136: warning: The following parameter of get_room_member_store(struct GNUNET_MESSENGER_SrvRoom *room) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:119: warning: argument 'in' of command @param is not found in the argument list of get_room_message_store(struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:119: warning: argument 'out' of command @param is not found in the argument list of get_room_message_store(struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.c:144: warning: The following parameter of get_room_message_store(struct GNUNET_MESSENGER_SrvRoom *room) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:128: warning: argument 'in' of command @param is not found in the argument list of get_room_operation_store(struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:128: warning: argument 'out' of command @param is not found in the argument list of get_room_operation_store(struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.c:152: warning: The following parameter of get_room_operation_store(struct GNUNET_MESSENGER_SrvRoom *room) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:135: warning: argument 'in' of command @param is not found in the argument list of open_room(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:135: warning: argument 'out' of command @param is not found in the argument list of open_room(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:135: warning: argument 'in' of command @param is not found in the argument list of open_room(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:135: warning: argument 'out' of command @param is not found in the argument list of open_room(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.c:339: warning: The following parameters of open_room(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle) are not documented: - parameter 'room' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:151: warning: argument 'in' of command @param is not found in the argument list of enter_room_at(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:151: warning: argument 'out' of command @param is not found in the argument list of enter_room_at(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:151: warning: argument 'in' of command @param is not found in the argument list of enter_room_at(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:151: warning: argument 'out' of command @param is not found in the argument list of enter_room_at(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.c:387: warning: The following parameters of enter_room_at(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door) are not documented: - parameter 'room' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:166: warning: argument 'in' of command @param is not found in the argument list of pack_room_message(const struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_Message *message, struct GNUNET_HashCode *hash, int mode) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:166: warning: argument 'out' of command @param is not found in the argument list of pack_room_message(const struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_Message *message, struct GNUNET_HashCode *hash, int mode) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.c:426: warning: The following parameter of pack_room_message(const struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_Message *message, struct GNUNET_HashCode *hash, int mode) is not documented: - parameter 'message' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:190: warning: argument 'in' of command @param is not found in the argument list of send_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:190: warning: argument 'out' of command @param is not found in the argument list of send_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:190: warning: argument 'in' of command @param is not found in the argument list of send_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:190: warning: argument 'out' of command @param is not found in the argument list of send_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:190: warning: argument 'in' of command @param is not found in the argument list of send_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:190: warning: argument 'out' of command @param is not found in the argument list of send_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.c:503: warning: The following parameters of send_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_Message *message) are not documented: - parameter 'room' - parameter 'handle' - parameter 'message' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:212: warning: argument 'in' of command @param is not found in the argument list of forward_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:212: warning: argument 'out' of command @param is not found in the argument list of forward_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:212: warning: argument 'in' of command @param is not found in the argument list of forward_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:212: warning: argument 'out' of command @param is not found in the argument list of forward_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:212: warning: argument 'in' of command @param is not found in the argument list of forward_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:212: warning: argument 'out' of command @param is not found in the argument list of forward_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.c:561: warning: The following parameters of forward_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'tunnel' - parameter 'message' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:226: warning: argument 'in' of command @param is not found in the argument list of check_room_peer_status(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:226: warning: argument 'out' of command @param is not found in the argument list of check_room_peer_status(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:226: warning: argument 'in' of command @param is not found in the argument list of check_room_peer_status(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:226: warning: argument 'out' of command @param is not found in the argument list of check_room_peer_status(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.c:587: warning: The following parameters of check_room_peer_status(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel) are not documented: - parameter 'room' - parameter 'tunnel' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:236: warning: argument 'in' of command @param is not found in the argument list of merge_room_last_messages(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:236: warning: argument 'out' of command @param is not found in the argument list of merge_room_last_messages(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:236: warning: argument 'in' of command @param is not found in the argument list of merge_room_last_messages(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:236: warning: argument 'out' of command @param is not found in the argument list of merge_room_last_messages(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.c:626: warning: The following parameters of merge_room_last_messages(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle) are not documented: - parameter 'room' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:249: warning: argument 'in' of command @param is not found in the argument list of delete_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash, const struct GNUNET_TIME_Relative delay) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:249: warning: argument 'out' of command @param is not found in the argument list of delete_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash, const struct GNUNET_TIME_Relative delay) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:249: warning: argument 'in' of command @param is not found in the argument list of delete_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash, const struct GNUNET_TIME_Relative delay) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:249: warning: argument 'out' of command @param is not found in the argument list of delete_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash, const struct GNUNET_TIME_Relative delay) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.c:668: warning: The following parameters of delete_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash, const struct GNUNET_TIME_Relative delay) are not documented: - parameter 'room' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:265: warning: argument 'in' of command @param is not found in the argument list of get_room_cadet(struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:265: warning: argument 'out' of command @param is not found in the argument list of get_room_cadet(struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.c:710: warning: The following parameter of get_room_cadet(struct GNUNET_MESSENGER_SrvRoom *room) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:310: warning: explicit link request to 'NULL' could not be resolved -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:308: warning: argument 'in' of command @param is not found in the argument list of request_room_message(struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_HashCode *hash, const struct GNUNET_MESSENGER_MemberSession *session, GNUNET_MESSENGER_MessageRequestCallback callback, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:308: warning: argument 'out' of command @param is not found in the argument list of request_room_message(struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_HashCode *hash, const struct GNUNET_MESSENGER_MemberSession *session, GNUNET_MESSENGER_MessageRequestCallback callback, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.c:774: warning: The following parameters of request_room_message(struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_HashCode *hash, const struct GNUNET_MESSENGER_MemberSession *session, GNUNET_MESSENGER_MessageRequestCallback callback, void *cls) are not documented: - parameter 'room' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:332: warning: argument 'in' of command @param is not found in the argument list of solve_room_member_collisions(struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_IDENTITY_PublicKey *public_key, const struct GNUNET_ShortHashCode *member_id, struct GNUNET_TIME_Absolute timestamp) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:332: warning: argument 'out' of command @param is not found in the argument list of solve_room_member_collisions(struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_IDENTITY_PublicKey *public_key, const struct GNUNET_ShortHashCode *member_id, struct GNUNET_TIME_Absolute timestamp) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.c:873: warning: The following parameter of solve_room_member_collisions(struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_IDENTITY_PublicKey *public_key, const struct GNUNET_ShortHashCode *member_id, struct GNUNET_TIME_Absolute timestamp) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:347: warning: argument 'in' of command @param is not found in the argument list of rebuild_room_basement_structure(struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:347: warning: argument 'out' of command @param is not found in the argument list of rebuild_room_basement_structure(struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.c:915: warning: The following parameter of rebuild_room_basement_structure(struct GNUNET_MESSENGER_SrvRoom *room) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:86: warning: argument 'in' of command @param is not found in the argument list of create_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:86: warning: argument 'out' of command @param is not found in the argument list of create_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:92: warning: The following parameter of create_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:97: warning: argument 'in' of command @param is not found in the argument list of destroy_room(struct GNUNET_MESSENGER_SrvRoom *room, int deletion) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:97: warning: argument 'out' of command @param is not found in the argument list of destroy_room(struct GNUNET_MESSENGER_SrvRoom *room, int deletion) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:105: warning: The following parameter of destroy_room(struct GNUNET_MESSENGER_SrvRoom *room, int deletion) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:110: warning: argument 'in' of command @param is not found in the argument list of get_room_member_store(struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:110: warning: argument 'out' of command @param is not found in the argument list of get_room_member_store(struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:115: warning: The following parameter of get_room_member_store(struct GNUNET_MESSENGER_SrvRoom *room) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:119: warning: argument 'in' of command @param is not found in the argument list of get_room_message_store(struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:119: warning: argument 'out' of command @param is not found in the argument list of get_room_message_store(struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:124: warning: The following parameter of get_room_message_store(struct GNUNET_MESSENGER_SrvRoom *room) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:128: warning: argument 'in' of command @param is not found in the argument list of get_room_operation_store(struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:128: warning: argument 'out' of command @param is not found in the argument list of get_room_operation_store(struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:133: warning: The following parameter of get_room_operation_store(struct GNUNET_MESSENGER_SrvRoom *room) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:135: warning: argument 'in' of command @param is not found in the argument list of open_room(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:135: warning: argument 'out' of command @param is not found in the argument list of open_room(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:135: warning: argument 'in' of command @param is not found in the argument list of open_room(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:135: warning: argument 'out' of command @param is not found in the argument list of open_room(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:148: warning: The following parameters of open_room(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle) are not documented: - parameter 'room' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:151: warning: argument 'in' of command @param is not found in the argument list of enter_room_at(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:151: warning: argument 'out' of command @param is not found in the argument list of enter_room_at(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:151: warning: argument 'in' of command @param is not found in the argument list of enter_room_at(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:151: warning: argument 'out' of command @param is not found in the argument list of enter_room_at(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:162: warning: The following parameters of enter_room_at(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door) are not documented: - parameter 'room' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:166: warning: argument 'in' of command @param is not found in the argument list of pack_room_message(const struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_Message *message, struct GNUNET_HashCode *hash, int mode) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:166: warning: argument 'out' of command @param is not found in the argument list of pack_room_message(const struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_Message *message, struct GNUNET_HashCode *hash, int mode) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:184: warning: The following parameter of pack_room_message(const struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_Message *message, struct GNUNET_HashCode *hash, int mode) is not documented: - parameter 'message' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:190: warning: argument 'in' of command @param is not found in the argument list of send_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:190: warning: argument 'out' of command @param is not found in the argument list of send_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:190: warning: argument 'in' of command @param is not found in the argument list of send_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:190: warning: argument 'out' of command @param is not found in the argument list of send_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:190: warning: argument 'in' of command @param is not found in the argument list of send_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:190: warning: argument 'out' of command @param is not found in the argument list of send_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:206: warning: The following parameters of send_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_Message *message) are not documented: - parameter 'room' - parameter 'handle' - parameter 'message' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:212: warning: argument 'in' of command @param is not found in the argument list of forward_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:212: warning: argument 'out' of command @param is not found in the argument list of forward_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:212: warning: argument 'in' of command @param is not found in the argument list of forward_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:212: warning: argument 'out' of command @param is not found in the argument list of forward_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:212: warning: argument 'in' of command @param is not found in the argument list of forward_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:212: warning: argument 'out' of command @param is not found in the argument list of forward_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:219: warning: The following parameters of forward_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'tunnel' - parameter 'message' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:226: warning: argument 'in' of command @param is not found in the argument list of check_room_peer_status(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:226: warning: argument 'out' of command @param is not found in the argument list of check_room_peer_status(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:226: warning: argument 'in' of command @param is not found in the argument list of check_room_peer_status(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:226: warning: argument 'out' of command @param is not found in the argument list of check_room_peer_status(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:233: warning: The following parameters of check_room_peer_status(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel) are not documented: - parameter 'room' - parameter 'tunnel' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:236: warning: argument 'in' of command @param is not found in the argument list of merge_room_last_messages(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:236: warning: argument 'out' of command @param is not found in the argument list of merge_room_last_messages(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:236: warning: argument 'in' of command @param is not found in the argument list of merge_room_last_messages(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:236: warning: argument 'out' of command @param is not found in the argument list of merge_room_last_messages(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:244: warning: The following parameters of merge_room_last_messages(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle) are not documented: - parameter 'room' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:249: warning: argument 'in' of command @param is not found in the argument list of delete_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash, const struct GNUNET_TIME_Relative delay) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:249: warning: argument 'out' of command @param is not found in the argument list of delete_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash, const struct GNUNET_TIME_Relative delay) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:249: warning: argument 'in' of command @param is not found in the argument list of delete_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash, const struct GNUNET_TIME_Relative delay) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:249: warning: argument 'out' of command @param is not found in the argument list of delete_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash, const struct GNUNET_TIME_Relative delay) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:258: warning: The following parameters of delete_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash, const struct GNUNET_TIME_Relative delay) are not documented: - parameter 'room' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:265: warning: argument 'in' of command @param is not found in the argument list of get_room_cadet(struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:265: warning: argument 'out' of command @param is not found in the argument list of get_room_cadet(struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:270: warning: The following parameter of get_room_cadet(struct GNUNET_MESSENGER_SrvRoom *room) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:310: warning: explicit link request to 'NULL' could not be resolved -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:308: warning: argument 'in' of command @param is not found in the argument list of request_room_message(struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_HashCode *hash, const struct GNUNET_MESSENGER_MemberSession *session, GNUNET_MESSENGER_MessageRequestCallback callback, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:308: warning: argument 'out' of command @param is not found in the argument list of request_room_message(struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_HashCode *hash, const struct GNUNET_MESSENGER_MemberSession *session, GNUNET_MESSENGER_MessageRequestCallback callback, void *cls) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:324: warning: The following parameters of request_room_message(struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_HashCode *hash, const struct GNUNET_MESSENGER_MemberSession *session, GNUNET_MESSENGER_MessageRequestCallback callback, void *cls) are not documented: - parameter 'room' - parameter 'session' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:332: warning: argument 'in' of command @param is not found in the argument list of solve_room_member_collisions(struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_IDENTITY_PublicKey *public_key, const struct GNUNET_ShortHashCode *member_id, struct GNUNET_TIME_Absolute timestamp) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:332: warning: argument 'out' of command @param is not found in the argument list of solve_room_member_collisions(struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_IDENTITY_PublicKey *public_key, const struct GNUNET_ShortHashCode *member_id, struct GNUNET_TIME_Absolute timestamp) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:340: warning: The following parameter of solve_room_member_collisions(struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_IDENTITY_PublicKey *public_key, const struct GNUNET_ShortHashCode *member_id, struct GNUNET_TIME_Absolute timestamp) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:347: warning: argument 'in' of command @param is not found in the argument list of rebuild_room_basement_structure(struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:347: warning: argument 'out' of command @param is not found in the argument list of rebuild_room_basement_structure(struct GNUNET_MESSENGER_SrvRoom *room) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:352: warning: The following parameter of rebuild_room_basement_structure(struct GNUNET_MESSENGER_SrvRoom *room) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:65: warning: argument 'in' of command @param is not found in the argument list of create_service(const struct GNUNET_CONFIGURATION_Handle *config, struct GNUNET_SERVICE_Handle *service_handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:65: warning: argument 'out' of command @param is not found in the argument list of create_service(const struct GNUNET_CONFIGURATION_Handle *config, struct GNUNET_SERVICE_Handle *service_handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.c:44: warning: The following parameter of create_service(const struct GNUNET_CONFIGURATION_Handle *config, struct GNUNET_SERVICE_Handle *service_handle) is not documented: - parameter 'service_handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:76: warning: argument 'in' of command @param is not found in the argument list of destroy_service(struct GNUNET_MESSENGER_Service *service) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:76: warning: argument 'out' of command @param is not found in the argument list of destroy_service(struct GNUNET_MESSENGER_Service *service) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.c:102: warning: The following parameter of destroy_service(struct GNUNET_MESSENGER_Service *service) is not documented: - parameter 'service' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:84: warning: argument 'in' of command @param is not found in the argument list of get_service_ego_store(struct GNUNET_MESSENGER_Service *service) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:84: warning: argument 'out' of command @param is not found in the argument list of get_service_ego_store(struct GNUNET_MESSENGER_Service *service) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.c:141: warning: The following parameter of get_service_ego_store(struct GNUNET_MESSENGER_Service *service) is not documented: - parameter 'service' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:93: warning: argument 'in' of command @param is not found in the argument list of get_service_contact_store(struct GNUNET_MESSENGER_Service *service) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:93: warning: argument 'out' of command @param is not found in the argument list of get_service_contact_store(struct GNUNET_MESSENGER_Service *service) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.c:149: warning: The following parameter of get_service_contact_store(struct GNUNET_MESSENGER_Service *service) is not documented: - parameter 'service' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:102: warning: argument 'in' of command @param is not found in the argument list of add_service_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MQ_Handle *mq) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:102: warning: argument 'out' of command @param is not found in the argument list of add_service_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MQ_Handle *mq) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:102: warning: argument 'in' of command @param is not found in the argument list of add_service_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MQ_Handle *mq) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:102: warning: argument 'out' of command @param is not found in the argument list of add_service_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MQ_Handle *mq) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.c:157: warning: The following parameters of add_service_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MQ_Handle *mq) are not documented: - parameter 'service' - parameter 'mq' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:113: warning: argument 'in' of command @param is not found in the argument list of remove_service_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:113: warning: argument 'out' of command @param is not found in the argument list of remove_service_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:113: warning: argument 'in' of command @param is not found in the argument list of remove_service_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:113: warning: argument 'out' of command @param is not found in the argument list of remove_service_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.c:173: warning: The following parameters of remove_service_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle) are not documented: - parameter 'service' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:145: warning: argument 'in' of command @param is not found in the argument list of open_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:145: warning: argument 'out' of command @param is not found in the argument list of open_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:145: warning: argument 'in' of command @param is not found in the argument list of open_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:145: warning: argument 'out' of command @param is not found in the argument list of open_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.c:204: warning: The following parameters of open_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) are not documented: - parameter 'service' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:159: warning: argument 'in' of command @param is not found in the argument list of entry_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:159: warning: argument 'out' of command @param is not found in the argument list of entry_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:159: warning: argument 'in' of command @param is not found in the argument list of entry_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:159: warning: argument 'out' of command @param is not found in the argument list of entry_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.c:228: warning: The following parameters of entry_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) are not documented: - parameter 'service' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:178: warning: argument 'in' of command @param is not found in the argument list of close_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:178: warning: argument 'out' of command @param is not found in the argument list of close_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:178: warning: argument 'in' of command @param is not found in the argument list of close_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:178: warning: argument 'out' of command @param is not found in the argument list of close_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.c:263: warning: The following parameters of close_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) are not documented: - parameter 'service' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:197: warning: argument 'in' of command @param is not found in the argument list of handle_service_message(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:197: warning: argument 'out' of command @param is not found in the argument list of handle_service_message(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:197: warning: argument 'in' of command @param is not found in the argument list of handle_service_message(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:197: warning: argument 'out' of command @param is not found in the argument list of handle_service_message(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.c:304: warning: The following parameters of handle_service_message(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'service' - parameter 'room' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:65: warning: argument 'in' of command @param is not found in the argument list of create_service(const struct GNUNET_CONFIGURATION_Handle *config, struct GNUNET_SERVICE_Handle *service_handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:65: warning: argument 'out' of command @param is not found in the argument list of create_service(const struct GNUNET_CONFIGURATION_Handle *config, struct GNUNET_SERVICE_Handle *service_handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:71: warning: The following parameter of create_service(const struct GNUNET_CONFIGURATION_Handle *config, struct GNUNET_SERVICE_Handle *service_handle) is not documented: - parameter 'service_handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:76: warning: argument 'in' of command @param is not found in the argument list of destroy_service(struct GNUNET_MESSENGER_Service *service) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:76: warning: argument 'out' of command @param is not found in the argument list of destroy_service(struct GNUNET_MESSENGER_Service *service) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:80: warning: The following parameter of destroy_service(struct GNUNET_MESSENGER_Service *service) is not documented: - parameter 'service' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:84: warning: argument 'in' of command @param is not found in the argument list of get_service_ego_store(struct GNUNET_MESSENGER_Service *service) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:84: warning: argument 'out' of command @param is not found in the argument list of get_service_ego_store(struct GNUNET_MESSENGER_Service *service) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:89: warning: The following parameter of get_service_ego_store(struct GNUNET_MESSENGER_Service *service) is not documented: - parameter 'service' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:93: warning: argument 'in' of command @param is not found in the argument list of get_service_contact_store(struct GNUNET_MESSENGER_Service *service) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:93: warning: argument 'out' of command @param is not found in the argument list of get_service_contact_store(struct GNUNET_MESSENGER_Service *service) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:98: warning: The following parameter of get_service_contact_store(struct GNUNET_MESSENGER_Service *service) is not documented: - parameter 'service' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:102: warning: argument 'in' of command @param is not found in the argument list of add_service_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MQ_Handle *mq) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:102: warning: argument 'out' of command @param is not found in the argument list of add_service_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MQ_Handle *mq) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:102: warning: argument 'in' of command @param is not found in the argument list of add_service_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MQ_Handle *mq) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:102: warning: argument 'out' of command @param is not found in the argument list of add_service_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MQ_Handle *mq) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:108: warning: The following parameters of add_service_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MQ_Handle *mq) are not documented: - parameter 'service' - parameter 'mq' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:113: warning: argument 'in' of command @param is not found in the argument list of remove_service_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:113: warning: argument 'out' of command @param is not found in the argument list of remove_service_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:113: warning: argument 'in' of command @param is not found in the argument list of remove_service_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:113: warning: argument 'out' of command @param is not found in the argument list of remove_service_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:118: warning: The following parameters of remove_service_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle) are not documented: - parameter 'service' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:145: warning: argument 'in' of command @param is not found in the argument list of open_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:145: warning: argument 'out' of command @param is not found in the argument list of open_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:145: warning: argument 'in' of command @param is not found in the argument list of open_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:145: warning: argument 'out' of command @param is not found in the argument list of open_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:155: warning: The following parameters of open_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) are not documented: - parameter 'service' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:159: warning: argument 'in' of command @param is not found in the argument list of entry_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:159: warning: argument 'out' of command @param is not found in the argument list of entry_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:159: warning: argument 'in' of command @param is not found in the argument list of entry_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:159: warning: argument 'out' of command @param is not found in the argument list of entry_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:173: warning: The following parameters of entry_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) are not documented: - parameter 'service' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:178: warning: argument 'in' of command @param is not found in the argument list of close_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:178: warning: argument 'out' of command @param is not found in the argument list of close_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:178: warning: argument 'in' of command @param is not found in the argument list of close_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:178: warning: argument 'out' of command @param is not found in the argument list of close_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:191: warning: The following parameters of close_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key) are not documented: - parameter 'service' - parameter 'handle' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:197: warning: argument 'in' of command @param is not found in the argument list of handle_service_message(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:197: warning: argument 'out' of command @param is not found in the argument list of handle_service_message(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:197: warning: argument 'in' of command @param is not found in the argument list of handle_service_message(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:197: warning: argument 'out' of command @param is not found in the argument list of handle_service_message(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_service.h:206: warning: The following parameters of handle_service_message(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'service' - parameter 'room' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:52: warning: argument 'in' of command @param is not found in the argument list of create_tunnel(struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_PeerIdentity *door) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:52: warning: argument 'out' of command @param is not found in the argument list of create_tunnel(struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_PeerIdentity *door) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.c:36: warning: The following parameter of create_tunnel(struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_PeerIdentity *door) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:63: warning: argument 'in' of command @param is not found in the argument list of destroy_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:63: warning: argument 'out' of command @param is not found in the argument list of destroy_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.c:58: warning: The following parameter of destroy_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel) is not documented: - parameter 'tunnel' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:71: warning: argument 'in' of command @param is not found in the argument list of bind_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_CADET_Channel *channel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:71: warning: argument 'out' of command @param is not found in the argument list of bind_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_CADET_Channel *channel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:71: warning: argument 'in' of command @param is not found in the argument list of bind_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_CADET_Channel *channel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:71: warning: argument 'out' of command @param is not found in the argument list of bind_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_CADET_Channel *channel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.c:76: warning: The following parameters of bind_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_CADET_Channel *channel) are not documented: - parameter 'tunnel' - parameter 'channel' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:81: warning: argument 'in' of command @param is not found in the argument list of connect_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:81: warning: argument 'out' of command @param is not found in the argument list of connect_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.c:235: warning: The following parameter of connect_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel) is not documented: - parameter 'tunnel' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:90: warning: argument 'in' of command @param is not found in the argument list of disconnect_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:90: warning: argument 'out' of command @param is not found in the argument list of disconnect_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.c:259: warning: The following parameter of disconnect_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel) is not documented: - parameter 'tunnel' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:110: warning: argument 'in' of command @param is not found in the argument list of send_tunnel_envelope(struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MQ_Envelope *env, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:110: warning: argument 'out' of command @param is not found in the argument list of send_tunnel_envelope(struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MQ_Envelope *env, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:110: warning: argument 'in' of command @param is not found in the argument list of send_tunnel_envelope(struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MQ_Envelope *env, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:110: warning: argument 'out' of command @param is not found in the argument list of send_tunnel_envelope(struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MQ_Envelope *env, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.c:297: warning: The following parameters of send_tunnel_envelope(struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MQ_Envelope *env, const struct GNUNET_HashCode *hash) are not documented: - parameter 'tunnel' - parameter 'env' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:121: warning: argument 'in' of command @param is not found in the argument list of send_tunnel_message(struct GNUNET_MESSENGER_SrvTunnel *tunnel, void *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:121: warning: argument 'out' of command @param is not found in the argument list of send_tunnel_message(struct GNUNET_MESSENGER_SrvTunnel *tunnel, void *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:121: warning: argument 'in' of command @param is not found in the argument list of send_tunnel_message(struct GNUNET_MESSENGER_SrvTunnel *tunnel, void *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:121: warning: argument 'out' of command @param is not found in the argument list of send_tunnel_message(struct GNUNET_MESSENGER_SrvTunnel *tunnel, void *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:121: warning: argument 'in' of command @param is not found in the argument list of send_tunnel_message(struct GNUNET_MESSENGER_SrvTunnel *tunnel, void *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:121: warning: argument 'out' of command @param is not found in the argument list of send_tunnel_message(struct GNUNET_MESSENGER_SrvTunnel *tunnel, void *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.c:316: warning: The following parameters of send_tunnel_message(struct GNUNET_MESSENGER_SrvTunnel *tunnel, void *handle, struct GNUNET_MESSENGER_Message *message) are not documented: - parameter 'tunnel' - parameter 'handle' - parameter 'message' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:138: warning: argument 'in' of command @param is not found in the argument list of forward_tunnel_message(struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:138: warning: argument 'out' of command @param is not found in the argument list of forward_tunnel_message(struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.c:344: warning: The following parameter of forward_tunnel_message(struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) is not documented: - parameter 'tunnel' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:182: warning: argument 'in' of command @param is not found in the argument list of update_tunnel_messenger_version(struct GNUNET_MESSENGER_SrvTunnel *tunnel, uint32_t version) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:182: warning: argument 'out' of command @param is not found in the argument list of update_tunnel_messenger_version(struct GNUNET_MESSENGER_SrvTunnel *tunnel, uint32_t version) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.c:390: warning: The following parameter of update_tunnel_messenger_version(struct GNUNET_MESSENGER_SrvTunnel *tunnel, uint32_t version) is not documented: - parameter 'tunnel' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:52: warning: argument 'in' of command @param is not found in the argument list of create_tunnel(struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_PeerIdentity *door) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:52: warning: argument 'out' of command @param is not found in the argument list of create_tunnel(struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_PeerIdentity *door) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:58: warning: The following parameter of create_tunnel(struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_PeerIdentity *door) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:63: warning: argument 'in' of command @param is not found in the argument list of destroy_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:63: warning: argument 'out' of command @param is not found in the argument list of destroy_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:67: warning: The following parameter of destroy_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel) is not documented: - parameter 'tunnel' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:71: warning: argument 'in' of command @param is not found in the argument list of bind_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_CADET_Channel *channel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:71: warning: argument 'out' of command @param is not found in the argument list of bind_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_CADET_Channel *channel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:71: warning: argument 'in' of command @param is not found in the argument list of bind_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_CADET_Channel *channel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:71: warning: argument 'out' of command @param is not found in the argument list of bind_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_CADET_Channel *channel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:77: warning: The following parameters of bind_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_CADET_Channel *channel) are not documented: - parameter 'tunnel' - parameter 'channel' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:81: warning: argument 'in' of command @param is not found in the argument list of connect_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:81: warning: argument 'out' of command @param is not found in the argument list of connect_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:88: warning: The following parameter of connect_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel) is not documented: - parameter 'tunnel' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:90: warning: argument 'in' of command @param is not found in the argument list of disconnect_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:90: warning: argument 'out' of command @param is not found in the argument list of disconnect_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:97: warning: The following parameter of disconnect_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel) is not documented: - parameter 'tunnel' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:110: warning: argument 'in' of command @param is not found in the argument list of send_tunnel_envelope(struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MQ_Envelope *env, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:110: warning: argument 'out' of command @param is not found in the argument list of send_tunnel_envelope(struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MQ_Envelope *env, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:110: warning: argument 'in' of command @param is not found in the argument list of send_tunnel_envelope(struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MQ_Envelope *env, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:110: warning: argument 'out' of command @param is not found in the argument list of send_tunnel_envelope(struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MQ_Envelope *env, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:117: warning: The following parameters of send_tunnel_envelope(struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MQ_Envelope *env, const struct GNUNET_HashCode *hash) are not documented: - parameter 'tunnel' - parameter 'env' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:121: warning: argument 'in' of command @param is not found in the argument list of send_tunnel_message(struct GNUNET_MESSENGER_SrvTunnel *tunnel, void *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:121: warning: argument 'out' of command @param is not found in the argument list of send_tunnel_message(struct GNUNET_MESSENGER_SrvTunnel *tunnel, void *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:121: warning: argument 'in' of command @param is not found in the argument list of send_tunnel_message(struct GNUNET_MESSENGER_SrvTunnel *tunnel, void *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:121: warning: argument 'out' of command @param is not found in the argument list of send_tunnel_message(struct GNUNET_MESSENGER_SrvTunnel *tunnel, void *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:121: warning: argument 'in' of command @param is not found in the argument list of send_tunnel_message(struct GNUNET_MESSENGER_SrvTunnel *tunnel, void *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:121: warning: argument 'out' of command @param is not found in the argument list of send_tunnel_message(struct GNUNET_MESSENGER_SrvTunnel *tunnel, void *handle, struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:132: warning: The following parameters of send_tunnel_message(struct GNUNET_MESSENGER_SrvTunnel *tunnel, void *handle, struct GNUNET_MESSENGER_Message *message) are not documented: - parameter 'tunnel' - parameter 'handle' - parameter 'message' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:138: warning: argument 'in' of command @param is not found in the argument list of forward_tunnel_message(struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:138: warning: argument 'out' of command @param is not found in the argument list of forward_tunnel_message(struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:144: warning: The following parameter of forward_tunnel_message(struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) is not documented: - parameter 'tunnel' -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:182: warning: argument 'in' of command @param is not found in the argument list of update_tunnel_messenger_version(struct GNUNET_MESSENGER_SrvTunnel *tunnel, uint32_t version) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:182: warning: argument 'out' of command @param is not found in the argument list of update_tunnel_messenger_version(struct GNUNET_MESSENGER_SrvTunnel *tunnel, uint32_t version) -/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_tunnel.h:191: warning: The following parameter of update_tunnel_messenger_version(struct GNUNET_MESSENGER_SrvTunnel *tunnel, uint32_t version) is not documented: - parameter 'tunnel' -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:609: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MESSENGER_connect(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *name, GNUNET_MESSENGER_IdentityCallback identity_callback, void *identity_cls, GNUNET_MESSENGER_MessageCallback msg_callback, void *msg_cls) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:609: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MESSENGER_connect(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *name, GNUNET_MESSENGER_IdentityCallback identity_callback, void *identity_cls, GNUNET_MESSENGER_MessageCallback msg_callback, void *msg_cls) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:609: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MESSENGER_connect(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *name, GNUNET_MESSENGER_IdentityCallback identity_callback, void *identity_cls, GNUNET_MESSENGER_MessageCallback msg_callback, void *msg_cls) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:609: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MESSENGER_connect(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *name, GNUNET_MESSENGER_IdentityCallback identity_callback, void *identity_cls, GNUNET_MESSENGER_MessageCallback msg_callback, void *msg_cls) -/home/william/Git/gnunet/src/messenger/messenger_api.c:430: warning: The following parameters of GNUNET_MESSENGER_connect(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *name, GNUNET_MESSENGER_IdentityCallback identity_callback, void *identity_cls, GNUNET_MESSENGER_MessageCallback msg_callback, void *msg_cls) are not documented: - parameter 'identity_cls' - parameter 'msg_cls' -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:629: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MESSENGER_update(struct GNUNET_MESSENGER_Handle *handle) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:629: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MESSENGER_update(struct GNUNET_MESSENGER_Handle *handle) -/home/william/Git/gnunet/src/messenger/messenger_api.c:468: warning: The following parameter of GNUNET_MESSENGER_update(struct GNUNET_MESSENGER_Handle *handle) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:645: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MESSENGER_disconnect(struct GNUNET_MESSENGER_Handle *handle) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:645: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MESSENGER_disconnect(struct GNUNET_MESSENGER_Handle *handle) -/home/william/Git/gnunet/src/messenger/messenger_api.c:482: warning: The following parameter of GNUNET_MESSENGER_disconnect(struct GNUNET_MESSENGER_Handle *handle) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:660: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MESSENGER_set_name(struct GNUNET_MESSENGER_Handle *handle, const char *name) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:660: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MESSENGER_set_name(struct GNUNET_MESSENGER_Handle *handle, const char *name) -/home/william/Git/gnunet/src/messenger/messenger_api.c:506: warning: The following parameter of GNUNET_MESSENGER_set_name(struct GNUNET_MESSENGER_Handle *handle, const char *name) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:682: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MESSENGER_open_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:682: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MESSENGER_open_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/messenger_api.c:549: warning: The following parameter of GNUNET_MESSENGER_open_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:704: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MESSENGER_enter_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:704: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MESSENGER_enter_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/messenger_api.c:574: warning: The following parameter of GNUNET_MESSENGER_enter_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:725: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MESSENGER_close_room(struct GNUNET_MESSENGER_Room *room) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:725: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MESSENGER_close_room(struct GNUNET_MESSENGER_Room *room) -/home/william/Git/gnunet/src/messenger/messenger_api.c:600: warning: The following parameter of GNUNET_MESSENGER_close_room(struct GNUNET_MESSENGER_Room *room) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:794: warning: found tag without matching -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:794: warning: found tag without matching -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:794: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MESSENGER_send_message(struct GNUNET_MESSENGER_Room *room, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_MESSENGER_Contact *contact) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:794: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MESSENGER_send_message(struct GNUNET_MESSENGER_Room *room, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_MESSENGER_Contact *contact) -/home/william/Git/gnunet/src/messenger/messenger_api.c:694: warning: The following parameter of GNUNET_MESSENGER_send_message(struct GNUNET_MESSENGER_Room *room, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_MESSENGER_Contact *contact) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:52: warning: argument 'in' of command @param is not found in the argument list of destroy_contact(struct GNUNET_MESSENGER_Contact *contact) -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:52: warning: argument 'out' of command @param is not found in the argument list of destroy_contact(struct GNUNET_MESSENGER_Contact *contact) -/home/william/Git/gnunet/src/messenger/messenger_api_contact.c:44: warning: The following parameter of destroy_contact(struct GNUNET_MESSENGER_Contact *contact) is not documented: - parameter 'contact' -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:69: warning: argument 'in' of command @param is not found in the argument list of set_contact_name(struct GNUNET_MESSENGER_Contact *contact, const char *name) -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:69: warning: argument 'out' of command @param is not found in the argument list of set_contact_name(struct GNUNET_MESSENGER_Contact *contact, const char *name) -/home/william/Git/gnunet/src/messenger/messenger_api_contact.c:63: warning: The following parameter of set_contact_name(struct GNUNET_MESSENGER_Contact *contact, const char *name) is not documented: - parameter 'contact' -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:88: warning: argument 'in' of command @param is not found in the argument list of increase_contact_rc(struct GNUNET_MESSENGER_Contact *contact) -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:88: warning: argument 'out' of command @param is not found in the argument list of increase_contact_rc(struct GNUNET_MESSENGER_Contact *contact) -/home/william/Git/gnunet/src/messenger/messenger_api_contact.c:83: warning: The following parameter of increase_contact_rc(struct GNUNET_MESSENGER_Contact *contact) is not documented: - parameter 'contact' -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:96: warning: argument 'in' of command @param is not found in the argument list of decrease_contact_rc(struct GNUNET_MESSENGER_Contact *contact) -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:96: warning: argument 'out' of command @param is not found in the argument list of decrease_contact_rc(struct GNUNET_MESSENGER_Contact *contact) -/home/william/Git/gnunet/src/messenger/messenger_api_contact.c:91: warning: The following parameter of decrease_contact_rc(struct GNUNET_MESSENGER_Contact *contact) is not documented: - parameter 'contact' -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:106: warning: argument 'hash' of command @param is not found in the argument list of get_context_from_member(const struct GNUNET_HashCode *key, const struct GNUNET_ShortHashCode *id, struct GNUNET_HashCode *context) -/home/william/Git/gnunet/src/messenger/messenger_api_contact.c:102: warning: The following parameter of get_context_from_member(const struct GNUNET_HashCode *key, const struct GNUNET_ShortHashCode *id, struct GNUNET_HashCode *context) is not documented: - parameter 'context' -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:52: warning: argument 'in' of command @param is not found in the argument list of destroy_contact(struct GNUNET_MESSENGER_Contact *contact) -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:52: warning: argument 'out' of command @param is not found in the argument list of destroy_contact(struct GNUNET_MESSENGER_Contact *contact) -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:56: warning: The following parameter of destroy_contact(struct GNUNET_MESSENGER_Contact *contact) is not documented: - parameter 'contact' -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:69: warning: argument 'in' of command @param is not found in the argument list of set_contact_name(struct GNUNET_MESSENGER_Contact *contact, const char *name) -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:69: warning: argument 'out' of command @param is not found in the argument list of set_contact_name(struct GNUNET_MESSENGER_Contact *contact, const char *name) -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:74: warning: The following parameter of set_contact_name(struct GNUNET_MESSENGER_Contact *contact, const char *name) is not documented: - parameter 'contact' -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:88: warning: argument 'in' of command @param is not found in the argument list of increase_contact_rc(struct GNUNET_MESSENGER_Contact *contact) -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:88: warning: argument 'out' of command @param is not found in the argument list of increase_contact_rc(struct GNUNET_MESSENGER_Contact *contact) -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:92: warning: The following parameter of increase_contact_rc(struct GNUNET_MESSENGER_Contact *contact) is not documented: - parameter 'contact' -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:96: warning: argument 'in' of command @param is not found in the argument list of decrease_contact_rc(struct GNUNET_MESSENGER_Contact *contact) -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:96: warning: argument 'out' of command @param is not found in the argument list of decrease_contact_rc(struct GNUNET_MESSENGER_Contact *contact) -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:102: warning: The following parameter of decrease_contact_rc(struct GNUNET_MESSENGER_Contact *contact) is not documented: - parameter 'contact' -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:106: warning: argument 'hash' of command @param is not found in the argument list of get_context_from_member(const struct GNUNET_HashCode *key, const struct GNUNET_ShortHashCode *id, struct GNUNET_HashCode *context) -/home/william/Git/gnunet/src/messenger/messenger_api_contact.h:112: warning: The following parameter of get_context_from_member(const struct GNUNET_HashCode *key, const struct GNUNET_ShortHashCode *id, struct GNUNET_HashCode *context) is not documented: - parameter 'context' -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:52: warning: argument 'in' of command @param is not found in the argument list of clear_contact_store(struct GNUNET_MESSENGER_ContactStore *store) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:52: warning: argument 'out' of command @param is not found in the argument list of clear_contact_store(struct GNUNET_MESSENGER_ContactStore *store) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.c:51: warning: The following parameter of clear_contact_store(struct GNUNET_MESSENGER_ContactStore *store) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:58: warning: argument 'in' of command @param is not found in the argument list of get_store_contact_raw(struct GNUNET_MESSENGER_ContactStore *store, const struct GNUNET_HashCode *context, const struct GNUNET_HashCode *key_hash) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:58: warning: argument 'out' of command @param is not found in the argument list of get_store_contact_raw(struct GNUNET_MESSENGER_ContactStore *store, const struct GNUNET_HashCode *context, const struct GNUNET_HashCode *key_hash) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.c:82: warning: The following parameter of get_store_contact_raw(struct GNUNET_MESSENGER_ContactStore *store, const struct GNUNET_HashCode *context, const struct GNUNET_HashCode *key_hash) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:75: warning: argument 'in' of command @param is not found in the argument list of get_store_contact(struct GNUNET_MESSENGER_ContactStore *store, const struct GNUNET_HashCode *context, const struct GNUNET_IDENTITY_PublicKey *pubkey) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:75: warning: argument 'out' of command @param is not found in the argument list of get_store_contact(struct GNUNET_MESSENGER_ContactStore *store, const struct GNUNET_HashCode *context, const struct GNUNET_IDENTITY_PublicKey *pubkey) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.c:99: warning: The following parameter of get_store_contact(struct GNUNET_MESSENGER_ContactStore *store, const struct GNUNET_HashCode *context, const struct GNUNET_IDENTITY_PublicKey *pubkey) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:97: warning: argument 'in' of command @param is not found in the argument list of update_store_contact(struct GNUNET_MESSENGER_ContactStore *store, struct GNUNET_MESSENGER_Contact *contact, const struct GNUNET_HashCode *context, const struct GNUNET_HashCode *next_context, const struct GNUNET_IDENTITY_PublicKey *pubkey) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:97: warning: argument 'out' of command @param is not found in the argument list of update_store_contact(struct GNUNET_MESSENGER_ContactStore *store, struct GNUNET_MESSENGER_Contact *contact, const struct GNUNET_HashCode *context, const struct GNUNET_HashCode *next_context, const struct GNUNET_IDENTITY_PublicKey *pubkey) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:97: warning: argument 'in' of command @param is not found in the argument list of update_store_contact(struct GNUNET_MESSENGER_ContactStore *store, struct GNUNET_MESSENGER_Contact *contact, const struct GNUNET_HashCode *context, const struct GNUNET_HashCode *next_context, const struct GNUNET_IDENTITY_PublicKey *pubkey) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:97: warning: argument 'out' of command @param is not found in the argument list of update_store_contact(struct GNUNET_MESSENGER_ContactStore *store, struct GNUNET_MESSENGER_Contact *contact, const struct GNUNET_HashCode *context, const struct GNUNET_HashCode *next_context, const struct GNUNET_IDENTITY_PublicKey *pubkey) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.c:138: warning: The following parameters of update_store_contact(struct GNUNET_MESSENGER_ContactStore *store, struct GNUNET_MESSENGER_Contact *contact, const struct GNUNET_HashCode *context, const struct GNUNET_HashCode *next_context, const struct GNUNET_IDENTITY_PublicKey *pubkey) are not documented: - parameter 'store' - parameter 'contact' -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:116: warning: argument 'in' of command @param is not found in the argument list of remove_store_contact(struct GNUNET_MESSENGER_ContactStore *store, struct GNUNET_MESSENGER_Contact *contact, const struct GNUNET_HashCode *context) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:116: warning: argument 'out' of command @param is not found in the argument list of remove_store_contact(struct GNUNET_MESSENGER_ContactStore *store, struct GNUNET_MESSENGER_Contact *contact, const struct GNUNET_HashCode *context) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:116: warning: argument 'in' of command @param is not found in the argument list of remove_store_contact(struct GNUNET_MESSENGER_ContactStore *store, struct GNUNET_MESSENGER_Contact *contact, const struct GNUNET_HashCode *context) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:116: warning: argument 'out' of command @param is not found in the argument list of remove_store_contact(struct GNUNET_MESSENGER_ContactStore *store, struct GNUNET_MESSENGER_Contact *contact, const struct GNUNET_HashCode *context) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.c:173: warning: The following parameters of remove_store_contact(struct GNUNET_MESSENGER_ContactStore *store, struct GNUNET_MESSENGER_Contact *contact, const struct GNUNET_HashCode *context) are not documented: - parameter 'store' - parameter 'contact' -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:52: warning: argument 'in' of command @param is not found in the argument list of clear_contact_store(struct GNUNET_MESSENGER_ContactStore *store) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:52: warning: argument 'out' of command @param is not found in the argument list of clear_contact_store(struct GNUNET_MESSENGER_ContactStore *store) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:56: warning: The following parameter of clear_contact_store(struct GNUNET_MESSENGER_ContactStore *store) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:58: warning: argument 'in' of command @param is not found in the argument list of get_store_contact_raw(struct GNUNET_MESSENGER_ContactStore *store, const struct GNUNET_HashCode *context, const struct GNUNET_HashCode *key_hash) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:58: warning: argument 'out' of command @param is not found in the argument list of get_store_contact_raw(struct GNUNET_MESSENGER_ContactStore *store, const struct GNUNET_HashCode *context, const struct GNUNET_HashCode *key_hash) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:71: warning: The following parameter of get_store_contact_raw(struct GNUNET_MESSENGER_ContactStore *store, const struct GNUNET_HashCode *context, const struct GNUNET_HashCode *key_hash) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:75: warning: argument 'in' of command @param is not found in the argument list of get_store_contact(struct GNUNET_MESSENGER_ContactStore *store, const struct GNUNET_HashCode *context, const struct GNUNET_IDENTITY_PublicKey *pubkey) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:75: warning: argument 'out' of command @param is not found in the argument list of get_store_contact(struct GNUNET_MESSENGER_ContactStore *store, const struct GNUNET_HashCode *context, const struct GNUNET_IDENTITY_PublicKey *pubkey) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:91: warning: The following parameter of get_store_contact(struct GNUNET_MESSENGER_ContactStore *store, const struct GNUNET_HashCode *context, const struct GNUNET_IDENTITY_PublicKey *pubkey) is not documented: - parameter 'store' -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:97: warning: argument 'in' of command @param is not found in the argument list of update_store_contact(struct GNUNET_MESSENGER_ContactStore *store, struct GNUNET_MESSENGER_Contact *contact, const struct GNUNET_HashCode *context, const struct GNUNET_HashCode *next_context, const struct GNUNET_IDENTITY_PublicKey *pubkey) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:97: warning: argument 'out' of command @param is not found in the argument list of update_store_contact(struct GNUNET_MESSENGER_ContactStore *store, struct GNUNET_MESSENGER_Contact *contact, const struct GNUNET_HashCode *context, const struct GNUNET_HashCode *next_context, const struct GNUNET_IDENTITY_PublicKey *pubkey) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:97: warning: argument 'in' of command @param is not found in the argument list of update_store_contact(struct GNUNET_MESSENGER_ContactStore *store, struct GNUNET_MESSENGER_Contact *contact, const struct GNUNET_HashCode *context, const struct GNUNET_HashCode *next_context, const struct GNUNET_IDENTITY_PublicKey *pubkey) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:97: warning: argument 'out' of command @param is not found in the argument list of update_store_contact(struct GNUNET_MESSENGER_ContactStore *store, struct GNUNET_MESSENGER_Contact *contact, const struct GNUNET_HashCode *context, const struct GNUNET_HashCode *next_context, const struct GNUNET_IDENTITY_PublicKey *pubkey) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:108: warning: The following parameters of update_store_contact(struct GNUNET_MESSENGER_ContactStore *store, struct GNUNET_MESSENGER_Contact *contact, const struct GNUNET_HashCode *context, const struct GNUNET_HashCode *next_context, const struct GNUNET_IDENTITY_PublicKey *pubkey) are not documented: - parameter 'store' - parameter 'contact' -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:116: warning: argument 'in' of command @param is not found in the argument list of remove_store_contact(struct GNUNET_MESSENGER_ContactStore *store, struct GNUNET_MESSENGER_Contact *contact, const struct GNUNET_HashCode *context) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:116: warning: argument 'out' of command @param is not found in the argument list of remove_store_contact(struct GNUNET_MESSENGER_ContactStore *store, struct GNUNET_MESSENGER_Contact *contact, const struct GNUNET_HashCode *context) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:116: warning: argument 'in' of command @param is not found in the argument list of remove_store_contact(struct GNUNET_MESSENGER_ContactStore *store, struct GNUNET_MESSENGER_Contact *contact, const struct GNUNET_HashCode *context) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:116: warning: argument 'out' of command @param is not found in the argument list of remove_store_contact(struct GNUNET_MESSENGER_ContactStore *store, struct GNUNET_MESSENGER_Contact *contact, const struct GNUNET_HashCode *context) -/home/william/Git/gnunet/src/messenger/messenger_api_contact_store.h:123: warning: The following parameters of remove_store_contact(struct GNUNET_MESSENGER_ContactStore *store, struct GNUNET_MESSENGER_Contact *contact, const struct GNUNET_HashCode *context) are not documented: - parameter 'store' - parameter 'contact' -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:66: warning: argument 'in' of command @param is not found in the argument list of create_handle(const struct GNUNET_CONFIGURATION_Handle *cfg, GNUNET_MESSENGER_IdentityCallback identity_callback, void *identity_cls, GNUNET_MESSENGER_MessageCallback msg_callback, void *msg_cls) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:66: warning: argument 'out' of command @param is not found in the argument list of create_handle(const struct GNUNET_CONFIGURATION_Handle *cfg, GNUNET_MESSENGER_IdentityCallback identity_callback, void *identity_cls, GNUNET_MESSENGER_MessageCallback msg_callback, void *msg_cls) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.c:31: warning: The following parameters of create_handle(const struct GNUNET_CONFIGURATION_Handle *cfg, GNUNET_MESSENGER_IdentityCallback identity_callback, void *identity_cls, GNUNET_MESSENGER_MessageCallback msg_callback, void *msg_cls) are not documented: - parameter 'identity_callback' - parameter 'identity_cls' - parameter 'msg_cls' -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:82: warning: argument 'in' of command @param is not found in the argument list of destroy_handle(struct GNUNET_MESSENGER_Handle *handle) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:82: warning: argument 'out' of command @param is not found in the argument list of destroy_handle(struct GNUNET_MESSENGER_Handle *handle) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.c:76: warning: The following parameter of destroy_handle(struct GNUNET_MESSENGER_Handle *handle) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:90: warning: argument 'in' of command @param is not found in the argument list of set_handle_name(struct GNUNET_MESSENGER_Handle *handle, const char *name) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:90: warning: argument 'out' of command @param is not found in the argument list of set_handle_name(struct GNUNET_MESSENGER_Handle *handle, const char *name) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.c:105: warning: The following parameter of set_handle_name(struct GNUNET_MESSENGER_Handle *handle, const char *name) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:109: warning: argument 'in' of command @param is not found in the argument list of set_handle_key(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_IDENTITY_PublicKey *pubkey) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:109: warning: argument 'out' of command @param is not found in the argument list of set_handle_key(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_IDENTITY_PublicKey *pubkey) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.c:125: warning: The following parameter of set_handle_key(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_IDENTITY_PublicKey *pubkey) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:128: warning: argument 'in' of command @param is not found in the argument list of get_handle_contact_store(struct GNUNET_MESSENGER_Handle *handle) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:128: warning: argument 'out' of command @param is not found in the argument list of get_handle_contact_store(struct GNUNET_MESSENGER_Handle *handle) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.c:148: warning: The following parameter of get_handle_contact_store(struct GNUNET_MESSENGER_Handle *handle) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:137: warning: argument 'in' of command @param is not found in the argument list of get_handle_contact(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:137: warning: argument 'out' of command @param is not found in the argument list of get_handle_contact(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.c:156: warning: The following parameter of get_handle_contact(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:149: warning: argument 'in' of command @param is not found in the argument list of open_handle_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:149: warning: argument 'out' of command @param is not found in the argument list of open_handle_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.c:173: warning: The following parameter of open_handle_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:159: warning: argument 'in' of command @param is not found in the argument list of entry_handle_room_at(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:159: warning: argument 'out' of command @param is not found in the argument list of entry_handle_room_at(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.c:185: warning: The following parameter of entry_handle_room_at(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:172: warning: argument 'in' of command @param is not found in the argument list of close_handle_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:172: warning: argument 'out' of command @param is not found in the argument list of close_handle_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.c:198: warning: The following parameter of close_handle_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:66: warning: argument 'in' of command @param is not found in the argument list of create_handle(const struct GNUNET_CONFIGURATION_Handle *cfg, GNUNET_MESSENGER_IdentityCallback identity_callback, void *identity_cls, GNUNET_MESSENGER_MessageCallback msg_callback, void *msg_cls) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:66: warning: argument 'out' of command @param is not found in the argument list of create_handle(const struct GNUNET_CONFIGURATION_Handle *cfg, GNUNET_MESSENGER_IdentityCallback identity_callback, void *identity_cls, GNUNET_MESSENGER_MessageCallback msg_callback, void *msg_cls) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:74: warning: The following parameters of create_handle(const struct GNUNET_CONFIGURATION_Handle *cfg, GNUNET_MESSENGER_IdentityCallback identity_callback, void *identity_cls, GNUNET_MESSENGER_MessageCallback msg_callback, void *msg_cls) are not documented: - parameter 'identity_callback' - parameter 'identity_cls' - parameter 'msg_cls' -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:82: warning: argument 'in' of command @param is not found in the argument list of destroy_handle(struct GNUNET_MESSENGER_Handle *handle) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:82: warning: argument 'out' of command @param is not found in the argument list of destroy_handle(struct GNUNET_MESSENGER_Handle *handle) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:86: warning: The following parameter of destroy_handle(struct GNUNET_MESSENGER_Handle *handle) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:90: warning: argument 'in' of command @param is not found in the argument list of set_handle_name(struct GNUNET_MESSENGER_Handle *handle, const char *name) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:90: warning: argument 'out' of command @param is not found in the argument list of set_handle_name(struct GNUNET_MESSENGER_Handle *handle, const char *name) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:95: warning: The following parameter of set_handle_name(struct GNUNET_MESSENGER_Handle *handle, const char *name) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:109: warning: argument 'in' of command @param is not found in the argument list of set_handle_key(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_IDENTITY_PublicKey *pubkey) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:109: warning: argument 'out' of command @param is not found in the argument list of set_handle_key(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_IDENTITY_PublicKey *pubkey) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:114: warning: The following parameter of set_handle_key(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_IDENTITY_PublicKey *pubkey) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:128: warning: argument 'in' of command @param is not found in the argument list of get_handle_contact_store(struct GNUNET_MESSENGER_Handle *handle) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:128: warning: argument 'out' of command @param is not found in the argument list of get_handle_contact_store(struct GNUNET_MESSENGER_Handle *handle) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:133: warning: The following parameter of get_handle_contact_store(struct GNUNET_MESSENGER_Handle *handle) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:137: warning: argument 'in' of command @param is not found in the argument list of get_handle_contact(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:137: warning: argument 'out' of command @param is not found in the argument list of get_handle_contact(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:144: warning: The following parameter of get_handle_contact(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:149: warning: argument 'in' of command @param is not found in the argument list of open_handle_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:149: warning: argument 'out' of command @param is not found in the argument list of open_handle_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:154: warning: The following parameter of open_handle_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:159: warning: argument 'in' of command @param is not found in the argument list of entry_handle_room_at(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:159: warning: argument 'out' of command @param is not found in the argument list of entry_handle_room_at(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:166: warning: The following parameter of entry_handle_room_at(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:172: warning: argument 'in' of command @param is not found in the argument list of close_handle_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:172: warning: argument 'out' of command @param is not found in the argument list of close_handle_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/messenger_api_handle.h:177: warning: The following parameter of close_handle_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:57: warning: argument 'in' of command @param is not found in the argument list of clear_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:57: warning: argument 'out' of command @param is not found in the argument list of clear_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.c:38: warning: The following parameter of clear_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels) is not documented: - parameter 'tunnels' -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:65: warning: argument 'in' of command @param is not found in the argument list of add_to_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const struct GNUNET_PeerIdentity *peer) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:65: warning: argument 'out' of command @param is not found in the argument list of add_to_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const struct GNUNET_PeerIdentity *peer) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.c:64: warning: The following parameter of add_to_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const struct GNUNET_PeerIdentity *peer) is not documented: - parameter 'tunnels' -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:75: warning: argument 'in' of command @param is not found in the argument list of find_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const struct GNUNET_PeerIdentity *peer, size_t *index) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:75: warning: argument 'out' of command @param is not found in the argument list of find_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const struct GNUNET_PeerIdentity *peer, size_t *index) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.c:78: warning: The following parameter of find_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const struct GNUNET_PeerIdentity *peer, size_t *index) is not documented: - parameter 'tunnels' -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:95: warning: argument 'in' of command @param is not found in the argument list of contains_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const struct GNUNET_PeerIdentity *peer) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:95: warning: argument 'out' of command @param is not found in the argument list of contains_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const struct GNUNET_PeerIdentity *peer) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.c:105: warning: The following parameter of contains_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const struct GNUNET_PeerIdentity *peer) is not documented: - parameter 'tunnels' -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:107: warning: argument 'in' of command @param is not found in the argument list of remove_from_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, struct GNUNET_MESSENGER_ListTunnel *element) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:107: warning: argument 'out' of command @param is not found in the argument list of remove_from_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, struct GNUNET_MESSENGER_ListTunnel *element) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:107: warning: argument 'in' of command @param is not found in the argument list of remove_from_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, struct GNUNET_MESSENGER_ListTunnel *element) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:107: warning: argument 'out' of command @param is not found in the argument list of remove_from_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, struct GNUNET_MESSENGER_ListTunnel *element) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.c:114: warning: The following parameters of remove_from_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, struct GNUNET_MESSENGER_ListTunnel *element) are not documented: - parameter 'tunnels' - parameter 'element' -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:119: warning: argument 'messages' of command @param is not found in the argument list of load_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const char *path) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.c:129: warning: The following parameter of load_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const char *path) is not documented: - parameter 'tunnels' -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:129: warning: argument 'messages' of command @param is not found in the argument list of save_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const char *path) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.c:164: warning: The following parameter of save_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const char *path) is not documented: - parameter 'tunnels' -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:57: warning: argument 'in' of command @param is not found in the argument list of clear_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:57: warning: argument 'out' of command @param is not found in the argument list of clear_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:61: warning: The following parameter of clear_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels) is not documented: - parameter 'tunnels' -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:65: warning: argument 'in' of command @param is not found in the argument list of add_to_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const struct GNUNET_PeerIdentity *peer) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:65: warning: argument 'out' of command @param is not found in the argument list of add_to_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const struct GNUNET_PeerIdentity *peer) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:70: warning: The following parameter of add_to_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const struct GNUNET_PeerIdentity *peer) is not documented: - parameter 'tunnels' -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:75: warning: argument 'in' of command @param is not found in the argument list of find_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const struct GNUNET_PeerIdentity *peer, size_t *index) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:75: warning: argument 'out' of command @param is not found in the argument list of find_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const struct GNUNET_PeerIdentity *peer, size_t *index) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:89: warning: The following parameter of find_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const struct GNUNET_PeerIdentity *peer, size_t *index) is not documented: - parameter 'tunnels' -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:95: warning: argument 'in' of command @param is not found in the argument list of contains_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const struct GNUNET_PeerIdentity *peer) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:95: warning: argument 'out' of command @param is not found in the argument list of contains_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const struct GNUNET_PeerIdentity *peer) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:102: warning: The following parameter of contains_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const struct GNUNET_PeerIdentity *peer) is not documented: - parameter 'tunnels' -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:107: warning: argument 'in' of command @param is not found in the argument list of remove_from_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, struct GNUNET_MESSENGER_ListTunnel *element) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:107: warning: argument 'out' of command @param is not found in the argument list of remove_from_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, struct GNUNET_MESSENGER_ListTunnel *element) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:107: warning: argument 'in' of command @param is not found in the argument list of remove_from_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, struct GNUNET_MESSENGER_ListTunnel *element) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:107: warning: argument 'out' of command @param is not found in the argument list of remove_from_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, struct GNUNET_MESSENGER_ListTunnel *element) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:114: warning: The following parameters of remove_from_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, struct GNUNET_MESSENGER_ListTunnel *element) are not documented: - parameter 'tunnels' - parameter 'element' -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:119: warning: argument 'messages' of command @param is not found in the argument list of load_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const char *path) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:124: warning: The following parameter of load_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const char *path) is not documented: - parameter 'tunnels' -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:129: warning: argument 'messages' of command @param is not found in the argument list of save_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const char *path) -/home/william/Git/gnunet/src/messenger/messenger_api_list_tunnels.h:134: warning: The following parameter of save_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const char *path) is not documented: - parameter 'tunnels' -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:66: warning: argument 'in' of command @param is not found in the argument list of cleanup_message(struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:66: warning: argument 'out' of command @param is not found in the argument list of cleanup_message(struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/messenger_api_message.c:129: warning: The following parameter of cleanup_message(struct GNUNET_MESSENGER_Message *message) is not documented: - parameter 'message' -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:74: warning: argument 'in' of command @param is not found in the argument list of destroy_message(struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:74: warning: argument 'out' of command @param is not found in the argument list of destroy_message(struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/messenger_api_message.c:137: warning: The following parameter of destroy_message(struct GNUNET_MESSENGER_Message *message) is not documented: - parameter 'message' -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:164: warning: argument 'in' of command @param is not found in the argument list of sign_message(struct GNUNET_MESSENGER_Message *message, uint16_t length, char *buffer, const struct GNUNET_HashCode *hash, const struct GNUNET_MESSENGER_Ego *ego) -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:164: warning: argument 'out' of command @param is not found in the argument list of sign_message(struct GNUNET_MESSENGER_Message *message, uint16_t length, char *buffer, const struct GNUNET_HashCode *hash, const struct GNUNET_MESSENGER_Ego *ego) -/home/william/Git/gnunet/src/messenger/messenger_api_message.c:750: warning: The following parameter of sign_message(struct GNUNET_MESSENGER_Message *message, uint16_t length, char *buffer, const struct GNUNET_HashCode *hash, const struct GNUNET_MESSENGER_Ego *ego) is not documented: - parameter 'message' -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:194: warning: argument 'in' of command @param is not found in the argument list of encrypt_message(struct GNUNET_MESSENGER_Message *message, const struct GNUNET_IDENTITY_PublicKey *key) -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:194: warning: argument 'out' of command @param is not found in the argument list of encrypt_message(struct GNUNET_MESSENGER_Message *message, const struct GNUNET_IDENTITY_PublicKey *key) -/home/william/Git/gnunet/src/messenger/messenger_api_message.c:792: warning: The following parameter of encrypt_message(struct GNUNET_MESSENGER_Message *message, const struct GNUNET_IDENTITY_PublicKey *key) is not documented: - parameter 'message' -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:207: warning: argument 'in' of command @param is not found in the argument list of decrypt_message(struct GNUNET_MESSENGER_Message *message, const struct GNUNET_IDENTITY_PrivateKey *key) -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:207: warning: argument 'out' of command @param is not found in the argument list of decrypt_message(struct GNUNET_MESSENGER_Message *message, const struct GNUNET_IDENTITY_PrivateKey *key) -/home/william/Git/gnunet/src/messenger/messenger_api_message.c:827: warning: The following parameter of decrypt_message(struct GNUNET_MESSENGER_Message *message, const struct GNUNET_IDENTITY_PrivateKey *key) is not documented: - parameter 'message' -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:66: warning: argument 'in' of command @param is not found in the argument list of cleanup_message(struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:66: warning: argument 'out' of command @param is not found in the argument list of cleanup_message(struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:70: warning: The following parameter of cleanup_message(struct GNUNET_MESSENGER_Message *message) is not documented: - parameter 'message' -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:74: warning: argument 'in' of command @param is not found in the argument list of destroy_message(struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:74: warning: argument 'out' of command @param is not found in the argument list of destroy_message(struct GNUNET_MESSENGER_Message *message) -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:78: warning: The following parameter of destroy_message(struct GNUNET_MESSENGER_Message *message) is not documented: - parameter 'message' -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:164: warning: argument 'in' of command @param is not found in the argument list of sign_message(struct GNUNET_MESSENGER_Message *message, uint16_t length, char *buffer, const struct GNUNET_HashCode *hash, const struct GNUNET_MESSENGER_Ego *ego) -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:164: warning: argument 'out' of command @param is not found in the argument list of sign_message(struct GNUNET_MESSENGER_Message *message, uint16_t length, char *buffer, const struct GNUNET_HashCode *hash, const struct GNUNET_MESSENGER_Ego *ego) -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:173: warning: The following parameter of sign_message(struct GNUNET_MESSENGER_Message *message, uint16_t length, char *buffer, const struct GNUNET_HashCode *hash, const struct GNUNET_MESSENGER_Ego *ego) is not documented: - parameter 'message' -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:194: warning: argument 'in' of command @param is not found in the argument list of encrypt_message(struct GNUNET_MESSENGER_Message *message, const struct GNUNET_IDENTITY_PublicKey *key) -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:194: warning: argument 'out' of command @param is not found in the argument list of encrypt_message(struct GNUNET_MESSENGER_Message *message, const struct GNUNET_IDENTITY_PublicKey *key) -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:204: warning: The following parameter of encrypt_message(struct GNUNET_MESSENGER_Message *message, const struct GNUNET_IDENTITY_PublicKey *key) is not documented: - parameter 'message' -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:207: warning: argument 'in' of command @param is not found in the argument list of decrypt_message(struct GNUNET_MESSENGER_Message *message, const struct GNUNET_IDENTITY_PrivateKey *key) -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:207: warning: argument 'out' of command @param is not found in the argument list of decrypt_message(struct GNUNET_MESSENGER_Message *message, const struct GNUNET_IDENTITY_PrivateKey *key) -/home/william/Git/gnunet/src/messenger/messenger_api_message.h:217: warning: The following parameter of decrypt_message(struct GNUNET_MESSENGER_Message *message, const struct GNUNET_IDENTITY_PrivateKey *key) is not documented: - parameter 'message' -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:61: warning: argument 'in' of command @param is not found in the argument list of create_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:61: warning: argument 'out' of command @param is not found in the argument list of create_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/messenger_api_room.c:31: warning: The following parameter of create_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:72: warning: argument 'in' of command @param is not found in the argument list of destroy_room(struct GNUNET_MESSENGER_Room *room) -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:72: warning: argument 'out' of command @param is not found in the argument list of destroy_room(struct GNUNET_MESSENGER_Room *room) -/home/william/Git/gnunet/src/messenger/messenger_api_room.c:66: warning: The following parameter of destroy_room(struct GNUNET_MESSENGER_Room *room) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:102: warning: argument 'in' of command @param is not found in the argument list of handle_room_message(struct GNUNET_MESSENGER_Room *room, struct GNUNET_MESSENGER_Contact *sender, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:102: warning: argument 'out' of command @param is not found in the argument list of handle_room_message(struct GNUNET_MESSENGER_Room *room, struct GNUNET_MESSENGER_Contact *sender, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:102: warning: argument 'in' of command @param is not found in the argument list of handle_room_message(struct GNUNET_MESSENGER_Room *room, struct GNUNET_MESSENGER_Contact *sender, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:102: warning: argument 'out' of command @param is not found in the argument list of handle_room_message(struct GNUNET_MESSENGER_Room *room, struct GNUNET_MESSENGER_Contact *sender, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/messenger_api_room.c:239: warning: The following parameters of handle_room_message(struct GNUNET_MESSENGER_Room *room, struct GNUNET_MESSENGER_Contact *sender, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'sender' -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:123: warning: argument 'in' of command @param is not found in the argument list of iterate_room_members(struct GNUNET_MESSENGER_Room *room, GNUNET_MESSENGER_MemberCallback callback, void *cls) -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:123: warning: argument 'out' of command @param is not found in the argument list of iterate_room_members(struct GNUNET_MESSENGER_Room *room, GNUNET_MESSENGER_MemberCallback callback, void *cls) -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:123: warning: argument 'in' of command @param is not found in the argument list of iterate_room_members(struct GNUNET_MESSENGER_Room *room, GNUNET_MESSENGER_MemberCallback callback, void *cls) -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:123: warning: argument 'out' of command @param is not found in the argument list of iterate_room_members(struct GNUNET_MESSENGER_Room *room, GNUNET_MESSENGER_MemberCallback callback, void *cls) -/home/william/Git/gnunet/src/messenger/messenger_api_room.c:311: warning: The following parameters of iterate_room_members(struct GNUNET_MESSENGER_Room *room, GNUNET_MESSENGER_MemberCallback callback, void *cls) are not documented: - parameter 'room' - parameter 'cls' -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:61: warning: argument 'in' of command @param is not found in the argument list of create_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:61: warning: argument 'out' of command @param is not found in the argument list of create_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:67: warning: The following parameter of create_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:72: warning: argument 'in' of command @param is not found in the argument list of destroy_room(struct GNUNET_MESSENGER_Room *room) -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:72: warning: argument 'out' of command @param is not found in the argument list of destroy_room(struct GNUNET_MESSENGER_Room *room) -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:76: warning: The following parameter of destroy_room(struct GNUNET_MESSENGER_Room *room) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:102: warning: argument 'in' of command @param is not found in the argument list of handle_room_message(struct GNUNET_MESSENGER_Room *room, struct GNUNET_MESSENGER_Contact *sender, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:102: warning: argument 'out' of command @param is not found in the argument list of handle_room_message(struct GNUNET_MESSENGER_Room *room, struct GNUNET_MESSENGER_Contact *sender, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:102: warning: argument 'in' of command @param is not found in the argument list of handle_room_message(struct GNUNET_MESSENGER_Room *room, struct GNUNET_MESSENGER_Contact *sender, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:102: warning: argument 'out' of command @param is not found in the argument list of handle_room_message(struct GNUNET_MESSENGER_Room *room, struct GNUNET_MESSENGER_Contact *sender, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:116: warning: The following parameters of handle_room_message(struct GNUNET_MESSENGER_Room *room, struct GNUNET_MESSENGER_Contact *sender, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash) are not documented: - parameter 'room' - parameter 'sender' -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:123: warning: argument 'in' of command @param is not found in the argument list of iterate_room_members(struct GNUNET_MESSENGER_Room *room, GNUNET_MESSENGER_MemberCallback callback, void *cls) -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:123: warning: argument 'out' of command @param is not found in the argument list of iterate_room_members(struct GNUNET_MESSENGER_Room *room, GNUNET_MESSENGER_MemberCallback callback, void *cls) -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:123: warning: argument 'in' of command @param is not found in the argument list of iterate_room_members(struct GNUNET_MESSENGER_Room *room, GNUNET_MESSENGER_MemberCallback callback, void *cls) -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:123: warning: argument 'out' of command @param is not found in the argument list of iterate_room_members(struct GNUNET_MESSENGER_Room *room, GNUNET_MESSENGER_MemberCallback callback, void *cls) -/home/william/Git/gnunet/src/messenger/messenger_api_room.h:131: warning: The following parameters of iterate_room_members(struct GNUNET_MESSENGER_Room *room, GNUNET_MESSENGER_MemberCallback callback, void *cls) are not documented: - parameter 'room' - parameter 'cls' -/home/william/Git/gnunet/src/messenger/messenger_api_util.h:39: warning: argument 'in' of command @param is not found in the argument list of delayed_disconnect_channel(struct GNUNET_CADET_Channel *channel) -/home/william/Git/gnunet/src/messenger/messenger_api_util.h:39: warning: argument 'out' of command @param is not found in the argument list of delayed_disconnect_channel(struct GNUNET_CADET_Channel *channel) -/home/william/Git/gnunet/src/messenger/messenger_api_util.c:38: warning: The following parameter of delayed_disconnect_channel(struct GNUNET_CADET_Channel *channel) is not documented: - parameter 'channel' -/home/william/Git/gnunet/src/messenger/messenger_api_util.h:39: warning: argument 'in' of command @param is not found in the argument list of delayed_disconnect_channel(struct GNUNET_CADET_Channel *channel) -/home/william/Git/gnunet/src/messenger/messenger_api_util.h:39: warning: argument 'out' of command @param is not found in the argument list of delayed_disconnect_channel(struct GNUNET_CADET_Channel *channel) -/home/william/Git/gnunet/src/messenger/messenger_api_util.h:43: warning: The following parameter of delayed_disconnect_channel(struct GNUNET_CADET_Channel *channel) is not documented: - parameter 'channel' -/home/william/Git/gnunet/src/messenger/testing_messenger_barrier.h:58: warning: argument 'cls' of command @param is not found in the argument list of GNUNET_init_barrier(unsigned int requirement, GNUNET_BarrierStatusCallback cb, void *cb_cls) -/home/william/Git/gnunet/src/messenger/testing_messenger_barrier.c:41: warning: The following parameter of GNUNET_init_barrier(unsigned int requirement, GNUNET_BarrierStatusCallback cb, void *cb_cls) is not documented: - parameter 'cb_cls' -/home/william/Git/gnunet/src/messenger/testing_messenger_barrier.h:105: warning: argument 'cls' of command @param is not found in the argument list of GNUNET_wait_barrier(struct GNUNET_BarrierHandle *barrier, GNUNET_BarrierWaitStatusCallback cb, void *cb_cls) -/home/william/Git/gnunet/src/messenger/testing_messenger_barrier.c:124: warning: The following parameter of GNUNET_wait_barrier(struct GNUNET_BarrierHandle *barrier, GNUNET_BarrierWaitStatusCallback cb, void *cb_cls) is not documented: - parameter 'cb_cls' -/home/william/Git/gnunet/src/messenger/testing_messenger_barrier.h:58: warning: argument 'cls' of command @param is not found in the argument list of GNUNET_init_barrier(unsigned int requirement, GNUNET_BarrierStatusCallback cb, void *cb_cls) -/home/william/Git/gnunet/src/messenger/testing_messenger_barrier.h:69: warning: The following parameter of GNUNET_init_barrier(unsigned int requirement, GNUNET_BarrierStatusCallback cb, void *cb_cls) is not documented: - parameter 'cb_cls' -/home/william/Git/gnunet/src/messenger/testing_messenger_barrier.h:105: warning: argument 'cls' of command @param is not found in the argument list of GNUNET_wait_barrier(struct GNUNET_BarrierHandle *barrier, GNUNET_BarrierWaitStatusCallback cb, void *cb_cls) -/home/william/Git/gnunet/src/messenger/testing_messenger_barrier.h:116: warning: The following parameter of GNUNET_wait_barrier(struct GNUNET_BarrierHandle *barrier, GNUNET_BarrierWaitStatusCallback cb, void *cb_cls) is not documented: - parameter 'cb_cls' -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:470: warning: explicit link request to 'GNUNET_MY_exect_prepared()' could not be resolved -/home/william/Git/gnunet/src/my/my_query_helper.c:49: warning: argument 'pq' of command @param is not found in the argument list of my_conv_fixed_size(void *cls, const struct GNUNET_MY_QueryParam *qp, MYSQL_BIND *qbind) -/home/william/Git/gnunet/src/my/my_query_helper.c:56: warning: The following parameter of my_conv_fixed_size(void *cls, const struct GNUNET_MY_QueryParam *qp, MYSQL_BIND *qbind) is not documented: - parameter 'qp' -/home/william/Git/gnunet/src/my/my_query_helper.c:96: warning: argument 'pq' of command @param is not found in the argument list of my_conv_string(void *cls, const struct GNUNET_MY_QueryParam *qp, MYSQL_BIND *qbind) -/home/william/Git/gnunet/src/my/my_query_helper.c:103: warning: The following parameter of my_conv_string(void *cls, const struct GNUNET_MY_QueryParam *qp, MYSQL_BIND *qbind) is not documented: - parameter 'qp' -/home/william/Git/gnunet/src/my/my_query_helper.c:137: warning: argument 'pq' of command @param is not found in the argument list of my_conv_uint16(void *cls, const struct GNUNET_MY_QueryParam *qp, MYSQL_BIND *qbind) -/home/william/Git/gnunet/src/my/my_query_helper.c:146: warning: The following parameter of my_conv_uint16(void *cls, const struct GNUNET_MY_QueryParam *qp, MYSQL_BIND *qbind) is not documented: - parameter 'qp' -/home/william/Git/gnunet/src/my/my_query_helper.c:181: warning: argument 'pq' of command @param is not found in the argument list of my_conv_uint32(void *cls, const struct GNUNET_MY_QueryParam *qp, MYSQL_BIND *qbind) -/home/william/Git/gnunet/src/my/my_query_helper.c:190: warning: The following parameter of my_conv_uint32(void *cls, const struct GNUNET_MY_QueryParam *qp, MYSQL_BIND *qbind) is not documented: - parameter 'qp' -/home/william/Git/gnunet/src/my/my_query_helper.c:225: warning: argument 'pq' of command @param is not found in the argument list of my_conv_uint64(void *cls, const struct GNUNET_MY_QueryParam *qp, MYSQL_BIND *qbind) -/home/william/Git/gnunet/src/my/my_query_helper.c:234: warning: The following parameter of my_conv_uint64(void *cls, const struct GNUNET_MY_QueryParam *qp, MYSQL_BIND *qbind) is not documented: - parameter 'qp' -/home/william/Git/gnunet/src/my/my_query_helper.c:269: warning: argument 'pq' of command @param is not found in the argument list of my_conv_rsa_public_key(void *cls, const struct GNUNET_MY_QueryParam *qp, MYSQL_BIND *qbind) -/home/william/Git/gnunet/src/my/my_query_helper.c:278: warning: The following parameter of my_conv_rsa_public_key(void *cls, const struct GNUNET_MY_QueryParam *qp, MYSQL_BIND *qbind) is not documented: - parameter 'qp' -/home/william/Git/gnunet/src/my/my_query_helper.c:321: warning: argument 'pq' of command @param is not found in the argument list of my_conv_rsa_signature(void *cls, const struct GNUNET_MY_QueryParam *qp, MYSQL_BIND *qbind) -/home/william/Git/gnunet/src/my/my_query_helper.c:330: warning: The following parameter of my_conv_rsa_signature(void *cls, const struct GNUNET_MY_QueryParam *qp, MYSQL_BIND *qbind) is not documented: - parameter 'qp' -/home/william/Git/gnunet/src/my/my_result_helper.c:31: warning: argument 'result' of command @param is not found in the argument list of pre_extract_varsize_blob(void *cls, struct GNUNET_MY_ResultSpec *rs, MYSQL_STMT *stmt, unsigned int column, MYSQL_BIND *results) -/home/william/Git/gnunet/src/my/my_result_helper.c:44: warning: The following parameter of pre_extract_varsize_blob(void *cls, struct GNUNET_MY_ResultSpec *rs, MYSQL_STMT *stmt, unsigned int column, MYSQL_BIND *results) is not documented: - parameter 'results' -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:260: warning: argument 'name' of command @param is not found in the argument list of GNUNET_MY_result_spec_fixed_size(void *ptr, size_t ptr_size) -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:260: warning: argument 'dst' of command @param is not found in the argument list of GNUNET_MY_result_spec_fixed_size(void *ptr, size_t ptr_size) -/home/william/Git/gnunet/src/my/my_result_helper.c:200: warning: The following parameter of GNUNET_MY_result_spec_fixed_size(void *ptr, size_t ptr_size) is not documented: - parameter 'ptr' -/home/william/Git/gnunet/src/my/my_result_helper.c:350: warning: argument 'name' of command @param is not found in the argument list of GNUNET_MY_result_spec_rsa_public_key(struct GNUNET_CRYPTO_RsaPublicKey **rsa) -/home/william/Git/gnunet/src/my/my_result_helper.c:462: warning: argument 'rd' of command @param is not found in the argument list of clean_rsa_signature(void *cls, struct GNUNET_MY_ResultSpec *rs) -/home/william/Git/gnunet/src/my/my_result_helper.c:468: warning: The following parameter of clean_rsa_signature(void *cls, struct GNUNET_MY_ResultSpec *rs) is not documented: - parameter 'rs' -/home/william/Git/gnunet/src/my/my_result_helper.c:533: warning: expected whitespace after \a command -/home/william/Git/gnunet/src/my/my_result_helper.c:605: warning: argument 'name' of command @param is not found in the argument list of GNUNET_MY_result_spec_absolute_time(struct GNUNET_TIME_Absolute *at) -/home/william/Git/gnunet/src/my/my_result_helper.c:728: warning: argument 'cls' from the argument list of pre_extract_uint32 has multiple @param documentation sections -/home/william/Git/gnunet/src/my/my_result_helper.c:759: warning: argument 'cls' from the argument list of post_extract_uint32 has multiple @param documentation sections -/home/william/Git/gnunet/src/mysql/mysql.c:432: warning: argument 'mc' of command @param is not found in the argument list of prepare_statement(struct GNUNET_MYSQL_StatementHandle *sh) -/home/william/Git/gnunet/src/namecache/gnunet-service-namecache.c:210: warning: argument 'the' of command @param is not found in the argument list of handle_lookup_block(void *cls, const struct LookupBlockMessage *ln_msg) -/home/william/Git/gnunet/src/namecache/gnunet-service-namecache.c:217: warning: The following parameter of handle_lookup_block(void *cls, const struct LookupBlockMessage *ln_msg) is not documented: - parameter 'ln_msg' -/home/william/Git/gnunet/src/namecache/namecache_api.c:256: warning: argument 'size' of command @param is not found in the argument list of handle_block_cache_response(void *cls, const struct BlockCacheResponseMessage *msg) -/home/william/Git/gnunet/src/namecache/plugin_namecache_flat.c:192: warning: argument 'plugin' of command @param is not found in the argument list of store_and_free_entries(void *cls, const struct GNUNET_HashCode *key, void *value) -/home/william/Git/gnunet/src/namecache/plugin_namecache_flat.c:198: warning: The following parameters of store_and_free_entries(void *cls, const struct GNUNET_HashCode *key, void *value) are not documented: - parameter 'cls' - parameter 'key' - parameter 'value' -/home/william/Git/gnunet/src/namestore/gnunet-namestore-fcfsd.c:1139: warning: Found unknown command '\parsm' -/home/william/Git/gnunet/src/namestore/gnunet-namestore-fcfsd.c:1144: warning: The following parameter of main(int argc, char *const *argv) is not documented: - parameter 'argv' -/home/william/Git/gnunet/src/namestore/gnunet-namestore.c:850: warning: argument 'out' of command @param is not found in the argument list of parse_expiration(const char *expirationstring, int *etime_is_rel, uint64_t *etime) -/home/william/Git/gnunet/src/namestore/gnunet-namestore.c:850: warning: argument 'out' of command @param is not found in the argument list of parse_expiration(const char *expirationstring, int *etime_is_rel, uint64_t *etime) -/home/william/Git/gnunet/src/namestore/gnunet-namestore.c:1513: warning: argument 'topKeywords' of command @param is not found in the argument list of multirecord_option(char shortName, const char *name, const char *argumentHelp, const char *description, struct RecordSetEntry **rs) -/home/william/Git/gnunet/src/namestore/gnunet-namestore.c:1403: warning: The following parameter of multirecord_option(char shortName, const char *name, const char *argumentHelp, const char *description, struct RecordSetEntry **rs) is not documented: - parameter 'rs' -/home/william/Git/gnunet/src/namestore/gnunet-service-namestore.c:469: warning: explicit link request to 'GNUNET_GNSRECORD_TYPE_NICK' could not be resolved -/home/william/Git/gnunet/src/namestore/gnunet-service-namestore.c:626: warning: argument 'out' of command @param is not found in the argument list of merge_with_nick_records(const struct GNUNET_GNSRECORD_Data *nick_rd, unsigned int rd2_length, const struct GNUNET_GNSRECORD_Data *rd2, unsigned int *rdc_res, struct GNUNET_GNSRECORD_Data **rd_res) -/home/william/Git/gnunet/src/namestore/gnunet-service-namestore.c:626: warning: argument 'out' of command @param is not found in the argument list of merge_with_nick_records(const struct GNUNET_GNSRECORD_Data *nick_rd, unsigned int rd2_length, const struct GNUNET_GNSRECORD_Data *rd2, unsigned int *rdc_res, struct GNUNET_GNSRECORD_Data **rd_res) -/home/william/Git/gnunet/src/namestore/gnunet-service-namestore.c:805: warning: argument 'client' of command @param is not found in the argument list of send_store_response(struct NamestoreClient *nc, int res, const char *emsg, uint32_t rid) -/home/william/Git/gnunet/src/namestore/gnunet-service-namestore.c:811: warning: The following parameters of send_store_response(struct NamestoreClient *nc, int res, const char *emsg, uint32_t rid) are not documented: - parameter 'nc' - parameter 'emsg' -/home/william/Git/gnunet/src/namestore/gnunet-service-namestore.c:1236: warning: argument 'zone_key' of command @param is not found in the argument list of lookup_it(void *cls, uint64_t seq, const struct GNUNET_IDENTITY_PrivateKey *private_key, const char *label, unsigned int rd_count, const struct GNUNET_GNSRECORD_Data *rd) -/home/william/Git/gnunet/src/namestore/gnunet-service-namestore.c:1249: warning: The following parameter of lookup_it(void *cls, uint64_t seq, const struct GNUNET_IDENTITY_PrivateKey *private_key, const char *label, unsigned int rd_count, const struct GNUNET_GNSRECORD_Data *rd) is not documented: - parameter 'private_key' -/home/william/Git/gnunet/src/namestore/gnunet-service-namestore.c:2031: warning: argument 'message' of command @param is not found in the argument list of handle_iteration_next(void *cls, const struct ZoneIterationNextMessage *zis_msg) -/home/william/Git/gnunet/src/namestore/gnunet-service-namestore.c:2038: warning: The following parameter of handle_iteration_next(void *cls, const struct ZoneIterationNextMessage *zis_msg) is not documented: - parameter 'zis_msg' -/home/william/Git/gnunet/src/namestore/gnunet-zoneimport.c:438: warning: argument 'hostname' of command @param is not found in the argument list of build_dns_query(struct Request *req, size_t *raw_size) -/home/william/Git/gnunet/src/namestore/gnunet-zoneimport.c:438: warning: argument 'out' of command @param is not found in the argument list of build_dns_query(struct Request *req, size_t *raw_size) -/home/william/Git/gnunet/src/namestore/gnunet-zoneimport.c:445: warning: The following parameter of build_dns_query(struct Request *req, size_t *raw_size) is not documented: - parameter 'req' -/home/william/Git/gnunet/src/namestore/gnunet-zoneimport.c:1834: warning: argument '1' of command @param is not found in the argument list of main(int argc, char *const *argv) -/home/william/Git/gnunet/src/namestore/namestore_api.c:680: warning: argument 'qe' of command @param is not found in the argument list of check_zone_to_name_response(void *cls, const struct ZoneToNameResponseMessage *msg) -/home/william/Git/gnunet/src/namestore/namestore_api.c:687: warning: The following parameter of check_zone_to_name_response(void *cls, const struct ZoneToNameResponseMessage *msg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/namestore/namestore_api_monitor.c:279: warning: argument 'cls' of command @param is not found in the argument list of GNUNET_NAMESTORE_zone_monitor_start(const struct GNUNET_CONFIGURATION_Handle *cfg, const struct GNUNET_IDENTITY_PrivateKey *zone, int iterate_first, GNUNET_SCHEDULER_TaskCallback error_cb, void *error_cb_cls, GNUNET_NAMESTORE_RecordMonitor monitor, void *monitor_cls, GNUNET_SCHEDULER_TaskCallback sync_cb, void *sync_cb_cls) -/home/william/Git/gnunet/src/namestore/namestore_api_monitor.c:303: warning: The following parameter of GNUNET_NAMESTORE_zone_monitor_start(const struct GNUNET_CONFIGURATION_Handle *cfg, const struct GNUNET_IDENTITY_PrivateKey *zone, int iterate_first, GNUNET_SCHEDULER_TaskCallback error_cb, void *error_cb_cls, GNUNET_NAMESTORE_RecordMonitor monitor, void *monitor_cls, GNUNET_SCHEDULER_TaskCallback sync_cb, void *sync_cb_cls) is not documented: - parameter 'sync_cb_cls' -/home/william/Git/gnunet/src/namestore/plugin_namestore_flat.c:81: warning: argument 'out' of command @param is not found in the argument list of hash_pkey_and_label(const struct GNUNET_IDENTITY_PrivateKey *pkey, const char *label, struct GNUNET_HashCode *h) -/home/william/Git/gnunet/src/namestore/plugin_namestore_flat.c:327: warning: argument 'plugin' of command @param is not found in the argument list of store_and_free_entries(void *cls, const struct GNUNET_HashCode *key, void *value) -/home/william/Git/gnunet/src/namestore/plugin_namestore_flat.c:335: warning: The following parameter of store_and_free_entries(void *cls, const struct GNUNET_HashCode *key, void *value) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/namestore/plugin_namestore_postgres.c:310: warning: argument 'result' of command @param is not found in the argument list of parse_result_call_iterator(void *cls, PGresult *res, unsigned int num_results) -/home/william/Git/gnunet/src/namestore/plugin_namestore_postgres.c:310: warning: argument 'num_result' of command @param is not found in the argument list of parse_result_call_iterator(void *cls, PGresult *res, unsigned int num_results) -/home/william/Git/gnunet/src/namestore/plugin_namestore_postgres.c:319: warning: The following parameters of parse_result_call_iterator(void *cls, PGresult *res, unsigned int num_results) are not documented: - parameter 'res' - parameter 'num_results' -/home/william/Git/gnunet/src/namestore/plugin_rest_namestore.c:281: warning: argument 'handle' of command @param is not found in the argument list of cleanup_handle(void *cls) -/home/william/Git/gnunet/src/namestore/plugin_rest_namestore.c:286: warning: The following parameter of cleanup_handle(void *cls) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/namestore/plugin_rest_namestore.c:359: warning: argument 'pubkey' of command @param is not found in the argument list of get_egoentry_namestore(struct RequestHandle *handle, char *name) -/home/william/Git/gnunet/src/namestore/plugin_rest_namestore.c:508: warning: argument 'handle' of command @param is not found in the argument list of namestore_list_iteration(void *cls, const struct GNUNET_IDENTITY_PrivateKey *zone_key, const char *rname, unsigned int rd_len, const struct GNUNET_GNSRECORD_Data *rd) -/home/william/Git/gnunet/src/namestore/plugin_rest_namestore.c:514: warning: The following parameters of namestore_list_iteration(void *cls, const struct GNUNET_IDENTITY_PrivateKey *zone_key, const char *rname, unsigned int rd_len, const struct GNUNET_GNSRECORD_Data *rd) are not documented: - parameter 'cls' - parameter 'zone_key' - parameter 'rname' - parameter 'rd_len' - parameter 'rd' -/home/william/Git/gnunet/src/namestore/plugin_rest_namestore.c:1026: warning: argument 'method' of command @param is not found in the argument list of rest_process_request(struct GNUNET_REST_RequestHandle *rest_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/namestore/plugin_rest_namestore.c:1026: warning: argument 'url' of command @param is not found in the argument list of rest_process_request(struct GNUNET_REST_RequestHandle *rest_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/namestore/plugin_rest_namestore.c:1026: warning: argument 'data' of command @param is not found in the argument list of rest_process_request(struct GNUNET_REST_RequestHandle *rest_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/namestore/plugin_rest_namestore.c:1026: warning: argument 'data_size' of command @param is not found in the argument list of rest_process_request(struct GNUNET_REST_RequestHandle *rest_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/namestore/plugin_rest_namestore.c:945: warning: The following parameter of rest_process_request(struct GNUNET_REST_RequestHandle *rest_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) is not documented: - parameter 'rest_handle' -/home/william/Git/gnunet/src/nat-auto/gnunet-nat-server.c:259: warning: argument 'msg' of command @param is not found in the argument list of handle_test(void *cls, const struct GNUNET_NAT_AUTO_TestMessage *tm) -/home/william/Git/gnunet/src/nat-auto/gnunet-nat-server.c:267: warning: The following parameter of handle_test(void *cls, const struct GNUNET_NAT_AUTO_TestMessage *tm) is not documented: - parameter 'tm' -/home/william/Git/gnunet/src/nat-auto/gnunet-service-nat-auto.c:164: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_NAT_REQUEST_AUTO_CFG' could not be resolved -/home/william/Git/gnunet/src/nat-auto/gnunet-service-nat-auto.c:293: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_NAT_REQUEST_AUTO_CFG' could not be resolved -/home/william/Git/gnunet/src/nat-auto/gnunet-service-nat-auto_legacy.c:365: warning: argument 'success' of command @param is not found in the argument list of result_callback(void *cls, enum GNUNET_NAT_StatusCode ret) -/home/william/Git/gnunet/src/nat-auto/gnunet-service-nat-auto_legacy.c:365: warning: argument 'emsg' of command @param is not found in the argument list of result_callback(void *cls, enum GNUNET_NAT_StatusCode ret) -/home/william/Git/gnunet/src/nat-auto/gnunet-service-nat-auto_legacy.c:373: warning: The following parameter of result_callback(void *cls, enum GNUNET_NAT_StatusCode ret) is not documented: - parameter 'ret' -/home/william/Git/gnunet/src/nat-auto/gnunet-service-nat-auto_legacy.c:415: warning: argument 'emsg' of command @param is not found in the argument list of set_external_ipv4(void *cls, const struct in_addr *addr, enum GNUNET_NAT_StatusCode ret) -/home/william/Git/gnunet/src/nat-auto/gnunet-service-nat-auto_legacy.c:421: warning: The following parameter of set_external_ipv4(void *cls, const struct in_addr *addr, enum GNUNET_NAT_StatusCode ret) is not documented: - parameter 'ret' -/home/william/Git/gnunet/src/nat-auto/nat_auto_api_test.c:334: warning: argument 'in' of command @param is not found in the argument list of addr_cb(void *cls, void **app_ctx, int add_remove, enum GNUNET_NAT_AddressClass ac, const struct sockaddr *addr, socklen_t addrlen) -/home/william/Git/gnunet/src/nat-auto/nat_auto_api_test.c:334: warning: argument 'out' of command @param is not found in the argument list of addr_cb(void *cls, void **app_ctx, int add_remove, enum GNUNET_NAT_AddressClass ac, const struct sockaddr *addr, socklen_t addrlen) -/home/william/Git/gnunet/src/nat/gnunet-nat.c:72: warning: explicit link request to 'bind_addr' could not be resolved -/home/william/Git/gnunet/src/nat/gnunet-nat.c:110: warning: argument 'in' of command @param is not found in the argument list of address_cb(void *cls, void **app_ctx, int add_remove, enum GNUNET_NAT_AddressClass ac, const struct sockaddr *addr, socklen_t addrlen) -/home/william/Git/gnunet/src/nat/gnunet-nat.c:110: warning: argument 'out' of command @param is not found in the argument list of address_cb(void *cls, void **app_ctx, int add_remove, enum GNUNET_NAT_AddressClass ac, const struct sockaddr *addr, socklen_t addrlen) -/home/william/Git/gnunet/src/nat/gnunet-service-nat.c:1182: warning: argument 'ch' of command @param is not found in the argument list of dyndns_lookup(void *cls) -/home/william/Git/gnunet/src/nat/gnunet-service-nat.c:1307: warning: The following parameter of dyndns_lookup(void *cls) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/nat/gnunet-service-nat_helper.h:60: warning: argument 'internal_address' from the argument list of GN_start_gnunet_nat_server_ has multiple @param documentation sections -/home/william/Git/gnunet/src/nat/gnunet-service-nat_helper.h:60: warning: argument 'cb' from the argument list of GN_start_gnunet_nat_server_ has multiple @param documentation sections -/home/william/Git/gnunet/src/nat/gnunet-service-nat_helper.h:60: warning: argument 'cb_cls' from the argument list of GN_start_gnunet_nat_server_ has multiple @param documentation sections -/home/william/Git/gnunet/src/nat/gnunet-service-nat_helper.h:60: warning: argument 'cfg' from the argument list of GN_start_gnunet_nat_server_ has multiple @param documentation sections -/home/william/Git/gnunet/src/nat/gnunet-service-nat_helper.h:89: warning: argument 'internal_address' from the argument list of GN_request_connection_reversal has multiple @param documentation sections -/home/william/Git/gnunet/src/nat/gnunet-service-nat_helper.h:89: warning: argument 'internal_port' from the argument list of GN_request_connection_reversal has multiple @param documentation sections -/home/william/Git/gnunet/src/nat/gnunet-service-nat_helper.h:89: warning: argument 'remote_v4' from the argument list of GN_request_connection_reversal has multiple @param documentation sections -/home/william/Git/gnunet/src/nat/gnunet-service-nat_helper.h:89: warning: argument 'cfg' from the argument list of GN_request_connection_reversal has multiple @param documentation sections -/home/william/Git/gnunet/src/nat/gnunet-service-nat_mini.c:480: warning: argument 'cls' from the argument list of do_refresh has multiple @param documentation sections -/home/william/Git/gnunet/src/nat/gnunet-service-nat_mini.h:57: warning: argument 'cb' from the argument list of GNUNET_NAT_mini_get_external_ipv4_ has multiple @param documentation sections -/home/william/Git/gnunet/src/nat/gnunet-service-nat_mini.h:57: warning: argument 'cb_cls' from the argument list of GNUNET_NAT_mini_get_external_ipv4_ has multiple @param documentation sections -/home/william/Git/gnunet/src/nat/gnunet-service-nat_mini.h:110: warning: argument 'port' from the argument list of GNUNET_NAT_mini_map_start has multiple @param documentation sections -/home/william/Git/gnunet/src/nat/gnunet-service-nat_mini.h:110: warning: argument 'is_tcp' from the argument list of GNUNET_NAT_mini_map_start has multiple @param documentation sections -/home/william/Git/gnunet/src/nat/gnunet-service-nat_mini.h:110: warning: argument 'ac' from the argument list of GNUNET_NAT_mini_map_start has multiple @param documentation sections -/home/william/Git/gnunet/src/nat/gnunet-service-nat_mini.h:110: warning: argument 'ac_cls' from the argument list of GNUNET_NAT_mini_map_start has multiple @param documentation sections -/home/william/Git/gnunet/src/nat/gnunet-service-nat_mini.h:125: warning: argument 'mini' from the argument list of GNUNET_NAT_mini_map_stop has multiple @param documentation sections -/home/william/Git/gnunet/src/nat/nat_api_stun.c:112: warning: argument 'stun' of command @param is not found in the argument list of generate_request_id(struct stun_header *req) -/home/william/Git/gnunet/src/nse/gnunet-nse-profiler.c:674: warning: argument 'cls' from the argument list of next_round has multiple @param documentation sections -/home/william/Git/gnunet/src/nse/gnunet-service-nse.c:1165: warning: The following parameter of handle_core_connect(void *cls, const struct GNUNET_PeerIdentity *peer, struct GNUNET_MQ_Handle *mq) is not documented: - parameter 'mq' -/home/william/Git/gnunet/src/nse/gnunet-service-nse.c:1201: warning: Found unknown command '\parma' -/home/william/Git/gnunet/src/nse/gnunet-service-nse.c:1205: warning: The following parameter of handle_core_disconnect(void *cls, const struct GNUNET_PeerIdentity *peer, void *internal_cls) is not documented: - parameter 'internal_cls' -/home/william/Git/gnunet/src/nse/nse_api.c:132: warning: argument 'cls' from the argument list of reconnect has multiple @param documentation sections -/home/william/Git/gnunet/src/peerinfo-tool/gnunet-peerinfo_plugins.h:37: warning: argument 'cfg' from the argument list of GPI_plugins_load has multiple @param documentation sections -/home/william/Git/gnunet/src/peerinfo-tool/plugin_rest_peerinfo.c:274: warning: argument 'handle' of command @param is not found in the argument list of cleanup_handle(void *cls) -/home/william/Git/gnunet/src/peerinfo-tool/plugin_rest_peerinfo.c:279: warning: The following parameter of cleanup_handle(void *cls) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/peerinfo-tool/plugin_rest_peerinfo.c:725: warning: argument 'method' of command @param is not found in the argument list of rest_process_request(struct GNUNET_REST_RequestHandle *rest_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/peerinfo-tool/plugin_rest_peerinfo.c:725: warning: argument 'url' of command @param is not found in the argument list of rest_process_request(struct GNUNET_REST_RequestHandle *rest_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/peerinfo-tool/plugin_rest_peerinfo.c:725: warning: argument 'data' of command @param is not found in the argument list of rest_process_request(struct GNUNET_REST_RequestHandle *rest_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/peerinfo-tool/plugin_rest_peerinfo.c:725: warning: argument 'data_size' of command @param is not found in the argument list of rest_process_request(struct GNUNET_REST_RequestHandle *rest_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/peerinfo-tool/plugin_rest_peerinfo.c:707: warning: The following parameter of rest_process_request(struct GNUNET_REST_RequestHandle *rest_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) is not documented: - parameter 'rest_handle' -/home/william/Git/gnunet/src/peerstore/gnunet-service-peerstore.c:217: warning: The following parameter of client_disconnect_cb(void *cls, struct GNUNET_SERVICE_Client *client, void *app_cls) is not documented: - parameter 'app_cls' -/home/william/Git/gnunet/src/peerstore/peerstore_api.c:808: warning: argument 'cls' from the argument list of reconnect has multiple @param documentation sections -/home/william/Git/gnunet/src/peerstore/peerstore_common.h:71: warning: argument 'srm' from the argument list of PEERSTORE_parse_record_message has multiple @param documentation sections -/home/william/Git/gnunet/src/peerstore/plugin_peerstore_sqlite.c:126: warning: explicit link request to 'GNUNE_SYSERR' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:896: warning: Found unknown command '\es' -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:925: warning: Found unknown command '\es' -/home/william/Git/gnunet/src/pq/pq_event.c:384: warning: argument 'eh' of command @param is not found in the argument list of register_notify(void *cls, const struct GNUNET_ShortHashCode *sh, void *value) -/home/william/Git/gnunet/src/pq/pq_event.c:391: warning: The following parameter of register_notify(void *cls, const struct GNUNET_ShortHashCode *sh, void *value) is not documented: - parameter 'value' -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:1029: warning: explicit link request to 'GNUNET_PQ_event_do_poll()' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:1054: warning: explicit link request to 'GNUNET_PQ_event_do_poll()' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:1069: warning: explicit link request to 'GNUNET_PQ_event_do_poll()' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:119: warning: Found unknown command '\oaran' -/home/william/Git/gnunet/src/pq/pq_query_helper.c:96: warning: The following parameter of GNUNET_PQ_query_param_fixed_size(const void *ptr, size_t ptr_size) is not documented: - parameter 'ptr_size' -/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:230: warning: argument 'x' of command @param is not found in the argument list of GNUNET_PQ_query_param_timestamp_nbo(const struct GNUNET_TIME_TimestampNBO *t) -/home/william/Git/gnunet/src/pq/pq_query_helper.c:505: warning: The following parameter of GNUNET_PQ_query_param_timestamp_nbo(const struct GNUNET_TIME_TimestampNBO *t) is not documented: - parameter 't' -/home/william/Git/gnunet/src/pq/pq_result_helper.c:67: warning: argument 'int' of command @param is not found in the argument list of extract_varsize_blob(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) -/home/william/Git/gnunet/src/pq/pq_result_helper.c:51: warning: The following parameter of extract_varsize_blob(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) is not documented: - parameter 'row' -/home/william/Git/gnunet/src/pq/pq_result_helper.c:144: warning: argument 'int' of command @param is not found in the argument list of extract_fixed_blob(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) -/home/william/Git/gnunet/src/pq/pq_result_helper.c:51: warning: The following parameter of extract_fixed_blob(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) is not documented: - parameter 'row' -/home/william/Git/gnunet/src/pq/pq_result_helper.c:226: warning: argument 'int' of command @param is not found in the argument list of extract_rsa_public_key(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) -/home/william/Git/gnunet/src/pq/pq_result_helper.c:51: warning: The following parameter of extract_rsa_public_key(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) is not documented: - parameter 'row' -/home/william/Git/gnunet/src/pq/pq_result_helper.c:322: warning: argument 'int' of command @param is not found in the argument list of extract_rsa_signature(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) -/home/william/Git/gnunet/src/pq/pq_result_helper.c:291: warning: The following parameter of extract_rsa_signature(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) is not documented: - parameter 'row' -/home/william/Git/gnunet/src/pq/pq_result_helper.c:417: warning: argument 'int' of command @param is not found in the argument list of extract_string(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) -/home/william/Git/gnunet/src/pq/pq_result_helper.c:386: warning: The following parameter of extract_string(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) is not documented: - parameter 'row' -/home/william/Git/gnunet/src/pq/pq_result_helper.c:512: warning: argument 'int' of command @param is not found in the argument list of extract_bool(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) -/home/william/Git/gnunet/src/pq/pq_result_helper.c:481: warning: The following parameter of extract_bool(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) is not documented: - parameter 'row' -/home/william/Git/gnunet/src/pq/pq_result_helper.c:582: warning: argument 'int' of command @param is not found in the argument list of extract_rel_time(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) -/home/william/Git/gnunet/src/pq/pq_result_helper.c:481: warning: The following parameter of extract_rel_time(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) is not documented: - parameter 'row' -/home/william/Git/gnunet/src/pq/pq_result_helper.c:659: warning: argument 'int' of command @param is not found in the argument list of extract_abs_time(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) -/home/william/Git/gnunet/src/pq/pq_result_helper.c:481: warning: The following parameter of extract_abs_time(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) is not documented: - parameter 'row' -/home/william/Git/gnunet/src/pq/pq_result_helper.c:748: warning: argument 'int' of command @param is not found in the argument list of extract_timestamp(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) -/home/william/Git/gnunet/src/pq/pq_result_helper.c:481: warning: The following parameter of extract_timestamp(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) is not documented: - parameter 'row' -/home/william/Git/gnunet/src/pq/pq_result_helper.c:837: warning: argument 'int' of command @param is not found in the argument list of extract_timestamp_nbo(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) -/home/william/Git/gnunet/src/pq/pq_result_helper.c:481: warning: The following parameter of extract_timestamp_nbo(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) is not documented: - parameter 'row' -/home/william/Git/gnunet/src/pq/pq_result_helper.c:890: warning: argument 'int' of command @param is not found in the argument list of extract_uint16(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) -/home/william/Git/gnunet/src/pq/pq_result_helper.c:481: warning: The following parameter of extract_uint16(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) is not documented: - parameter 'row' -/home/william/Git/gnunet/src/pq/pq_result_helper.c:964: warning: argument 'int' of command @param is not found in the argument list of extract_uint32(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) -/home/william/Git/gnunet/src/pq/pq_result_helper.c:481: warning: The following parameter of extract_uint32(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) is not documented: - parameter 'row' -/home/william/Git/gnunet/src/pq/pq_result_helper.c:1038: warning: argument 'int' of command @param is not found in the argument list of extract_uint64(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) -/home/william/Git/gnunet/src/pq/pq_result_helper.c:481: warning: The following parameter of extract_uint64(void *cls, PGresult *result, int row, const char *fname, size_t *dst_size, void *dst) is not documented: - parameter 'row' -/home/william/Git/gnunet/src/pt/gnunet-daemon-pt.c:991: warning: argument 'channel_ctx' of command @param is not found in the argument list of cadet_channel_end_cb(void *cls, const struct GNUNET_CADET_Channel *channel) -/home/william/Git/gnunet/src/reclaim/did.h:27: warning: Unsupported xml/html tag found -/home/william/Git/gnunet/src/reclaim/did.h:38: warning: Unsupported xml/html tag found -/home/william/Git/gnunet/src/reclaim/did.h:27: warning: Unsupported xml/html tag found -/home/william/Git/gnunet/src/reclaim/did.h:38: warning: Unsupported xml/html tag found -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim.c:522: warning: argument 'handle' of command @param is not found in the argument list of cleanup_as_handle(struct AttributeStoreHandle *ash) -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim.c:528: warning: The following parameter of cleanup_as_handle(struct AttributeStoreHandle *ash) is not documented: - parameter 'ash' -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim.c:651: warning: The following parameter of send_ticket_result(const struct IdpClient *client, uint32_t r_id, const struct GNUNET_RECLAIM_Ticket *ticket, const struct GNUNET_RECLAIM_PresentationList *presentations, uint32_t success) is not documented: - parameter 'presentations' -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim.c:723: warning: Found unknown command '\cls' -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim.c:724: warning: Found unknown command '\im' -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim.c:872: warning: The following parameter of consume_result_cb(void *cls, const struct GNUNET_IDENTITY_PublicKey *identity, const struct GNUNET_RECLAIM_AttributeList *attrs, const struct GNUNET_RECLAIM_PresentationList *presentations, int32_t success, const char *emsg) is not documented: - parameter 'presentations' -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim.c:937: warning: Found unknown command '\cm' -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim.c:943: warning: The following parameter of handle_consume_ticket_message(void *cls, const struct ConsumeTicketMessage *cm) is not documented: - parameter 'cm' -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim.c:1415: warning: argument 'cls' from the argument list of update_tickets has multiple @param documentation sections -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim.c:1686: warning: Found unknown command '\cls' -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim.c:1687: warning: Found unknown command '\dam' -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim.c:1777: warning: Found unknown command '\cls' -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim.c:1778: warning: Found unknown command '\dam' -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim_tickets.c:482: warning: argument 'rd_cound' of command @param is not found in the argument list of rvk_ticket_update(void *cls, const struct GNUNET_IDENTITY_PrivateKey *zone, const char *label, unsigned int rd_count, const struct GNUNET_GNSRECORD_Data *rd) -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim_tickets.c:492: warning: The following parameter of rvk_ticket_update(void *cls, const struct GNUNET_IDENTITY_PrivateKey *zone, const char *label, unsigned int rd_count, const struct GNUNET_GNSRECORD_Data *rd) is not documented: - parameter 'rd_count' -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim_tickets.c:767: warning: argument 'rvk' from the argument list of move_attrs has multiple @param documentation sections -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim_tickets.c:839: warning: argument 'rd_cound' of command @param is not found in the argument list of revoke_attrs_cb(void *cls, const struct GNUNET_IDENTITY_PrivateKey *zone, const char *label, unsigned int rd_count, const struct GNUNET_GNSRECORD_Data *rd) -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim_tickets.c:849: warning: The following parameter of revoke_attrs_cb(void *cls, const struct GNUNET_IDENTITY_PrivateKey *zone, const char *label, unsigned int rd_count, const struct GNUNET_GNSRECORD_Data *rd) is not documented: - parameter 'rd_count' -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim_tickets.c:994: warning: argument 'rd_cound' of command @param is not found in the argument list of process_parallel_lookup_result(void *cls, uint32_t rd_count, const struct GNUNET_GNSRECORD_Data *rd) -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim_tickets.c:1000: warning: The following parameter of process_parallel_lookup_result(void *cls, uint32_t rd_count, const struct GNUNET_GNSRECORD_Data *rd) is not documented: - parameter 'rd_count' -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim_tickets.c:1079: warning: argument 'rd_cound' of command @param is not found in the argument list of lookup_authz_cb(void *cls, uint32_t rd_count, const struct GNUNET_GNSRECORD_Data *rd) -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim_tickets.c:1088: warning: The following parameter of lookup_authz_cb(void *cls, uint32_t rd_count, const struct GNUNET_GNSRECORD_Data *rd) is not documented: - parameter 'rd_count' -/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim_tickets.c:1671: warning: Found unknown command '\GNUNET_GNSRECORD_TYPE_RECLAIM_TICKET' -/home/william/Git/gnunet/src/reclaim/json_reclaim.c:141: warning: argument 'ticket' of command @param is not found in the argument list of GNUNET_RECLAIM_JSON_spec_attribute(struct GNUNET_RECLAIM_Attribute **attr) -/home/william/Git/gnunet/src/reclaim/json_reclaim.c:126: warning: The following parameter of GNUNET_RECLAIM_JSON_spec_attribute(struct GNUNET_RECLAIM_Attribute **attr) is not documented: - parameter 'attr' -/home/william/Git/gnunet/src/reclaim/json_reclaim.h:50: warning: argument 'attr' of command @param is not found in the argument list of GNUNET_RECLAIM_JSON_spec_credential(struct GNUNET_RECLAIM_Credential **cred) -/home/william/Git/gnunet/src/reclaim/json_reclaim.c:365: warning: The following parameter of GNUNET_RECLAIM_JSON_spec_credential(struct GNUNET_RECLAIM_Credential **cred) is not documented: - parameter 'cred' -/home/william/Git/gnunet/src/reclaim/json_reclaim.c:141: warning: argument 'ticket' of command @param is not found in the argument list of GNUNET_RECLAIM_JSON_spec_attribute(struct GNUNET_RECLAIM_Attribute **attr) -/home/william/Git/gnunet/src/reclaim/json_reclaim.h:50: warning: argument 'attr' of command @param is not found in the argument list of GNUNET_RECLAIM_JSON_spec_credential(struct GNUNET_RECLAIM_Credential **cred) -/home/william/Git/gnunet/src/reclaim/oidc_helper.c:371: warning: The following parameter of OIDC_generate_id_token(const struct GNUNET_IDENTITY_PublicKey *aud_key, const struct GNUNET_IDENTITY_PublicKey *sub_key, const struct GNUNET_RECLAIM_AttributeList *attrs, const struct GNUNET_RECLAIM_PresentationList *presentations, const struct GNUNET_TIME_Relative *expiration_time, const char *nonce, const char *secret_key) is not documented: - parameter 'nonce' -/home/william/Git/gnunet/src/reclaim/oidc_helper.c:476: warning: argument 'nonce' of command @param is not found in the argument list of OIDC_build_authz_code(const struct GNUNET_IDENTITY_PrivateKey *issuer, const struct GNUNET_RECLAIM_Ticket *ticket, const struct GNUNET_RECLAIM_AttributeList *attrs, const struct GNUNET_RECLAIM_PresentationList *presentations, const char *nonce_str, const char *code_challenge) -/home/william/Git/gnunet/src/reclaim/oidc_helper.c:489: warning: The following parameter of OIDC_build_authz_code(const struct GNUNET_IDENTITY_PrivateKey *issuer, const struct GNUNET_RECLAIM_Ticket *ticket, const struct GNUNET_RECLAIM_AttributeList *attrs, const struct GNUNET_RECLAIM_PresentationList *presentations, const char *nonce_str, const char *code_challenge) is not documented: - parameter 'nonce_str' -/home/william/Git/gnunet/src/reclaim/oidc_helper.c:660: warning: argument 'code_verfier' of command @param is not found in the argument list of OIDC_parse_authz_code(const struct GNUNET_IDENTITY_PublicKey *audience, const char *code, const char *code_verifier, struct GNUNET_RECLAIM_Ticket *ticket, struct GNUNET_RECLAIM_AttributeList **attrs, struct GNUNET_RECLAIM_PresentationList **presentations, char **nonce_str, enum OIDC_VerificationOptions opts) -/home/william/Git/gnunet/src/reclaim/oidc_helper.c:675: warning: The following parameters of OIDC_parse_authz_code(const struct GNUNET_IDENTITY_PublicKey *audience, const char *code, const char *code_verifier, struct GNUNET_RECLAIM_Ticket *ticket, struct GNUNET_RECLAIM_AttributeList **attrs, struct GNUNET_RECLAIM_PresentationList **presentations, char **nonce_str, enum OIDC_VerificationOptions opts) are not documented: - parameter 'code_verifier' - parameter 'opts' -/home/william/Git/gnunet/src/reclaim/oidc_helper.h:66: warning: The following parameter of OIDC_generate_id_token(const struct GNUNET_IDENTITY_PublicKey *aud_key, const struct GNUNET_IDENTITY_PublicKey *sub_key, const struct GNUNET_RECLAIM_AttributeList *attrs, const struct GNUNET_RECLAIM_PresentationList *presentations, const struct GNUNET_TIME_Relative *expiration_time, const char *nonce, const char *secret_key) is not documented: - parameter 'nonce' -/home/william/Git/gnunet/src/reclaim/oidc_helper.c:476: warning: argument 'nonce' of command @param is not found in the argument list of OIDC_build_authz_code(const struct GNUNET_IDENTITY_PrivateKey *issuer, const struct GNUNET_RECLAIM_Ticket *ticket, const struct GNUNET_RECLAIM_AttributeList *attrs, const struct GNUNET_RECLAIM_PresentationList *presentations, const char *nonce_str, const char *code_challenge) -/home/william/Git/gnunet/src/reclaim/oidc_helper.c:476: warning: argument 'opts' of command @param is not found in the argument list of OIDC_build_authz_code(const struct GNUNET_IDENTITY_PrivateKey *issuer, const struct GNUNET_RECLAIM_Ticket *ticket, const struct GNUNET_RECLAIM_AttributeList *attrs, const struct GNUNET_RECLAIM_PresentationList *presentations, const char *nonce_str, const char *code_challenge) -/home/william/Git/gnunet/src/reclaim/oidc_helper.c:476: warning: argument 'nonce' of command @param is not found in the argument list of OIDC_build_authz_code(const struct GNUNET_IDENTITY_PrivateKey *issuer, const struct GNUNET_RECLAIM_Ticket *ticket, const struct GNUNET_RECLAIM_AttributeList *attrs, const struct GNUNET_RECLAIM_PresentationList *presentations, const char *nonce_str, const char *code_challenge) -/home/william/Git/gnunet/src/reclaim/oidc_helper.h:89: warning: argument 'issuer' from the argument list of OIDC_build_authz_code has multiple @param documentation sections -/home/william/Git/gnunet/src/reclaim/oidc_helper.h:89: warning: argument 'ticket' from the argument list of OIDC_build_authz_code has multiple @param documentation sections -/home/william/Git/gnunet/src/reclaim/oidc_helper.h:89: warning: argument 'attrs' from the argument list of OIDC_build_authz_code has multiple @param documentation sections -/home/william/Git/gnunet/src/reclaim/oidc_helper.h:89: warning: argument 'presentations' from the argument list of OIDC_build_authz_code has multiple @param documentation sections -/home/william/Git/gnunet/src/reclaim/oidc_helper.h:89: warning: argument 'code_challenge' from the argument list of OIDC_build_authz_code has multiple @param documentation sections -/home/william/Git/gnunet/src/reclaim/oidc_helper.h:89: warning: The following parameter of OIDC_build_authz_code(const struct GNUNET_IDENTITY_PrivateKey *issuer, const struct GNUNET_RECLAIM_Ticket *ticket, const struct GNUNET_RECLAIM_AttributeList *attrs, const struct GNUNET_RECLAIM_PresentationList *presentations, const char *nonce_str, const char *code_challenge) is not documented: - parameter 'nonce_str' -/home/william/Git/gnunet/src/reclaim/oidc_helper.c:660: warning: argument 'ecdsa_priv' of command @param is not found in the argument list of OIDC_parse_authz_code(const struct GNUNET_IDENTITY_PublicKey *audience, const char *code, const char *code_verifier, struct GNUNET_RECLAIM_Ticket *ticket, struct GNUNET_RECLAIM_AttributeList **attrs, struct GNUNET_RECLAIM_PresentationList **presentations, char **nonce_str, enum OIDC_VerificationOptions opts) -/home/william/Git/gnunet/src/reclaim/oidc_helper.c:660: warning: argument 'code_verfier' of command @param is not found in the argument list of OIDC_parse_authz_code(const struct GNUNET_IDENTITY_PublicKey *audience, const char *code, const char *code_verifier, struct GNUNET_RECLAIM_Ticket *ticket, struct GNUNET_RECLAIM_AttributeList **attrs, struct GNUNET_RECLAIM_PresentationList **presentations, char **nonce_str, enum OIDC_VerificationOptions opts) -/home/william/Git/gnunet/src/reclaim/oidc_helper.c:660: warning: argument 'nonce' of command @param is not found in the argument list of OIDC_parse_authz_code(const struct GNUNET_IDENTITY_PublicKey *audience, const char *code, const char *code_verifier, struct GNUNET_RECLAIM_Ticket *ticket, struct GNUNET_RECLAIM_AttributeList **attrs, struct GNUNET_RECLAIM_PresentationList **presentations, char **nonce_str, enum OIDC_VerificationOptions opts) -/home/william/Git/gnunet/src/reclaim/oidc_helper.c:660: warning: argument 'code_verfier' of command @param is not found in the argument list of OIDC_parse_authz_code(const struct GNUNET_IDENTITY_PublicKey *audience, const char *code, const char *code_verifier, struct GNUNET_RECLAIM_Ticket *ticket, struct GNUNET_RECLAIM_AttributeList **attrs, struct GNUNET_RECLAIM_PresentationList **presentations, char **nonce_str, enum OIDC_VerificationOptions opts) -/home/william/Git/gnunet/src/reclaim/oidc_helper.h:112: warning: argument 'code' from the argument list of OIDC_parse_authz_code has multiple @param documentation sections -/home/william/Git/gnunet/src/reclaim/oidc_helper.h:112: warning: argument 'ticket' from the argument list of OIDC_parse_authz_code has multiple @param documentation sections -/home/william/Git/gnunet/src/reclaim/oidc_helper.h:112: warning: argument 'attrs' from the argument list of OIDC_parse_authz_code has multiple @param documentation sections -/home/william/Git/gnunet/src/reclaim/oidc_helper.h:112: warning: argument 'presentations' from the argument list of OIDC_parse_authz_code has multiple @param documentation sections -/home/william/Git/gnunet/src/reclaim/oidc_helper.h:112: warning: The following parameters of OIDC_parse_authz_code(const struct GNUNET_IDENTITY_PublicKey *audience, const char *code, const char *code_verifier, struct GNUNET_RECLAIM_Ticket *ticket, struct GNUNET_RECLAIM_AttributeList **attrs, struct GNUNET_RECLAIM_PresentationList **presentations, char **nonce_str, enum OIDC_VerificationOptions opts) are not documented: - parameter 'code_verifier' - parameter 'opts' -/home/william/Git/gnunet/src/reclaim/oidc_helper.h:146: warning: argument 'scopes' from the argument list of OIDC_check_scopes_for_claim_request has multiple @param documentation sections -/home/william/Git/gnunet/src/reclaim/oidc_helper.h:146: warning: argument 'attr' from the argument list of OIDC_check_scopes_for_claim_request has multiple @param documentation sections -/home/william/Git/gnunet/src/reclaim/oidc_helper.h:172: warning: argument 'sub_key' from the argument list of OIDC_generate_userinfo has multiple @param documentation sections -/home/william/Git/gnunet/src/reclaim/oidc_helper.h:172: warning: argument 'attrs' from the argument list of OIDC_generate_userinfo has multiple @param documentation sections -/home/william/Git/gnunet/src/reclaim/oidc_helper.h:172: warning: argument 'presentations' from the argument list of OIDC_generate_userinfo has multiple @param documentation sections -/home/william/Git/gnunet/src/reclaim/plugin_reclaim_credential_jwt.c:145: warning: argument 'cred' of command @param is not found in the argument list of jwt_parse_attributes(void *cls, const char *data, size_t data_size) -/home/william/Git/gnunet/src/reclaim/plugin_reclaim_credential_jwt.c:153: warning: The following parameters of jwt_parse_attributes(void *cls, const char *data, size_t data_size) are not documented: - parameter 'data' - parameter 'data_size' -/home/william/Git/gnunet/src/reclaim/plugin_reclaim_credential_jwt.c:278: warning: argument 'cred' of command @param is not found in the argument list of jwt_get_issuer(void *cls, const char *data, size_t data_size) -/home/william/Git/gnunet/src/reclaim/plugin_reclaim_credential_jwt.c:286: warning: The following parameters of jwt_get_issuer(void *cls, const char *data, size_t data_size) are not documented: - parameter 'data' - parameter 'data_size' -/home/william/Git/gnunet/src/reclaim/plugin_reclaim_credential_jwt.c:356: warning: argument 'cred' of command @param is not found in the argument list of jwt_get_expiration(void *cls, const char *data, size_t data_size, struct GNUNET_TIME_Absolute *exp) -/home/william/Git/gnunet/src/reclaim/plugin_reclaim_credential_jwt.c:347: warning: The following parameters of jwt_get_expiration(void *cls, const char *data, size_t data_size, struct GNUNET_TIME_Absolute *exp) are not documented: - parameter 'data' - parameter 'data_size' - parameter 'exp' -/home/william/Git/gnunet/src/reclaim/plugin_reclaim_credential_jwt.c:347: warning: The following parameter of jwt_get_expiration_c(void *cls, const struct GNUNET_RECLAIM_Credential *cred, struct GNUNET_TIME_Absolute *exp) is not documented: - parameter 'exp' -/home/william/Git/gnunet/src/reclaim/plugin_reclaim_credential_jwt.c:347: warning: The following parameter of jwt_get_expiration_p(void *cls, const struct GNUNET_RECLAIM_Presentation *cred, struct GNUNET_TIME_Absolute *exp) is not documented: - parameter 'exp' -/home/william/Git/gnunet/src/reclaim/plugin_reclaim_credential_pabc.c:174: warning: argument 'cred' of command @param is not found in the argument list of pabc_parse_attributes(void *cls, const char *data, size_t data_size) -/home/william/Git/gnunet/src/reclaim/plugin_reclaim_credential_pabc.c:182: warning: The following parameters of pabc_parse_attributes(void *cls, const char *data, size_t data_size) are not documented: - parameter 'data' - parameter 'data_size' -/home/william/Git/gnunet/src/reclaim/plugin_reclaim_credential_pabc.c:232: warning: argument 'cred' of command @param is not found in the argument list of pabc_get_issuer(void *cls, const char *data, size_t data_size) -/home/william/Git/gnunet/src/reclaim/plugin_reclaim_credential_pabc.c:240: warning: The following parameters of pabc_get_issuer(void *cls, const char *data, size_t data_size) are not documented: - parameter 'data' - parameter 'data_size' -/home/william/Git/gnunet/src/reclaim/plugin_reclaim_credential_pabc.c:287: warning: argument 'cred' of command @param is not found in the argument list of pabc_get_expiration(void *cls, const char *data, size_t data_size, struct GNUNET_TIME_Absolute *exp) -/home/william/Git/gnunet/src/reclaim/plugin_reclaim_credential_pabc.c:278: warning: The following parameters of pabc_get_expiration(void *cls, const char *data, size_t data_size, struct GNUNET_TIME_Absolute *exp) are not documented: - parameter 'data' - parameter 'data_size' - parameter 'exp' -/home/william/Git/gnunet/src/reclaim/plugin_reclaim_credential_pabc.c:278: warning: The following parameter of pabc_get_expiration_c(void *cls, const struct GNUNET_RECLAIM_Credential *cred, struct GNUNET_TIME_Absolute *exp) is not documented: - parameter 'exp' -/home/william/Git/gnunet/src/reclaim/plugin_reclaim_credential_pabc.c:278: warning: The following parameter of pabc_get_expiration_p(void *cls, const struct GNUNET_RECLAIM_Presentation *cred, struct GNUNET_TIME_Absolute *exp) is not documented: - parameter 'exp' -/home/william/Git/gnunet/src/reclaim/plugin_rest_pabc.c:136: warning: argument 'handle' of command @param is not found in the argument list of cleanup_handle(void *cls) -/home/william/Git/gnunet/src/reclaim/plugin_rest_pabc.c:141: warning: The following parameter of cleanup_handle(void *cls) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/reclaim/plugin_rest_reclaim.c:269: warning: argument 'handle' of command @param is not found in the argument list of cleanup_handle(void *cls) -/home/william/Git/gnunet/src/reclaim/plugin_rest_reclaim.c:274: warning: The following parameter of cleanup_handle(void *cls) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/reclaim/reclaim_api.c:771: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_RECLAIM_credential_RESULT' could not be resolved -/home/william/Git/gnunet/src/reclaim/reclaim_api.c:796: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_RECLAIM_credential_RESULT' could not be resolved -/home/william/Git/gnunet/src/reclaim/reclaim_api.c:1479: warning: explicit link request to 'GNUNET_RECLAIM_get_credential_start' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:348: warning: argument 'it' of command @param is not found in the argument list of GNUNET_RECLAIM_get_credentials_next(struct GNUNET_RECLAIM_CredentialIterator *ait) -/home/william/Git/gnunet/src/reclaim/reclaim_api.c:1486: warning: The following parameter of GNUNET_RECLAIM_get_credentials_next(struct GNUNET_RECLAIM_CredentialIterator *ait) is not documented: - parameter 'ait' -/home/william/Git/gnunet/src/reclaim/reclaim_api.c:1500: warning: argument 'it' of command @param is not found in the argument list of GNUNET_RECLAIM_get_credentials_stop(struct GNUNET_RECLAIM_CredentialIterator *ait) -/home/william/Git/gnunet/src/reclaim/reclaim_api.c:1508: warning: The following parameter of GNUNET_RECLAIM_get_credentials_stop(struct GNUNET_RECLAIM_CredentialIterator *ait) is not documented: - parameter 'ait' -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:374: warning: Found unknown command '\GNUNET_RECLAIM_ticket_consume' -/home/william/Git/gnunet/src/reclaim/reclaim_attribute.c:304: warning: The following parameters of GNUNET_RECLAIM_attribute_list_add(struct GNUNET_RECLAIM_AttributeList *al, const char *attr_name, const struct GNUNET_RECLAIM_Identifier *credential, uint32_t type, const void *data, size_t data_size) are not documented: - parameter 'al' - parameter 'credential' -/home/william/Git/gnunet/src/reclaim/reclaim_attribute.c:324: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_attribute_list_serialize_get_size(const struct GNUNET_RECLAIM_AttributeList *al) -/home/william/Git/gnunet/src/reclaim/reclaim_attribute.c:331: warning: The following parameter of GNUNET_RECLAIM_attribute_list_serialize_get_size(const struct GNUNET_RECLAIM_AttributeList *al) is not documented: - parameter 'al' -/home/william/Git/gnunet/src/reclaim/reclaim_attribute.c:346: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_attribute_list_serialize(const struct GNUNET_RECLAIM_AttributeList *al, char *result) -/home/william/Git/gnunet/src/reclaim/reclaim_attribute.c:354: warning: The following parameter of GNUNET_RECLAIM_attribute_list_serialize(const struct GNUNET_RECLAIM_AttributeList *al, char *result) is not documented: - parameter 'al' -/home/william/Git/gnunet/src/reclaim/reclaim_attribute.c:417: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_attribute_list_dup(const struct GNUNET_RECLAIM_AttributeList *al) -/home/william/Git/gnunet/src/reclaim/reclaim_attribute.c:423: warning: The following parameter of GNUNET_RECLAIM_attribute_list_dup(const struct GNUNET_RECLAIM_AttributeList *al) is not documented: - parameter 'al' -/home/william/Git/gnunet/src/reclaim/reclaim_attribute.c:454: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_attribute_list_destroy(struct GNUNET_RECLAIM_AttributeList *al) -/home/william/Git/gnunet/src/reclaim/reclaim_attribute.c:460: warning: The following parameter of GNUNET_RECLAIM_attribute_list_destroy(struct GNUNET_RECLAIM_AttributeList *al) is not documented: - parameter 'al' -/home/william/Git/gnunet/src/reclaim/reclaim_attribute.c:539: warning: The following parameter of GNUNET_RECLAIM_attribute_deserialize(const char *data, size_t data_size, struct GNUNET_RECLAIM_Attribute **attr) is not documented: - parameter 'attr' -/home/william/Git/gnunet/src/reclaim/reclaim_credential.c:290: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_credential_list_serialize_get_size(const struct GNUNET_RECLAIM_CredentialList *credentials) -/home/william/Git/gnunet/src/reclaim/reclaim_credential.c:297: warning: The following parameter of GNUNET_RECLAIM_credential_list_serialize_get_size(const struct GNUNET_RECLAIM_CredentialList *credentials) is not documented: - parameter 'credentials' -/home/william/Git/gnunet/src/reclaim/reclaim_credential.c:313: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_credential_list_serialize(const struct GNUNET_RECLAIM_CredentialList *credentials, char *result) -/home/william/Git/gnunet/src/reclaim/reclaim_credential.c:321: warning: The following parameter of GNUNET_RECLAIM_credential_list_serialize(const struct GNUNET_RECLAIM_CredentialList *credentials, char *result) is not documented: - parameter 'credentials' -/home/william/Git/gnunet/src/reclaim/reclaim_credential.c:386: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_credential_list_dup(const struct GNUNET_RECLAIM_CredentialList *al) -/home/william/Git/gnunet/src/reclaim/reclaim_credential.c:392: warning: The following parameter of GNUNET_RECLAIM_credential_list_dup(const struct GNUNET_RECLAIM_CredentialList *al) is not documented: - parameter 'al' -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:526: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_credential_list_destroy(struct GNUNET_RECLAIM_CredentialList *al) -/home/william/Git/gnunet/src/reclaim/reclaim_credential.c:424: warning: The following parameter of GNUNET_RECLAIM_credential_list_destroy(struct GNUNET_RECLAIM_CredentialList *al) is not documented: - parameter 'al' -/home/william/Git/gnunet/src/reclaim/reclaim_credential.c:442: warning: argument 'attr' of command @param is not found in the argument list of GNUNET_RECLAIM_credential_serialize_get_size(const struct GNUNET_RECLAIM_Credential *credential) -/home/william/Git/gnunet/src/reclaim/reclaim_credential.c:449: warning: The following parameter of GNUNET_RECLAIM_credential_serialize_get_size(const struct GNUNET_RECLAIM_Credential *credential) is not documented: - parameter 'credential' -/home/william/Git/gnunet/src/reclaim/reclaim_credential.c:457: warning: argument 'attr' of command @param is not found in the argument list of GNUNET_RECLAIM_credential_serialize(const struct GNUNET_RECLAIM_Credential *credential, char *result) -/home/william/Git/gnunet/src/reclaim/reclaim_credential.c:465: warning: The following parameter of GNUNET_RECLAIM_credential_serialize(const struct GNUNET_RECLAIM_Credential *credential, char *result) is not documented: - parameter 'credential' -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:674: warning: argument 'typename' of command @param is not found in the argument list of GNUNET_RECLAIM_credential_get_attributes(const struct GNUNET_RECLAIM_Credential *cred) -/home/william/Git/gnunet/src/reclaim/reclaim_credential.c:545: warning: The following parameter of GNUNET_RECLAIM_credential_get_attributes(const struct GNUNET_RECLAIM_Credential *cred) is not documented: - parameter 'cred' -/home/william/Git/gnunet/src/reclaim/reclaim_credential.c:739: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_presentation_list_serialize_get_size(const struct GNUNET_RECLAIM_PresentationList *presentations) -/home/william/Git/gnunet/src/reclaim/reclaim_credential.c:746: warning: The following parameter of GNUNET_RECLAIM_presentation_list_serialize_get_size(const struct GNUNET_RECLAIM_PresentationList *presentations) is not documented: - parameter 'presentations' -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:714: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_presentation_list_serialize(const struct GNUNET_RECLAIM_PresentationList *presentations, char *result) -/home/william/Git/gnunet/src/reclaim/reclaim_credential.c:769: warning: The following parameter of GNUNET_RECLAIM_presentation_list_serialize(const struct GNUNET_RECLAIM_PresentationList *presentations, char *result) is not documented: - parameter 'presentations' -/home/william/Git/gnunet/src/reclaim/reclaim_credential.c:834: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_presentation_list_dup(const struct GNUNET_RECLAIM_PresentationList *al) -/home/william/Git/gnunet/src/reclaim/reclaim_credential.c:840: warning: The following parameter of GNUNET_RECLAIM_presentation_list_dup(const struct GNUNET_RECLAIM_PresentationList *al) is not documented: - parameter 'al' -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:704: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_presentation_list_destroy(struct GNUNET_RECLAIM_PresentationList *al) -/home/william/Git/gnunet/src/reclaim/reclaim_credential.c:871: warning: The following parameter of GNUNET_RECLAIM_presentation_list_destroy(struct GNUNET_RECLAIM_PresentationList *al) is not documented: - parameter 'al' -/home/william/Git/gnunet/src/reclaim/reclaim_credential.c:889: warning: argument 'attr' of command @param is not found in the argument list of GNUNET_RECLAIM_presentation_serialize_get_size(const struct GNUNET_RECLAIM_Presentation *presentation) -/home/william/Git/gnunet/src/reclaim/reclaim_credential.c:896: warning: The following parameter of GNUNET_RECLAIM_presentation_serialize_get_size(const struct GNUNET_RECLAIM_Presentation *presentation) is not documented: - parameter 'presentation' -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:748: warning: argument 'attr' of command @param is not found in the argument list of GNUNET_RECLAIM_presentation_serialize(const struct GNUNET_RECLAIM_Presentation *presentation, char *result) -/home/william/Git/gnunet/src/reclaim/reclaim_credential.c:911: warning: The following parameter of GNUNET_RECLAIM_presentation_serialize(const struct GNUNET_RECLAIM_Presentation *presentation, char *result) is not documented: - parameter 'presentation' -/home/william/Git/gnunet/src/reclaim/reclaim_credential.c:1044: warning: The following parameter of GNUNET_RECLAIM_credential_get_presentation(const struct GNUNET_RECLAIM_Credential *cred, const struct GNUNET_RECLAIM_AttributeList *attrs, struct GNUNET_RECLAIM_Presentation **presentation) is not documented: - parameter 'presentation' -/home/william/Git/gnunet/src/regex/gnunet-regex-profiler.c:1037: warning: argument 'cls' from the argument list of dht_connect_cb has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/gnunet-regex-profiler.c:1037: warning: argument 'op' from the argument list of dht_connect_cb has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/gnunet-regex-profiler.c:1037: warning: argument 'ca_result' from the argument list of dht_connect_cb has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/gnunet-regex-profiler.c:1037: warning: argument 'emsg' from the argument list of dht_connect_cb has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/gnunet-regex-profiler.c:1072: warning: argument 'cls' from the argument list of dht_ca has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/gnunet-regex-profiler.c:1072: warning: argument 'cfg' from the argument list of dht_ca has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/gnunet-regex-profiler.c:1089: warning: argument 'cls' from the argument list of dht_da has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/gnunet-regex-profiler.c:1089: warning: argument 'op_result' from the argument list of dht_da has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/gnunet-regex-profiler.c:991: warning: argument 'cls' from the argument list of announce_next_regex has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/gnunet-regex-profiler.c:961: warning: argument 'tc' of command @param is not found in the argument list of do_announce(void *cls) -/home/william/Git/gnunet/src/regex/gnunet-service-regex.c:126: warning: Found unknown command '\am' -/home/william/Git/gnunet/src/regex/gnunet-service-regex.c:239: warning: argument 'message' of command @param is not found in the argument list of check_search(void *cls, const struct RegexSearchMessage *sm) -/home/william/Git/gnunet/src/regex/gnunet-service-regex.c:244: warning: The following parameter of check_search(void *cls, const struct RegexSearchMessage *sm) is not documented: - parameter 'sm' -/home/william/Git/gnunet/src/regex/gnunet-service-regex.c:270: warning: argument 'message' of command @param is not found in the argument list of handle_search(void *cls, const struct RegexSearchMessage *sm) -/home/william/Git/gnunet/src/regex/gnunet-service-regex.c:275: warning: The following parameter of handle_search(void *cls, const struct RegexSearchMessage *sm) is not documented: - parameter 'sm' -/home/william/Git/gnunet/src/regex/plugin_block_regex.c:49: warning: argument 'ctx' of command @param is not found in the argument list of block_plugin_regex_create_group(void *cls, enum GNUNET_BLOCK_Type type, uint32_t nonce, const void *raw_data, size_t raw_data_size, va_list va) -/home/william/Git/gnunet/src/regex/plugin_block_regex.c:60: warning: The following parameter of block_plugin_regex_create_group(void *cls, enum GNUNET_BLOCK_Type type, uint32_t nonce, const void *raw_data, size_t raw_data_size, va_list va) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/regex/plugin_block_regex.c:97: warning: argument 'ctx' of command @param is not found in the argument list of block_plugin_regex_check_query(void *cls, enum GNUNET_BLOCK_Type type, const struct GNUNET_HashCode *query, const void *xquery, size_t xquery_size) -/home/william/Git/gnunet/src/regex/regex_block_lib.h:76: warning: argument 'proof' from the argument list of REGEX_BLOCK_check_proof has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_block_lib.h:76: warning: argument 'proof_len' from the argument list of REGEX_BLOCK_check_proof has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_block_lib.h:76: warning: argument 'key' from the argument list of REGEX_BLOCK_check_proof has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_block_lib.h:94: warning: argument 'block' from the argument list of REGEX_BLOCK_check has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_block_lib.h:94: warning: argument 'size' from the argument list of REGEX_BLOCK_check has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_block_lib.h:94: warning: argument 'query' from the argument list of REGEX_BLOCK_check has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_block_lib.h:94: warning: argument 'xquery' from the argument list of REGEX_BLOCK_check has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_block_lib.h:134: warning: argument 'block' from the argument list of REGEX_BLOCK_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_block_lib.h:134: warning: argument 'size' from the argument list of REGEX_BLOCK_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_block_lib.h:134: warning: argument 'iterator' from the argument list of REGEX_BLOCK_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_block_lib.h:134: warning: argument 'iter_cls' from the argument list of REGEX_BLOCK_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_block_lib.h:149: warning: argument 'block' from the argument list of REGEX_BLOCK_get_key has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_block_lib.h:149: warning: argument 'block_len' from the argument list of REGEX_BLOCK_get_key has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_block_lib.h:149: warning: argument 'key' from the argument list of REGEX_BLOCK_get_key has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_internal.h:328: warning: argument 'regex' from the argument list of REGEX_INTERNAL_construct_nfa has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_internal.h:328: warning: argument 'len' from the argument list of REGEX_INTERNAL_construct_nfa has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_internal.h:376: warning: argument 'a' from the argument list of REGEX_INTERNAL_automaton_traverse has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_internal.h:376: warning: argument 'start' from the argument list of REGEX_INTERNAL_automaton_traverse has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_internal.h:376: warning: argument 'check' from the argument list of REGEX_INTERNAL_automaton_traverse has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_internal.h:376: warning: argument 'check_cls' from the argument list of REGEX_INTERNAL_automaton_traverse has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_internal.h:376: warning: argument 'action' from the argument list of REGEX_INTERNAL_automaton_traverse has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_internal.h:376: warning: argument 'action_cls' from the argument list of REGEX_INTERNAL_automaton_traverse has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_internal.h:395: warning: argument 'a' from the argument list of REGEX_INTERNAL_get_canonical_regex has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_internal_lib.h:67: warning: argument 'regex' from the argument list of REGEX_INTERNAL_construct_dfa has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_internal_lib.h:67: warning: argument 'len' from the argument list of REGEX_INTERNAL_construct_dfa has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_internal_lib.h:67: warning: argument 'max_path_len' from the argument list of REGEX_INTERNAL_construct_dfa has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_internal_lib.h:79: warning: argument 'a' from the argument list of REGEX_INTERNAL_automaton_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_internal_lib.h:91: warning: argument 'a' from the argument list of REGEX_INTERNAL_eval has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_internal_lib.h:91: warning: argument 'string' from the argument list of REGEX_INTERNAL_eval has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_internal_lib.h:155: warning: argument 'a' from the argument list of REGEX_INTERNAL_iterate_reachable_edges has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_internal_lib.h:155: warning: argument 'iterator' from the argument list of REGEX_INTERNAL_iterate_reachable_edges has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_internal_lib.h:155: warning: argument 'iterator_cls' from the argument list of REGEX_INTERNAL_iterate_reachable_edges has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_internal_lib.h:198: warning: argument 'h' from the argument list of REGEX_INTERNAL_reannounce has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_internal_lib.h:257: warning: argument 'h' from the argument list of REGEX_INTERNAL_search_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_test_lib.h:96: warning: argument 'rx_length' from the argument list of REGEX_TEST_generate_random_regex has multiple @param documentation sections -/home/william/Git/gnunet/src/regex/regex_test_lib.h:96: warning: argument 'matching_str' from the argument list of REGEX_TEST_generate_random_regex has multiple @param documentation sections -/home/william/Git/gnunet/src/rest/gnunet-rest-server.c:255: warning: argument 'data' of command @param is not found in the argument list of plugin_callback(void *cls, struct MHD_Response *resp, int status) -/home/william/Git/gnunet/src/rest/gnunet-rest-server.c:255: warning: argument 'len' of command @param is not found in the argument list of plugin_callback(void *cls, struct MHD_Response *resp, int status) -/home/william/Git/gnunet/src/rest/gnunet-rest-server.c:264: warning: The following parameter of plugin_callback(void *cls, struct MHD_Response *resp, int status) is not documented: - parameter 'resp' -/home/william/Git/gnunet/src/rest/gnunet-rest-server.c:450: warning: explicit link request to 'MHD_YES' could not be resolved -/home/william/Git/gnunet/src/rest/gnunet-rest-server.c:451: warning: explicit link request to 'MHD_NO' could not be resolved -/home/william/Git/gnunet/src/rest/gnunet-rest-server.c:787: warning: argument 'toe' of command @param is not found in the argument list of mhd_connection_cb(void *cls, struct MHD_Connection *connection, void **con_cls, enum MHD_ConnectionNotificationCode cnc) -/home/william/Git/gnunet/src/rest/gnunet-rest-server.c:795: warning: The following parameter of mhd_connection_cb(void *cls, struct MHD_Connection *connection, void **con_cls, enum MHD_ConnectionNotificationCode cnc) is not documented: - parameter 'cnc' -/home/william/Git/gnunet/src/rest/gnunet-rest-server.c:863: warning: argument 'tc' of command @param is not found in the argument list of do_accept(void *cls) -/home/william/Git/gnunet/src/rest/plugin_rest_config.c:112: warning: argument 'tc' of command @param is not found in the argument list of do_error(void *cls) -/home/william/Git/gnunet/src/rest/plugin_rest_config.c:163: warning: argument 'handle' of command @param is not found in the argument list of get_cont(struct GNUNET_REST_RequestHandle *con_handle, const char *url, void *cls) -/home/william/Git/gnunet/src/rest/plugin_rest_config.c:169: warning: The following parameters of get_cont(struct GNUNET_REST_RequestHandle *con_handle, const char *url, void *cls) are not documented: - parameter 'con_handle' - parameter 'url' - parameter 'cls' -/home/william/Git/gnunet/src/rest/plugin_rest_config.c:235: warning: argument 'handle' of command @param is not found in the argument list of set_cont(struct GNUNET_REST_RequestHandle *con_handle, const char *url, void *cls) -/home/william/Git/gnunet/src/rest/plugin_rest_config.c:241: warning: The following parameters of set_cont(struct GNUNET_REST_RequestHandle *con_handle, const char *url, void *cls) are not documented: - parameter 'con_handle' - parameter 'url' - parameter 'cls' -/home/william/Git/gnunet/src/rest/plugin_rest_config.c:343: warning: argument 'handle' of command @param is not found in the argument list of options_cont(struct GNUNET_REST_RequestHandle *con_handle, const char *url, void *cls) -/home/william/Git/gnunet/src/rest/plugin_rest_config.c:349: warning: The following parameters of options_cont(struct GNUNET_REST_RequestHandle *con_handle, const char *url, void *cls) are not documented: - parameter 'con_handle' - parameter 'url' - parameter 'cls' -/home/william/Git/gnunet/src/rest/plugin_rest_config.c:365: warning: argument 'method' of command @param is not found in the argument list of rest_config_process_request(struct GNUNET_REST_RequestHandle *conndata_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/rest/plugin_rest_config.c:365: warning: argument 'url' of command @param is not found in the argument list of rest_config_process_request(struct GNUNET_REST_RequestHandle *conndata_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/rest/plugin_rest_config.c:365: warning: argument 'data' of command @param is not found in the argument list of rest_config_process_request(struct GNUNET_REST_RequestHandle *conndata_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/rest/plugin_rest_config.c:365: warning: argument 'data_size' of command @param is not found in the argument list of rest_config_process_request(struct GNUNET_REST_RequestHandle *conndata_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/rest/plugin_rest_config.c:349: warning: The following parameter of rest_config_process_request(struct GNUNET_REST_RequestHandle *conndata_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) is not documented: - parameter 'conndata_handle' -/home/william/Git/gnunet/src/rest/plugin_rest_copying.c:106: warning: argument 'handle' of command @param is not found in the argument list of get_cont(struct GNUNET_REST_RequestHandle *con_handle, const char *url, void *cls) -/home/william/Git/gnunet/src/rest/plugin_rest_copying.c:112: warning: The following parameters of get_cont(struct GNUNET_REST_RequestHandle *con_handle, const char *url, void *cls) are not documented: - parameter 'con_handle' - parameter 'url' - parameter 'cls' -/home/william/Git/gnunet/src/rest/plugin_rest_copying.c:127: warning: argument 'handle' of command @param is not found in the argument list of options_cont(struct GNUNET_REST_RequestHandle *con_handle, const char *url, void *cls) -/home/william/Git/gnunet/src/rest/plugin_rest_copying.c:133: warning: The following parameters of options_cont(struct GNUNET_REST_RequestHandle *con_handle, const char *url, void *cls) are not documented: - parameter 'con_handle' - parameter 'url' - parameter 'cls' -/home/william/Git/gnunet/src/rest/plugin_rest_copying.c:151: warning: argument 'method' of command @param is not found in the argument list of rest_copying_process_request(struct GNUNET_REST_RequestHandle *conndata_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/rest/plugin_rest_copying.c:151: warning: argument 'url' of command @param is not found in the argument list of rest_copying_process_request(struct GNUNET_REST_RequestHandle *conndata_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/rest/plugin_rest_copying.c:151: warning: argument 'data' of command @param is not found in the argument list of rest_copying_process_request(struct GNUNET_REST_RequestHandle *conndata_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/rest/plugin_rest_copying.c:151: warning: argument 'data_size' of command @param is not found in the argument list of rest_copying_process_request(struct GNUNET_REST_RequestHandle *conndata_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) -/home/william/Git/gnunet/src/rest/plugin_rest_copying.c:133: warning: The following parameter of rest_copying_process_request(struct GNUNET_REST_RequestHandle *conndata_handle, GNUNET_REST_ResultProcessor proc, void *proc_cls) is not documented: - parameter 'conndata_handle' -/home/william/Git/gnunet/src/revocation/gnunet-service-revocation.c:481: warning: explicit link request to 'GNUNET_SETU_STATUS_OK' could not be resolved -/home/william/Git/gnunet/src/revocation/gnunet-service-revocation.c:587: warning: The following parameter of handle_core_connect(void *cls, const struct GNUNET_PeerIdentity *peer, struct GNUNET_MQ_Handle *mq) is not documented: - parameter 'mq' -/home/william/Git/gnunet/src/revocation/gnunet-service-revocation.c:829: warning: argument 'server' of command @param is not found in the argument list of run(void *cls, const struct GNUNET_CONFIGURATION_Handle *c, struct GNUNET_SERVICE_Handle *service) -/home/william/Git/gnunet/src/revocation/gnunet-service-revocation.c:835: warning: The following parameter of run(void *cls, const struct GNUNET_CONFIGURATION_Handle *c, struct GNUNET_SERVICE_Handle *service) is not documented: - parameter 'service' -/home/william/Git/gnunet/src/revocation/plugin_block_revocation.c:48: warning: argument 'ctx' of command @param is not found in the argument list of block_plugin_revocation_check_query(void *cls, enum GNUNET_BLOCK_Type type, const struct GNUNET_HashCode *query, const void *xquery, size_t xquery_size) -/home/william/Git/gnunet/src/revocation/revocation_api.c:286: warning: argument 'key' of command @param is not found in the argument list of GNUNET_REVOCATION_revoke(const struct GNUNET_CONFIGURATION_Handle *cfg, const struct GNUNET_REVOCATION_PowP *pow, GNUNET_REVOCATION_Callback func, void *func_cls) -/home/william/Git/gnunet/src/revocation/revocation_api.c:286: warning: argument 'sig' of command @param is not found in the argument list of GNUNET_REVOCATION_revoke(const struct GNUNET_CONFIGURATION_Handle *cfg, const struct GNUNET_REVOCATION_PowP *pow, GNUNET_REVOCATION_Callback func, void *func_cls) -/home/william/Git/gnunet/src/revocation/revocation_api.c:289: warning: explicit link request to 'GNUNET_REVOCATION_sign_revocation' could not be resolved -/home/william/Git/gnunet/src/revocation/revocation_api.c:286: warning: argument 'ts' of command @param is not found in the argument list of GNUNET_REVOCATION_revoke(const struct GNUNET_CONFIGURATION_Handle *cfg, const struct GNUNET_REVOCATION_PowP *pow, GNUNET_REVOCATION_Callback func, void *func_cls) -/home/william/Git/gnunet/src/revocation/revocation_api.c:461: warning: argument 'matching_bits' of command @param is not found in the argument list of GNUNET_REVOCATION_check_pow(const struct GNUNET_REVOCATION_PowP *pow, unsigned int difficulty, struct GNUNET_TIME_Relative epoch_duration) -/home/william/Git/gnunet/src/revocation/revocation_api.c:408: warning: The following parameter of GNUNET_REVOCATION_check_pow(const struct GNUNET_REVOCATION_PowP *pow, unsigned int difficulty, struct GNUNET_TIME_Relative epoch_duration) is not documented: - parameter 'difficulty' -/home/william/Git/gnunet/src/include/gnunet_revocation_service.h:240: warning: argument 'epochs' of command @param is not found in the argument list of GNUNET_REVOCATION_pow_round(struct GNUNET_REVOCATION_PowCalculationHandle *pc) -/home/william/Git/gnunet/src/include/gnunet_revocation_service.h:240: warning: argument 'pow' of command @param is not found in the argument list of GNUNET_REVOCATION_pow_round(struct GNUNET_REVOCATION_PowCalculationHandle *pc) -/home/william/Git/gnunet/src/include/gnunet_revocation_service.h:240: warning: argument 'difficulty' of command @param is not found in the argument list of GNUNET_REVOCATION_pow_round(struct GNUNET_REVOCATION_PowCalculationHandle *pc) -/home/william/Git/gnunet/src/revocation/revocation_api.c:749: warning: documented empty return type of GNUNET_REVOCATION_pow_stop -/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:680: warning: explicit link request to 'churn_test_cb' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:680: warning: explicit link request to 'mal_cb' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:680: warning: explicit link request to 'single_req_cb' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:681: warning: explicit link request to 'delay_req_cb' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:681: warning: explicit link request to 'seed_big_cb' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:681: warning: explicit link request to 'single_peer_seed_cb' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:681: warning: explicit link request to 'seed_cb' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:681: warning: explicit link request to 'req_cancel_cb' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:1999: warning: argument 'n' of command @param is not found in the argument list of profiler_reply_handle_info(void *cls, const struct GNUNET_PeerIdentity *recv_peer, double probability, uint32_t num_observed) -/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:1999: warning: argument 'recv_peers' of command @param is not found in the argument list of profiler_reply_handle_info(void *cls, const struct GNUNET_PeerIdentity *recv_peer, double probability, uint32_t num_observed) -/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:2007: warning: The following parameters of profiler_reply_handle_info(void *cls, const struct GNUNET_PeerIdentity *recv_peer, double probability, uint32_t num_observed) are not documented: - parameter 'recv_peer' - parameter 'probability' - parameter 'num_observed' -/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:2205: warning: argument 'uint32_tb' of command @param is not found in the argument list of count_containing_views(uint32_t a, uint32_t b) -/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:2214: warning: The following parameter of count_containing_views(uint32_t a, uint32_t b) is not documented: - parameter 'b' -/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:2985: warning: argument 'argc' of command @param is not found in the argument list of run(void *cls, char *const *args, const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg) -/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:2985: warning: argument 'argv' of command @param is not found in the argument list of run(void *cls, char *const *args, const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg) -/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:2990: warning: The following parameters of run(void *cls, char *const *args, const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg) are not documented: - parameter 'cls' - parameter 'args' - parameter 'cfgfile' - parameter 'cfg' -/home/william/Git/gnunet/src/rps/gnunet-rps.c:118: warning: The following parameter of view_update_handle(void *cls, uint64_t n, const struct GNUNET_PeerIdentity *recv_peers) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/rps/gnunet-rps.c:149: warning: argument 'n' of command @param is not found in the argument list of stream_input_handle(void *cls, uint64_t num_peers, const struct GNUNET_PeerIdentity *recv_peers) -/home/william/Git/gnunet/src/rps/gnunet-rps.c:156: warning: The following parameters of stream_input_handle(void *cls, uint64_t num_peers, const struct GNUNET_PeerIdentity *recv_peers) are not documented: - parameter 'cls' - parameter 'num_peers' -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:4275: warning: explicit link request to 'view' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:868: warning: explicit link request to 'valid_peers' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:1191: warning: argument 'cls' of command @param is not found in the argument list of destroy_channel(struct ChannelCtx *channel_ctx) -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:1197: warning: The following parameter of destroy_channel(struct ChannelCtx *channel_ctx) is not documented: - parameter 'channel_ctx' -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:1469: warning: explicit link request to 'valid_peers' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:1572: warning: explicit link request to 'valid_peers' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:1639: warning: explicit link request to 'initialise_peers' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:1665: warning: explicit link request to 'valid_peers' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:2197: warning: explicit link request to 'view' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:2210: warning: explicit link request to 'view' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:2292: warning: argument 'view_array' of command @param is not found in the argument list of send_stream_peers(const struct ClientContext *cli_ctx, uint64_t num_peers, const struct GNUNET_PeerIdentity *peers) -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:2292: warning: argument 'view_size' of command @param is not found in the argument list of send_stream_peers(const struct ClientContext *cli_ctx, uint64_t num_peers, const struct GNUNET_PeerIdentity *peers) -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:2300: warning: The following parameters of send_stream_peers(const struct ClientContext *cli_ctx, uint64_t num_peers, const struct GNUNET_PeerIdentity *peers) are not documented: - parameter 'num_peers' - parameter 'peers' -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:2377: warning: The following parameter of clients_notify_stream_peer(const struct Sub *sub, uint64_t num_peers, const struct GNUNET_PeerIdentity *peers) is not documented: - parameter 'sub' -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:2566: warning: explicit link request to 'pull_map' could not be resolved -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:3145: warning: The following parameter of core_connects(void *cls, const struct GNUNET_PeerIdentity *peer, struct GNUNET_MQ_Handle *mq) is not documented: - parameter 'mq' -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:3325: warning: argument 'message' of command @param is not found in the argument list of handle_client_seed(void *cls, const struct GNUNET_RPS_CS_SeedMessage *msg) -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:3330: warning: The following parameter of handle_client_seed(void *cls, const struct GNUNET_RPS_CS_SeedMessage *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:3363: warning: argument 'message' of command @param is not found in the argument list of handle_client_view_request(void *cls, const struct GNUNET_RPS_CS_DEBUG_ViewRequest *msg) -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:3369: warning: The following parameter of handle_client_view_request(void *cls, const struct GNUNET_RPS_CS_DEBUG_ViewRequest *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:3417: warning: argument 'message' of command @param is not found in the argument list of handle_client_stream_request(void *cls, const struct GNUNET_RPS_CS_DEBUG_StreamRequest *msg) -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:3422: warning: The following parameter of handle_client_stream_request(void *cls, const struct GNUNET_RPS_CS_DEBUG_StreamRequest *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:4690: warning: argument 'error' of command @param is not found in the argument list of process_peerinfo_peers(void *cls, const struct GNUNET_PeerIdentity *peer, const struct GNUNET_HELLO_Message *hello, const char *err_msg) -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:4697: warning: The following parameter of process_peerinfo_peers(void *cls, const struct GNUNET_PeerIdentity *peer, const struct GNUNET_HELLO_Message *hello, const char *err_msg) is not documented: - parameter 'err_msg' -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:4822: warning: argument 'c' of command @param is not found in the argument list of client_disconnect_cb(void *cls, struct GNUNET_SERVICE_Client *client, void *internal_cls) -/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:4830: warning: The following parameter of client_disconnect_cb(void *cls, struct GNUNET_SERVICE_Client *client, void *internal_cls) is not documented: - parameter 'client' -/home/william/Git/gnunet/src/rps/gnunet-service-rps_custommap.c:323: warning: documented empty return type of CustomPeerMap_clear -/home/william/Git/gnunet/src/rps/gnunet-service-rps_custommap.h:149: warning: documented empty return type of CustomPeerMap_clear -/home/william/Git/gnunet/src/rps/gnunet-service-rps_sampler.h:61: warning: argument 'sampler' from the argument list of RPS_sampler_resize has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/gnunet-service-rps_sampler.h:61: warning: argument 'new_size' from the argument list of RPS_sampler_resize has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/gnunet-service-rps_sampler.h:72: warning: argument 'init_size' from the argument list of RPS_sampler_init has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/gnunet-service-rps_sampler.h:72: warning: argument 'max_round_interval' from the argument list of RPS_sampler_init has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/gnunet-service-rps_sampler.h:103: warning: argument 'sampler' from the argument list of RPS_sampler_reinitialise_by_value has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/gnunet-service-rps_sampler.h:103: warning: argument 'id' from the argument list of RPS_sampler_reinitialise_by_value has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/rps-sampler_common.c:560: warning: argument 'for_client' of command @param is not found in the argument list of RPS_sampler_get_n_rand_peers(struct RPS_Sampler *sampler, uint32_t num_peers, RPS_sampler_n_rand_peers_ready_cb cb, void *cls) -/home/william/Git/gnunet/src/rps/gnunet-service-rps_sampler.h:122: warning: argument 'sampler' from the argument list of RPS_sampler_get_n_rand_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/gnunet-service-rps_sampler.h:122: warning: argument 'num_peers' from the argument list of RPS_sampler_get_n_rand_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/gnunet-service-rps_sampler.h:122: warning: argument 'cb' from the argument list of RPS_sampler_get_n_rand_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/gnunet-service-rps_sampler.h:122: warning: argument 'cls' from the argument list of RPS_sampler_get_n_rand_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/gnunet-service-rps_sampler_elem.c:46: warning: argument 'sampler_el' of command @param is not found in the argument list of RPS_sampler_elem_reinit(struct RPS_SamplerElement *sampler_elem) -/home/william/Git/gnunet/src/rps/gnunet-service-rps_sampler_elem.c:50: warning: The following parameter of RPS_sampler_elem_reinit(struct RPS_SamplerElement *sampler_elem) is not documented: - parameter 'sampler_elem' -/home/william/Git/gnunet/src/rps/gnunet-service-rps_sampler_elem.h:103: warning: argument 'sampler_el' of command @param is not found in the argument list of RPS_sampler_elem_reinit(struct RPS_SamplerElement *sampler_elem) -/home/william/Git/gnunet/src/rps/gnunet-service-rps_sampler_elem.h:107: warning: The following parameter of RPS_sampler_elem_reinit(struct RPS_SamplerElement *sampler_elem) is not documented: - parameter 'sampler_elem' -/home/william/Git/gnunet/src/rps/rps-sampler_client.h:66: warning: argument 'sampler' from the argument list of RPS_sampler_resize has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/rps-sampler_client.h:66: warning: argument 'new_size' from the argument list of RPS_sampler_resize has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/rps-sampler_client.h:102: warning: argument 'sampler' from the argument list of RPS_sampler_reinitialise_by_value has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/rps-sampler_client.h:102: warning: argument 'id' from the argument list of RPS_sampler_reinitialise_by_value has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/rps-sampler_common.c:196: warning: argument 'desired_probability' of command @param is not found in the argument list of RPS_sampler_set_deficiency_factor(struct RPS_Sampler *sampler, double deficiency_factor) -/home/william/Git/gnunet/src/rps/rps-sampler_common.c:204: warning: The following parameter of RPS_sampler_set_deficiency_factor(struct RPS_Sampler *sampler, double deficiency_factor) is not documented: - parameter 'deficiency_factor' -/home/william/Git/gnunet/src/rps/rps-sampler_common.c:441: warning: argument 'new_size' of command @param is not found in the argument list of sampler_empty(struct RPS_Sampler *sampler) -/home/william/Git/gnunet/src/rps/rps-sampler_common.h:374: warning: argument 'req_handle' of command @param is not found in the argument list of RPS_sampler_request_single_info_cancel(struct RPS_SamplerRequestHandleSingleInfo *req_single_info_handle) -/home/william/Git/gnunet/src/rps/rps-sampler_common.c:707: warning: The following parameter of RPS_sampler_request_single_info_cancel(struct RPS_SamplerRequestHandleSingleInfo *req_single_info_handle) is not documented: - parameter 'req_single_info_handle' -/home/william/Git/gnunet/src/rps/rps-sampler_common.h:225: warning: argument 'sampler' from the argument list of RPS_sampler_update_with_nw_size has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/rps-sampler_common.h:225: warning: argument 'num_peers' from the argument list of RPS_sampler_update_with_nw_size has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/rps-sampler_common.h:246: warning: argument 'desired_probability' of command @param is not found in the argument list of RPS_sampler_set_deficiency_factor(struct RPS_Sampler *sampler, double deficiency_factor) -/home/william/Git/gnunet/src/rps/rps-sampler_common.h:254: warning: The following parameter of RPS_sampler_set_deficiency_factor(struct RPS_Sampler *sampler, double deficiency_factor) is not documented: - parameter 'deficiency_factor' -/home/william/Git/gnunet/src/rps/rps-sampler_common.h:294: warning: argument 'sampler' from the argument list of RPS_sampler_reinitialise_by_value has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/rps-sampler_common.h:294: warning: argument 'id' from the argument list of RPS_sampler_reinitialise_by_value has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/rps-sampler_common.c:560: warning: argument 'for_client' of command @param is not found in the argument list of RPS_sampler_get_n_rand_peers(struct RPS_Sampler *sampler, uint32_t num_peers, RPS_sampler_n_rand_peers_ready_cb cb, void *cls) -/home/william/Git/gnunet/src/rps/rps-sampler_common.h:333: warning: argument 'sampler' from the argument list of RPS_sampler_get_n_rand_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/rps-sampler_common.h:333: warning: argument 'num_peers' from the argument list of RPS_sampler_get_n_rand_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/rps-sampler_common.h:333: warning: argument 'cb' from the argument list of RPS_sampler_get_n_rand_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/rps-sampler_common.h:333: warning: argument 'cls' from the argument list of RPS_sampler_get_n_rand_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/rps-sampler_common.h:374: warning: argument 'req_handle' of command @param is not found in the argument list of RPS_sampler_request_single_info_cancel(struct RPS_SamplerRequestHandleSingleInfo *req_single_info_handle) -/home/william/Git/gnunet/src/rps/rps-sampler_common.h:374: warning: argument 'req_handle' of command @param is not found in the argument list of RPS_sampler_request_single_info_cancel(struct RPS_SamplerRequestHandleSingleInfo *req_single_info_handle) -/home/william/Git/gnunet/src/rps/rps-sampler_common.h:380: warning: The following parameter of RPS_sampler_request_single_info_cancel(struct RPS_SamplerRequestHandleSingleInfo *req_single_info_handle) is not documented: - parameter 'req_single_info_handle' -/home/william/Git/gnunet/src/rps/rps-test_util.c:115: warning: explicit link request to 'GNUNET_CONTAINER_HashMapIterator' could not be resolved -/home/william/Git/gnunet/src/rps/rps_api.c:293: warning: argument 'num_peers' of command @param is not found in the argument list of new_stream_request(struct GNUNET_RPS_Handle *rps_handle, GNUNET_RPS_NotifyReadyCB ready_cb, void *cls) -/home/william/Git/gnunet/src/rps/rps_api.c:371: warning: argument 'num_peers' of command @param is not found in the argument list of peer_info_ready_cb(const struct GNUNET_PeerIdentity *peers, void *cls, double probability, uint32_t num_observed) -/home/william/Git/gnunet/src/rps/rps_api.c:451: warning: argument 'num_req_peers' of command @param is not found in the argument list of GNUNET_RPS_view_request(struct GNUNET_RPS_Handle *rps_handle, uint32_t num_updates, GNUNET_RPS_NotifyReadyCB view_update_cb, void *cls) -/home/william/Git/gnunet/src/rps/rps_api.c:451: warning: argument 'ready_cb' of command @param is not found in the argument list of GNUNET_RPS_view_request(struct GNUNET_RPS_Handle *rps_handle, uint32_t num_updates, GNUNET_RPS_NotifyReadyCB view_update_cb, void *cls) -/home/william/Git/gnunet/src/rps/rps_api.c:461: warning: The following parameters of GNUNET_RPS_view_request(struct GNUNET_RPS_Handle *rps_handle, uint32_t num_updates, GNUNET_RPS_NotifyReadyCB view_update_cb, void *cls) are not documented: - parameter 'num_updates' - parameter 'view_update_cb' -/home/william/Git/gnunet/src/rps/rps_api.c:495: warning: argument 'ready_cb' of command @param is not found in the argument list of GNUNET_RPS_stream_request(struct GNUNET_RPS_Handle *rps_handle, GNUNET_RPS_NotifyReadyCB stream_input_cb, void *cls) -/home/william/Git/gnunet/src/rps/rps_api.c:503: warning: The following parameter of GNUNET_RPS_stream_request(struct GNUNET_RPS_Handle *rps_handle, GNUNET_RPS_NotifyReadyCB stream_input_cb, void *cls) is not documented: - parameter 'stream_input_cb' -/home/william/Git/gnunet/src/rps/rps_api.c:558: warning: The following parameter of handle_view_update(void *cls, const struct GNUNET_RPS_CS_DEBUG_ViewReply *msg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/rps/rps_api.c:620: warning: The following parameter of check_stream_input(void *cls, const struct GNUNET_RPS_CS_DEBUG_StreamReply *msg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/rps/rps_api.c:665: warning: The following parameter of handle_stream_input(void *cls, const struct GNUNET_RPS_CS_DEBUG_StreamReply *msg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/rps/rps_api.c:743: warning: argument 'out' of command @param is not found in the argument list of hash_from_share_val(const char *share_val, struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/scalarproduct/gnunet-scalarproduct.c:191: warning: argument 'tc' of command @param is not found in the argument list of shutdown_task(void *cls) -/home/william/Git/gnunet/src/scalarproduct/gnunet-service-scalarproduct-ecc_alice.c:639: warning: explicit link request to 'GNUNET_SETI_STATUS_OK' could not be resolved -/home/william/Git/gnunet/src/scalarproduct/gnunet-service-scalarproduct-ecc_alice.c:763: warning: argument 'session' of command @param is not found in the argument list of client_request_complete_alice(struct AliceServiceSession *s) -/home/william/Git/gnunet/src/scalarproduct/gnunet-service-scalarproduct-ecc_alice.c:767: warning: The following parameter of client_request_complete_alice(struct AliceServiceSession *s) is not documented: - parameter 's' -/home/william/Git/gnunet/src/scalarproduct/gnunet-service-scalarproduct-ecc_alice.c:1023: warning: argument 'tc' of command @param is not found in the argument list of shutdown_task(void *cls) -/home/william/Git/gnunet/src/scalarproduct/gnunet-service-scalarproduct-ecc_bob.c:210: warning: argument 'session' of command @param is not found in the argument list of destroy_service_session(struct BobServiceSession *s) -/home/william/Git/gnunet/src/scalarproduct/gnunet-service-scalarproduct-ecc_bob.c:214: warning: The following parameter of destroy_service_session(struct BobServiceSession *s) is not documented: - parameter 's' -/home/william/Git/gnunet/src/scalarproduct/gnunet-service-scalarproduct-ecc_bob.c:292: warning: argument 'channel_ctx' of command @param is not found in the argument list of cb_channel_destruction(void *cls, const struct GNUNET_CADET_Channel *channel) -/home/william/Git/gnunet/src/scalarproduct/gnunet-service-scalarproduct-ecc_bob.c:553: warning: explicit link request to 'GNUNET_SETI_STATUS_OK' could not be resolved -/home/william/Git/gnunet/src/scalarproduct/gnunet-service-scalarproduct_alice.c:672: warning: argument 'message' of command @param is not found in the argument list of check_bobs_cryptodata_message(void *cls, const struct BobCryptodataMessage *msg) -/home/william/Git/gnunet/src/scalarproduct/gnunet-service-scalarproduct_alice.c:680: warning: The following parameter of check_bobs_cryptodata_message(void *cls, const struct BobCryptodataMessage *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/scalarproduct/gnunet-service-scalarproduct_alice.c:896: warning: explicit link request to 'GNUNET_SETI_STATUS_OK' could not be resolved -/home/william/Git/gnunet/src/scalarproduct/gnunet-service-scalarproduct_alice.c:1015: warning: argument 'session' of command @param is not found in the argument list of client_request_complete_alice(struct AliceServiceSession *s) -/home/william/Git/gnunet/src/scalarproduct/gnunet-service-scalarproduct_alice.c:1019: warning: The following parameter of client_request_complete_alice(struct AliceServiceSession *s) is not documented: - parameter 's' -/home/william/Git/gnunet/src/scalarproduct/gnunet-service-scalarproduct_bob.c:252: warning: argument 'session' of command @param is not found in the argument list of destroy_service_session(struct BobServiceSession *s) -/home/william/Git/gnunet/src/scalarproduct/gnunet-service-scalarproduct_bob.c:256: warning: The following parameter of destroy_service_session(struct BobServiceSession *s) is not documented: - parameter 's' -/home/william/Git/gnunet/src/scalarproduct/gnunet-service-scalarproduct_bob.c:559: warning: argument 'request' of command @param is not found in the argument list of compute_service_response(struct BobServiceSession *session) -/home/william/Git/gnunet/src/scalarproduct/gnunet-service-scalarproduct_bob.c:570: warning: The following parameter of compute_service_response(struct BobServiceSession *session) is not documented: - parameter 'session' -/home/william/Git/gnunet/src/scalarproduct/gnunet-service-scalarproduct_bob.c:890: warning: explicit link request to 'GNUNET_SETI_STATUS_OK' could not be resolved -/home/william/Git/gnunet/src/scalarproduct/scalarproduct_api.c:137: warning: argument 'msg' of command @param is not found in the argument list of handle_response(void *cls, const struct ClientResponseMessage *message) -/home/william/Git/gnunet/src/scalarproduct/scalarproduct_api.c:146: warning: The following parameter of handle_response(void *cls, const struct ClientResponseMessage *message) is not documented: - parameter 'message' -/home/william/Git/gnunet/src/scalarproduct/scalarproduct_api.c:213: warning: argument 'key' of command @param is not found in the argument list of GNUNET_SCALARPRODUCT_accept_computation(const struct GNUNET_CONFIGURATION_Handle *cfg, const struct GNUNET_HashCode *session_key, const struct GNUNET_SCALARPRODUCT_Element *elements, uint32_t element_count, GNUNET_SCALARPRODUCT_ContinuationWithStatus cont, void *cont_cls) -/home/william/Git/gnunet/src/scalarproduct/scalarproduct_api.c:225: warning: The following parameter of GNUNET_SCALARPRODUCT_accept_computation(const struct GNUNET_CONFIGURATION_Handle *cfg, const struct GNUNET_HashCode *session_key, const struct GNUNET_SCALARPRODUCT_Element *elements, uint32_t element_count, GNUNET_SCALARPRODUCT_ContinuationWithStatus cont, void *cont_cls) is not documented: - parameter 'session_key' -/home/william/Git/gnunet/src/secretsharing/gnunet-service-secretsharing.c:654: warning: argument 'tc' of command @param is not found in the argument list of cleanup_task(void *cls) -/home/william/Git/gnunet/src/secretsharing/gnunet-service-secretsharing.c:1133: warning: The following parameter of encrypt_fair(gcry_mpi_t v, const struct GNUNET_CRYPTO_PaillierPublicKey *ppub, struct GNUNET_SECRETSHARING_FairEncryption *fe) is not documented: - parameter 'ppub' -/home/william/Git/gnunet/src/secretsharing/secretsharing_api.c:333: warning: The following parameters of GNUNET_SECRETSHARING_decrypt(const struct GNUNET_CONFIGURATION_Handle *cfg, struct GNUNET_SECRETSHARING_Share *share, const struct GNUNET_SECRETSHARING_Ciphertext *ciphertext, struct GNUNET_TIME_Absolute start, struct GNUNET_TIME_Absolute deadline, GNUNET_SECRETSHARING_DecryptCallback decrypt_cb, void *decrypt_cb_cls) are not documented: - parameter 'cfg' - parameter 'start' - parameter 'deadline' -/home/william/Git/gnunet/src/secretsharing/secretsharing_api.c:434: warning: argument 'message' of command @param is not found in the argument list of GNUNET_SECRETSHARING_encrypt(const struct GNUNET_SECRETSHARING_PublicKey *public_key, const struct GNUNET_SECRETSHARING_Plaintext *plaintext, struct GNUNET_SECRETSHARING_Ciphertext *result_ciphertext) -/home/william/Git/gnunet/src/secretsharing/secretsharing_api.c:434: warning: argument 'message_size' of command @param is not found in the argument list of GNUNET_SECRETSHARING_encrypt(const struct GNUNET_SECRETSHARING_PublicKey *public_key, const struct GNUNET_SECRETSHARING_Plaintext *plaintext, struct GNUNET_SECRETSHARING_Ciphertext *result_ciphertext) -/home/william/Git/gnunet/src/secretsharing/secretsharing_api.c:448: warning: The following parameter of GNUNET_SECRETSHARING_encrypt(const struct GNUNET_SECRETSHARING_PublicKey *public_key, const struct GNUNET_SECRETSHARING_Plaintext *plaintext, struct GNUNET_SECRETSHARING_Ciphertext *result_ciphertext) is not documented: - parameter 'plaintext' -/home/william/Git/gnunet/src/set/gnunet-service-set.c:178: warning: argument 'listener' of command @param is not found in the argument list of get_incoming(uint32_t id) -/home/william/Git/gnunet/src/set/gnunet-service-set.c:1003: warning: argument 'm' of command @param is not found in the argument list of handle_client_create_set(void *cls, const struct GNUNET_SET_CreateMessage *msg) -/home/william/Git/gnunet/src/set/gnunet-service-set.c:1012: warning: The following parameter of handle_client_create_set(void *cls, const struct GNUNET_SET_CreateMessage *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/set/gnunet-service-set.c:1062: warning: argument 'tc' of command @param is not found in the argument list of incoming_timeout_cb(void *cls) -/home/william/Git/gnunet/src/set/gnunet-service-set_intersection.c:759: warning: argument 'mh' of command @param is not found in the argument list of handle_intersection_p2p_element_info(void *cls, const struct IntersectionElementInfoMessage *msg) -/home/william/Git/gnunet/src/set/gnunet-service-set_intersection.c:765: warning: The following parameter of handle_intersection_p2p_element_info(void *cls, const struct IntersectionElementInfoMessage *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/set/gnunet-service-set_intersection.c:1038: warning: argument 'mh' of command @param is not found in the argument list of handle_intersection_p2p_done(void *cls, const struct IntersectionDoneMessage *idm) -/home/william/Git/gnunet/src/set/gnunet-service-set_intersection.c:1045: warning: The following parameter of handle_intersection_p2p_done(void *cls, const struct IntersectionDoneMessage *idm) is not documented: - parameter 'idm' -/home/william/Git/gnunet/src/set/gnunet-service-set_intersection.h:57: warning: argument 'mh' of command @param is not found in the argument list of handle_intersection_p2p_element_info(void *cls, const struct IntersectionElementInfoMessage *msg) -/home/william/Git/gnunet/src/set/gnunet-service-set_intersection.h:63: warning: The following parameter of handle_intersection_p2p_element_info(void *cls, const struct IntersectionElementInfoMessage *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/set/gnunet-service-set_intersection.h:68: warning: argument 'mh' of command @param is not found in the argument list of handle_intersection_p2p_done(void *cls, const struct IntersectionDoneMessage *idm) -/home/william/Git/gnunet/src/set/gnunet-service-set_intersection.h:75: warning: The following parameter of handle_intersection_p2p_done(void *cls, const struct IntersectionDoneMessage *idm) is not documented: - parameter 'idm' -/home/william/Git/gnunet/src/set/gnunet-service-set_union.c:85: warning: explicit link request to 'PHASE_EXPECT_ELEMENTS_AND_REQUESTS' could not be resolved -/home/william/Git/gnunet/src/set/gnunet-service-set_union.c:90: warning: explicit link request to 'PHASE_EXPECT_ELEMENTS' could not be resolved -/home/william/Git/gnunet/src/setu/gnunet-service-setu.c:122: warning: explicit link request to 'PHASE_EXPECT_ELEMENTS_AND_REQUESTS' could not be resolved -/home/william/Git/gnunet/src/setu/gnunet-service-setu.c:127: warning: explicit link request to 'PHASE_EXPECT_ELEMENTS' could not be resolved -/home/william/Git/gnunet/src/set/gnunet-service-set_union.h:242: warning: argument 'cls' from the argument list of handle_union_p2p_over has multiple @param documentation sections -/home/william/Git/gnunet/src/set/gnunet-service-set_union.h:242: warning: argument 'mh' from the argument list of handle_union_p2p_over has multiple @param documentation sections -/home/william/Git/gnunet/src/set/gnunet-service-set_union_strata_estimator.h:117: warning: argument 'se1' from the argument list of strata_estimator_difference has multiple @param documentation sections -/home/william/Git/gnunet/src/set/gnunet-service-set_union_strata_estimator.h:117: warning: argument 'se2' from the argument list of strata_estimator_difference has multiple @param documentation sections -/home/william/Git/gnunet/src/setu/ibf.c:313: warning: argument 'max' of command @param is not found in the argument list of ibf_write_slice(const struct InvertibleBloomFilter *ibf, uint32_t start, uint64_t count, void *buf, uint8_t counter_max_length) -/home/william/Git/gnunet/src/setu/ibf.c:323: warning: The following parameter of ibf_write_slice(const struct InvertibleBloomFilter *ibf, uint32_t start, uint64_t count, void *buf, uint8_t counter_max_length) is not documented: - parameter 'counter_max_length' -/home/william/Git/gnunet/src/setu/ibf.c:358: warning: argument 'max' of command @param is not found in the argument list of pack_counter(const struct InvertibleBloomFilter *ibf, uint32_t start, uint64_t count, uint8_t *buf, uint8_t counter_max_length) -/home/william/Git/gnunet/src/setu/ibf.c:369: warning: The following parameter of pack_counter(const struct InvertibleBloomFilter *ibf, uint32_t start, uint64_t count, uint8_t *buf, uint8_t counter_max_length) is not documented: - parameter 'counter_max_length' -/home/william/Git/gnunet/src/setu/ibf.c:431: warning: argument 'max' of command @param is not found in the argument list of unpack_counter(const struct InvertibleBloomFilter *ibf, uint32_t start, uint64_t count, uint8_t *buf, uint8_t counter_max_length) -/home/william/Git/gnunet/src/setu/ibf.c:442: warning: The following parameter of unpack_counter(const struct InvertibleBloomFilter *ibf, uint32_t start, uint64_t count, uint8_t *buf, uint8_t counter_max_length) is not documented: - parameter 'counter_max_length' -/home/william/Git/gnunet/src/setu/ibf.c:515: warning: argument 'max' of command @param is not found in the argument list of ibf_read_slice(const void *buf, uint32_t start, uint64_t count, struct InvertibleBloomFilter *ibf, uint8_t counter_max_length) -/home/william/Git/gnunet/src/setu/ibf.c:523: warning: The following parameter of ibf_read_slice(const void *buf, uint32_t start, uint64_t count, struct InvertibleBloomFilter *ibf, uint8_t counter_max_length) is not documented: - parameter 'counter_max_length' -/home/william/Git/gnunet/src/set/ibf.h:141: warning: argument 'buf' from the argument list of ibf_read_slice has multiple @param documentation sections -/home/william/Git/gnunet/src/set/ibf.h:141: warning: argument 'start' from the argument list of ibf_read_slice has multiple @param documentation sections -/home/william/Git/gnunet/src/set/ibf.h:141: warning: argument 'count' from the argument list of ibf_read_slice has multiple @param documentation sections -/home/william/Git/gnunet/src/set/ibf.h:141: warning: argument 'ibf' from the argument list of ibf_read_slice has multiple @param documentation sections -/home/william/Git/gnunet/src/set/ibf.h:176: warning: argument 'size' from the argument list of ibf_create has multiple @param documentation sections -/home/william/Git/gnunet/src/set/ibf.h:176: warning: argument 'hash_num' from the argument list of ibf_create has multiple @param documentation sections -/home/william/Git/gnunet/src/set/ibf.h:224: warning: argument 'ibf' from the argument list of ibf_decode has multiple @param documentation sections -/home/william/Git/gnunet/src/set/ibf.h:224: warning: argument 'ret_side' from the argument list of ibf_decode has multiple @param documentation sections -/home/william/Git/gnunet/src/set/ibf.h:224: warning: argument 'ret_id' from the argument list of ibf_decode has multiple @param documentation sections -/home/william/Git/gnunet/src/setu/ibf.c:313: warning: argument 'max' of command @param is not found in the argument list of ibf_write_slice(const struct InvertibleBloomFilter *ibf, uint32_t start, uint64_t count, void *buf, uint8_t counter_max_length) -/home/william/Git/gnunet/src/setu/ibf.h:141: warning: argument 'ibf' from the argument list of ibf_write_slice has multiple @param documentation sections -/home/william/Git/gnunet/src/setu/ibf.h:141: warning: argument 'start' from the argument list of ibf_write_slice has multiple @param documentation sections -/home/william/Git/gnunet/src/setu/ibf.h:141: warning: argument 'count' from the argument list of ibf_write_slice has multiple @param documentation sections -/home/william/Git/gnunet/src/setu/ibf.h:141: warning: argument 'buf' from the argument list of ibf_write_slice has multiple @param documentation sections -/home/william/Git/gnunet/src/setu/ibf.h:141: warning: The following parameter of ibf_write_slice(const struct InvertibleBloomFilter *ibf, uint32_t start, uint64_t count, void *buf, uint8_t counter_max_length) is not documented: - parameter 'counter_max_length' -/home/william/Git/gnunet/src/setu/ibf.c:515: warning: argument 'max' of command @param is not found in the argument list of ibf_read_slice(const void *buf, uint32_t start, uint64_t count, struct InvertibleBloomFilter *ibf, uint8_t counter_max_length) -/home/william/Git/gnunet/src/setu/ibf.h:157: warning: argument 'buf' from the argument list of ibf_read_slice has multiple @param documentation sections -/home/william/Git/gnunet/src/setu/ibf.h:157: warning: argument 'start' from the argument list of ibf_read_slice has multiple @param documentation sections -/home/william/Git/gnunet/src/setu/ibf.h:157: warning: argument 'count' from the argument list of ibf_read_slice has multiple @param documentation sections -/home/william/Git/gnunet/src/setu/ibf.h:157: warning: argument 'ibf' from the argument list of ibf_read_slice has multiple @param documentation sections -/home/william/Git/gnunet/src/setu/ibf.h:157: warning: The following parameter of ibf_read_slice(const void *buf, uint32_t start, uint64_t count, struct InvertibleBloomFilter *ibf, uint8_t counter_max_length) is not documented: - parameter 'counter_max_length' -/home/william/Git/gnunet/src/setu/ibf.h:193: warning: argument 'size' from the argument list of ibf_create has multiple @param documentation sections -/home/william/Git/gnunet/src/setu/ibf.h:193: warning: argument 'hash_num' from the argument list of ibf_create has multiple @param documentation sections -/home/william/Git/gnunet/src/setu/ibf.h:241: warning: argument 'ibf' from the argument list of ibf_decode has multiple @param documentation sections -/home/william/Git/gnunet/src/setu/ibf.h:241: warning: argument 'ret_side' from the argument list of ibf_decode has multiple @param documentation sections -/home/william/Git/gnunet/src/setu/ibf.h:241: warning: argument 'ret_id' from the argument list of ibf_decode has multiple @param documentation sections -/home/william/Git/gnunet/src/setu/ibf.h:268: warning: argument 'max' of command @param is not found in the argument list of pack_counter(const struct InvertibleBloomFilter *ibf, uint32_t start, uint64_t count, uint8_t *buf, uint8_t counter_max_length) -/home/william/Git/gnunet/src/setu/ibf.h:279: warning: The following parameter of pack_counter(const struct InvertibleBloomFilter *ibf, uint32_t start, uint64_t count, uint8_t *buf, uint8_t counter_max_length) is not documented: - parameter 'counter_max_length' -/home/william/Git/gnunet/src/setu/ibf.h:285: warning: argument 'max' of command @param is not found in the argument list of unpack_counter(const struct InvertibleBloomFilter *ibf, uint32_t start, uint64_t count, uint8_t *buf, uint8_t counter_max_length) -/home/william/Git/gnunet/src/setu/ibf.h:296: warning: The following parameter of unpack_counter(const struct InvertibleBloomFilter *ibf, uint32_t start, uint64_t count, uint8_t *buf, uint8_t counter_max_length) is not documented: - parameter 'counter_max_length' -/home/william/Git/gnunet/src/set/set_api.c:294: warning: argument 'mh' of command @param is not found in the argument list of handle_iter_element(void *cls, const struct GNUNET_SET_IterResponseMessage *msg) -/home/william/Git/gnunet/src/set/set_api.c:302: warning: The following parameter of handle_iter_element(void *cls, const struct GNUNET_SET_IterResponseMessage *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/set/set_api.c:389: warning: argument 'mh' of command @param is not found in the argument list of handle_result(void *cls, const struct GNUNET_SET_ResultMessage *msg) -/home/william/Git/gnunet/src/set/set_api.c:394: warning: The following parameter of handle_result(void *cls, const struct GNUNET_SET_ResultMessage *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/set/set_api.c:812: warning: The following parameter of GNUNET_SET_prepare(const struct GNUNET_PeerIdentity *other_peer, const struct GNUNET_HashCode *app_id, const struct GNUNET_MessageHeader *context_msg, enum GNUNET_SET_ResultMode result_mode, struct GNUNET_SET_Option options[], GNUNET_SET_ResultIterator result_cb, void *result_cls) is not documented: - parameter 'options' -/home/william/Git/gnunet/src/set/set_api.c:1084: warning: The following parameter of GNUNET_SET_accept(struct GNUNET_SET_Request *request, enum GNUNET_SET_ResultMode result_mode, struct GNUNET_SET_Option options[], GNUNET_SET_ResultIterator result_cb, void *result_cls) is not documented: - parameter 'options' -/home/william/Git/gnunet/src/seti/gnunet-service-seti.c:1234: warning: argument 'mh' of command @param is not found in the argument list of handle_intersection_p2p_element_info(void *cls, const struct IntersectionElementInfoMessage *msg) -/home/william/Git/gnunet/src/seti/gnunet-service-seti.c:1240: warning: The following parameter of handle_intersection_p2p_element_info(void *cls, const struct IntersectionElementInfoMessage *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/seti/gnunet-service-seti.c:1498: warning: argument 'mh' of command @param is not found in the argument list of handle_intersection_p2p_done(void *cls, const struct IntersectionDoneMessage *idm) -/home/william/Git/gnunet/src/seti/gnunet-service-seti.c:1505: warning: The following parameter of handle_intersection_p2p_done(void *cls, const struct IntersectionDoneMessage *idm) is not documented: - parameter 'idm' -/home/william/Git/gnunet/src/seti/gnunet-service-seti.c:1559: warning: argument 'listener' of command @param is not found in the argument list of get_incoming(uint32_t id) -/home/william/Git/gnunet/src/seti/gnunet-service-seti.c:1796: warning: argument 'm' of command @param is not found in the argument list of handle_client_create_set(void *cls, const struct GNUNET_SETI_CreateMessage *msg) -/home/william/Git/gnunet/src/seti/gnunet-service-seti.c:1805: warning: The following parameter of handle_client_create_set(void *cls, const struct GNUNET_SETI_CreateMessage *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/seti/gnunet-service-seti.c:1831: warning: argument 'tc' of command @param is not found in the argument list of incoming_timeout_cb(void *cls) -/home/william/Git/gnunet/src/seti/plugin_block_seti_test.c:34: warning: argument 'ctx' of command @param is not found in the argument list of block_plugin_seti_test_check_query(void *cls, enum GNUNET_BLOCK_Type type, const struct GNUNET_HashCode *query, const void *xquery, size_t xquery_size) -/home/william/Git/gnunet/src/seti/seti_api.c:223: warning: argument 'mh' of command @param is not found in the argument list of handle_result(void *cls, const struct GNUNET_SETI_ResultMessage *msg) -/home/william/Git/gnunet/src/seti/seti_api.c:228: warning: The following parameter of handle_result(void *cls, const struct GNUNET_SETI_ResultMessage *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/set/gnunet-service-set_union.c:85: warning: explicit link request to 'PHASE_EXPECT_ELEMENTS_AND_REQUESTS' could not be resolved -/home/william/Git/gnunet/src/set/gnunet-service-set_union.c:90: warning: explicit link request to 'PHASE_EXPECT_ELEMENTS' could not be resolved -/home/william/Git/gnunet/src/setu/gnunet-service-setu.c:122: warning: explicit link request to 'PHASE_EXPECT_ELEMENTS_AND_REQUESTS' could not be resolved -/home/william/Git/gnunet/src/setu/gnunet-service-setu.c:127: warning: explicit link request to 'PHASE_EXPECT_ELEMENTS' could not be resolved -/home/william/Git/gnunet/src/setu/gnunet-service-setu.c:1723: warning: argument 'initial_local_elements_in_set' of command @param is not found in the argument list of full_sync_plausibility_check(struct Operation *op) -/home/william/Git/gnunet/src/setu/gnunet-service-setu.c:1723: warning: argument 'estimated_set_difference' of command @param is not found in the argument list of full_sync_plausibility_check(struct Operation *op) -/home/william/Git/gnunet/src/setu/gnunet-service-setu.c:1723: warning: argument 'repeated_elements' of command @param is not found in the argument list of full_sync_plausibility_check(struct Operation *op) -/home/william/Git/gnunet/src/setu/gnunet-service-setu.c:1723: warning: argument 'fresh_elements' of command @param is not found in the argument list of full_sync_plausibility_check(struct Operation *op) -/home/william/Git/gnunet/src/setu/gnunet-service-setu.c:2118: warning: argument 'ibf_order' of command @param is not found in the argument list of send_ibf(struct Operation *op, uint32_t ibf_size) -/home/william/Git/gnunet/src/setu/gnunet-service-setu.c:2126: warning: The following parameter of send_ibf(struct Operation *op, uint32_t ibf_size) is not documented: - parameter 'ibf_size' -/home/william/Git/gnunet/src/setu/gnunet-service-setu.c:2215: warning: The following parameters of get_size_from_difference(unsigned int diff, int number_buckets_per_element, float ibf_bucket_number_factor) are not documented: - parameter 'number_buckets_per_element' - parameter 'ibf_bucket_number_factor' -/home/william/Git/gnunet/src/setu/gnunet-service-setu.c:4269: warning: argument 'listener' of command @param is not found in the argument list of get_incoming(uint32_t id) -/home/william/Git/gnunet/src/setu/gnunet-service-setu.c:4520: warning: argument 'm' of command @param is not found in the argument list of handle_client_create_set(void *cls, const struct GNUNET_SETU_CreateMessage *msg) -/home/william/Git/gnunet/src/setu/gnunet-service-setu.c:4529: warning: The following parameter of handle_client_create_set(void *cls, const struct GNUNET_SETU_CreateMessage *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/setu/gnunet-service-setu.c:4571: warning: argument 'tc' of command @param is not found in the argument list of incoming_timeout_cb(void *cls) -/home/william/Git/gnunet/src/setu/gnunet-service-setu_strata_estimator.c:117: warning: The following parameters of strata_estimator_write(struct MultiStrataEstimator *se, uint16_t se_ibf_total_size, uint8_t number_se_send, void *buf) are not documented: - parameter 'se_ibf_total_size' - parameter 'number_se_send' -/home/william/Git/gnunet/src/setu/gnunet-service-setu_strata_estimator.c:175: warning: The following parameters of strata_estimator_read(const void *buf, size_t buf_len, int is_compressed, uint8_t number_se_received, uint16_t se_ibf_total_size, struct MultiStrataEstimator *se) are not documented: - parameter 'number_se_received' - parameter 'se_ibf_total_size' -/home/william/Git/gnunet/src/setu/gnunet-service-setu_strata_estimator.c:352: warning: documented empty return type of strata_estimator_difference -/home/william/Git/gnunet/src/setu/gnunet-service-setu_strata_estimator.h:87: warning: argument 'avg_element_size' from the argument list of determine_strata_count has multiple @param documentation sections -/home/william/Git/gnunet/src/setu/gnunet-service-setu_strata_estimator.h:87: warning: argument 'element_count' from the argument list of determine_strata_count has multiple @param documentation sections -/home/william/Git/gnunet/src/setu/gnunet-service-setu_strata_estimator.h:99: warning: The following parameters of strata_estimator_write(struct MultiStrataEstimator *se, uint16_t se_ibf_total_size, uint8_t number_se_send, void *buf) are not documented: - parameter 'se_ibf_total_size' - parameter 'number_se_send' -/home/william/Git/gnunet/src/setu/gnunet-service-setu_strata_estimator.h:116: warning: The following parameters of strata_estimator_read(const void *buf, size_t buf_len, int is_compressed, uint8_t number_se_received, uint16_t se_ibf_total_size, struct MultiStrataEstimator *se) are not documented: - parameter 'number_se_received' - parameter 'se_ibf_total_size' -/home/william/Git/gnunet/src/setu/gnunet-service-setu_strata_estimator.h:147: warning: argument 'se1' from the argument list of strata_estimator_difference has multiple @param documentation sections -/home/william/Git/gnunet/src/setu/gnunet-service-setu_strata_estimator.h:147: warning: argument 'se2' from the argument list of strata_estimator_difference has multiple @param documentation sections -/home/william/Git/gnunet/src/setu/gnunet-service-setu_strata_estimator.h:147: warning: documented empty return type of strata_estimator_difference -/home/william/Git/gnunet/src/setu/gnunet-service-setu_strata_estimator.h:169: warning: argument 'se' from the argument list of strata_estimator_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/setu/gnunet-service-setu_strata_estimator.h:169: warning: argument 'key' from the argument list of strata_estimator_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/setu/plugin_block_setu_test.c:33: warning: argument 'ctx' of command @param is not found in the argument list of block_plugin_setu_test_check_query(void *cls, enum GNUNET_BLOCK_Type type, const struct GNUNET_HashCode *query, const void *xquery, size_t xquery_size) -/home/william/Git/gnunet/src/setu/setu_api.c:206: warning: argument 'mh' of command @param is not found in the argument list of handle_result(void *cls, const struct GNUNET_SETU_ResultMessage *msg) -/home/william/Git/gnunet/src/setu/setu_api.c:211: warning: The following parameter of handle_result(void *cls, const struct GNUNET_SETU_ResultMessage *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/setu/setu_api.c:509: warning: The following parameter of GNUNET_SETU_prepare(const struct GNUNET_PeerIdentity *other_peer, const struct GNUNET_HashCode *app_id, const struct GNUNET_MessageHeader *context_msg, const struct GNUNET_SETU_Option options[], GNUNET_SETU_ResultIterator result_cb, void *result_cls) is not documented: - parameter 'options' -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:347: warning: argument 'result_mode' of command @param is not found in the argument list of GNUNET_SETU_accept(struct GNUNET_SETU_Request *request, const struct GNUNET_SETU_Option options[], GNUNET_SETU_ResultIterator result_cb, void *result_cls) -/home/william/Git/gnunet/src/setu/setu_api.c:795: warning: The following parameter of GNUNET_SETU_accept(struct GNUNET_SETU_Request *request, const struct GNUNET_SETU_Option options[], GNUNET_SETU_ResultIterator result_cb, void *result_cls) is not documented: - parameter 'options' -/home/william/Git/gnunet/src/include/gnunet_sq_lib.h:190: warning: argument 'db_conn' of command @param is not found in the argument list of GNUNET_SQ_bind(sqlite3_stmt *stmt, const struct GNUNET_SQ_QueryParam *params) -/home/william/Git/gnunet/src/sq/sq.c:37: warning: The following parameter of GNUNET_SQ_bind(sqlite3_stmt *stmt, const struct GNUNET_SQ_QueryParam *params) is not documented: - parameter 'stmt' -/home/william/Git/gnunet/src/sq/sq_query_helper.c:61: warning: Found unknown command '\oaran' -/home/william/Git/gnunet/src/sq/sq_query_helper.c:41: warning: The following parameter of GNUNET_SQ_query_param_fixed_size(const void *ptr, size_t ptr_size) is not documented: - parameter 'ptr_size' -/home/william/Git/gnunet/src/statistics/gnunet-service-statistics.c:329: warning: argument 'client' of command @param is not found in the argument list of transmit(struct ClientEntry *ce, const struct StatsEntry *e) -/home/william/Git/gnunet/src/statistics/gnunet-service-statistics.c:334: warning: The following parameter of transmit(struct ClientEntry *ce, const struct StatsEntry *e) is not documented: - parameter 'ce' -/home/william/Git/gnunet/src/statistics/gnunet-service-statistics.c:543: warning: argument 'subsystem' of command @param is not found in the argument list of find_stat_entry(struct SubsystemEntry *se, const char *name) -/home/william/Git/gnunet/src/statistics/gnunet-service-statistics.c:549: warning: The following parameter of find_stat_entry(struct SubsystemEntry *se, const char *name) is not documented: - parameter 'se' -/home/william/Git/gnunet/src/statistics/gnunet-service-statistics.c:562: warning: argument 'message' of command @param is not found in the argument list of check_set(void *cls, const struct GNUNET_STATISTICS_SetMessage *msg) -/home/william/Git/gnunet/src/statistics/gnunet-service-statistics.c:568: warning: The following parameter of check_set(void *cls, const struct GNUNET_STATISTICS_SetMessage *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/statistics/gnunet-service-statistics.c:590: warning: argument 'message' of command @param is not found in the argument list of handle_set(void *cls, const struct GNUNET_STATISTICS_SetMessage *msg) -/home/william/Git/gnunet/src/statistics/gnunet-service-statistics.c:595: warning: The following parameter of handle_set(void *cls, const struct GNUNET_STATISTICS_SetMessage *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/statistics/gnunet-statistics.c:200: warning: explicit link request to 'GNUNET_CONTAINER_HashMapIterator' could not be resolved -/home/william/Git/gnunet/src/statistics/statistics_api.c:1001: warning: argument 'cls' from the argument list of schedule_action has multiple @param documentation sections -/home/william/Git/gnunet/src/statistics/statistics_api.c:447: warning: argument 'msg' of command @param is not found in the argument list of handle_statistics_value(void *cls, const struct GNUNET_STATISTICS_ReplyMessage *smsg) -/home/william/Git/gnunet/src/statistics/statistics_api.c:453: warning: The following parameter of handle_statistics_value(void *cls, const struct GNUNET_STATISTICS_ReplyMessage *smsg) is not documented: - parameter 'smsg' -/home/william/Git/gnunet/src/statistics/statistics_api.c:491: warning: argument 'msg' of command @param is not found in the argument list of handle_statistics_watch_value(void *cls, const struct GNUNET_STATISTICS_WatchValueMessage *wvm) -/home/william/Git/gnunet/src/statistics/statistics_api.c:498: warning: The following parameter of handle_statistics_watch_value(void *cls, const struct GNUNET_STATISTICS_WatchValueMessage *wvm) is not documented: - parameter 'wvm' -/home/william/Git/gnunet/src/testbed/generate-underlay-topology.c:210: warning: argument 'cfg' of command @param is not found in the argument list of run(void *cls, char *const *args, const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *config) -/home/william/Git/gnunet/src/testbed/generate-underlay-topology.c:217: warning: The following parameter of run(void *cls, char *const *args, const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *config) is not documented: - parameter 'config' -/home/william/Git/gnunet/src/testbed/gnunet-helper-testbed.c:278: warning: explicit link request to 'GNUNET_mst_destroy()' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.c:383: warning: argument 'message' of command @param is not found in the argument list of check_init(void *cls, const struct GNUNET_TESTBED_InitMessage *msg) -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.c:391: warning: The following parameter of check_init(void *cls, const struct GNUNET_TESTBED_InitMessage *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.c:408: warning: argument 'message' of command @param is not found in the argument list of handle_init(void *cls, const struct GNUNET_TESTBED_InitMessage *msg) -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.c:415: warning: The following parameter of handle_init(void *cls, const struct GNUNET_TESTBED_InitMessage *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.c:479: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_ADDHOST' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.c:515: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_ADDHOST' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.c:612: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_GETSLAVECONFIG' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:572: warning: argument 'tc' of command @param is not found in the argument list of GST_forwarded_operation_timeout(void *cls) -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:579: warning: argument 'cls' from the argument list of GST_forwarded_operation_timeout has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:656: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_CREATEPEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:668: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_CREATEPEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_peers.c:431: warning: argument 'message' of command @param is not found in the argument list of handle_peer_create(void *cls, const struct GNUNET_TESTBED_PeerCreateMessage *msg) -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:675: warning: argument 'cls' from the argument list of handle_peer_create has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:679: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_DESTROYPEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:690: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_DESTROYPEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:693: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_DESTROYPEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:697: warning: argument 'cls' from the argument list of handle_peer_start has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:697: warning: argument 'msg' from the argument list of handle_peer_start has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:701: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_DESTROYPEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:701: warning: argument 'message' of command @param is not found in the argument list of handle_peer_stop(void *cls, const struct GNUNET_TESTBED_PeerStopMessage *msg) -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:704: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_DESTROYPEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:708: warning: argument 'cls' from the argument list of handle_peer_stop has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:712: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_GETPEERCONFIG' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:715: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_GETPEERCONFIG' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:719: warning: argument 'cls' from the argument list of handle_peer_get_config has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:719: warning: argument 'msg' from the argument list of handle_peer_get_config has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:755: warning: argument 'cls' from the argument list of handle_manage_peer_service has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:755: warning: argument 'msg' from the argument list of handle_manage_peer_service has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:760: warning: explicit link request to 'GNUNET_MESSAGE_TYPDE_TESTBED_RECONFIGURE_PEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:773: warning: explicit link request to 'GNUNET_MESSAGE_TYPDE_TESTBED_RECONFIGURE_PEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_barriers.c:329: warning: argument 'message' of command @param is not found in the argument list of check_barrier_wait(void *cls, const struct GNUNET_TESTBED_BarrierWait *msg) -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_barriers.c:334: warning: The following parameter of check_barrier_wait(void *cls, const struct GNUNET_TESTBED_BarrierWait *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_barriers.c:341: warning: argument 'message' of command @param is not found in the argument list of handle_barrier_wait(void *cls, const struct GNUNET_TESTBED_BarrierWait *msg) -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_barriers.c:353: warning: The following parameter of handle_barrier_wait(void *cls, const struct GNUNET_TESTBED_BarrierWait *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_barriers.c:441: warning: The following parameter of disconnect_cb(void *cls, struct GNUNET_SERVICE_Client *client, void *app_ctx) is not documented: - parameter 'app_ctx' -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_links.c:1198: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_LCONTROLLERS' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_links.h:183: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_LCONTROLLERS' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_oc.c:798: warning: The following parameter of occ_cache_get_handle_ats_rocc_cb(void *cls, struct GNUNET_CORE_Handle *ch, struct GNUNET_TRANSPORT_CoreHandle *th, struct GNUNET_ATS_ConnectivityHandle *ac, const struct GNUNET_PeerIdentity *my_identity, const struct GNUNET_CONFIGURATION_Handle *cfg) is not documented: - parameter 'cfg' -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_oc.c:911: warning: argument 'cls' from the argument list of send_hello has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_oc.c:1110: warning: The following parameter of p1_transport_connect_cache_callback(void *cls, struct GNUNET_CORE_Handle *ch, struct GNUNET_TRANSPORT_CoreHandle *th, struct GNUNET_ATS_ConnectivityHandle *ac, const struct GNUNET_PeerIdentity *ignore_, const struct GNUNET_CONFIGURATION_Handle *cfg) is not documented: - parameter 'cfg' -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_oc.c:1157: warning: The following parameter of occ_cache_get_handle_core_cb(void *cls, struct GNUNET_CORE_Handle *ch, struct GNUNET_TRANSPORT_CoreHandle *th, struct GNUNET_ATS_ConnectivityHandle *ac, const struct GNUNET_PeerIdentity *my_identity, const struct GNUNET_CONFIGURATION_Handle *cfg) is not documented: - parameter 'cfg' -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_oc.c:1827: warning: The following parameter of rocc_cache_get_handle_transport_cb(void *cls, struct GNUNET_CORE_Handle *ch, struct GNUNET_TRANSPORT_CoreHandle *th, struct GNUNET_ATS_ConnectivityHandle *ac, const struct GNUNET_PeerIdentity *ignore_, const struct GNUNET_CONFIGURATION_Handle *cfg) is not documented: - parameter 'cfg' -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_peers.c:416: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_CREATEPEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_peers.c:431: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_CREATEPEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_peers.c:563: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_DESTROYPEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:690: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_DESTROYPEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:701: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_DESTROYPEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed.h:712: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_GETPEERCONFIG' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_peers.c:972: warning: explicit link request to 'GNUNET_MESSAGE_TYPDE_TESTBED_RECONFIGURE_PEER' could not be resolved -/home/william/Git/gnunet/src/testbed/gnunet-service-testbed_peers.c:987: warning: explicit link request to 'GNUNET_MESSAGE_TYPDE_TESTBED_RECONFIGURE_PEER' could not be resolved -/home/william/Git/gnunet/src/testbed/testbed_api.c:333: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_ADDHOSTCONFIRM' could not be resolved -/home/william/Git/gnunet/src/testbed/testbed_api.c:361: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_ADDHOSTCONFIRM' could not be resolved -/home/william/Git/gnunet/src/testbed/testbed_api.c:407: warning: argument 'c' of command @param is not found in the argument list of handle_forwarded_operation_msg(void *cls, struct OperationContext *opc, const struct GNUNET_MessageHeader *msg) -/home/william/Git/gnunet/src/testbed/testbed_api.c:415: warning: The following parameter of handle_forwarded_operation_msg(void *cls, struct OperationContext *opc, const struct GNUNET_MessageHeader *msg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/testbed/testbed_api.c:431: warning: argument 'c' of command @param is not found in the argument list of handle_opsuccess(void *cls, const struct GNUNET_TESTBED_GenericOperationSuccessEventMessage *msg) -/home/william/Git/gnunet/src/testbed/testbed_api.c:439: warning: The following parameter of handle_opsuccess(void *cls, const struct GNUNET_TESTBED_GenericOperationSuccessEventMessage *msg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/testbed/testbed_api.c:535: warning: argument 'c' of command @param is not found in the argument list of handle_peer_create_success(void *cls, const struct GNUNET_TESTBED_PeerCreateSuccessEventMessage *msg) -/home/william/Git/gnunet/src/testbed/testbed_api.c:543: warning: The following parameter of handle_peer_create_success(void *cls, const struct GNUNET_TESTBED_PeerCreateSuccessEventMessage *msg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/testbed/testbed_api.c:593: warning: argument 'c' of command @param is not found in the argument list of handle_peer_event(void *cls, const struct GNUNET_TESTBED_PeerEventMessage *msg) -/home/william/Git/gnunet/src/testbed/testbed_api.c:601: warning: The following parameter of handle_peer_event(void *cls, const struct GNUNET_TESTBED_PeerEventMessage *msg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/testbed/testbed_api.c:674: warning: argument 'c' of command @param is not found in the argument list of handle_peer_conevent(void *cls, const struct GNUNET_TESTBED_ConnectionEventMessage *msg) -/home/william/Git/gnunet/src/testbed/testbed_api.c:682: warning: The following parameter of handle_peer_conevent(void *cls, const struct GNUNET_TESTBED_ConnectionEventMessage *msg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/testbed/testbed_api.c:750: warning: argument 'c' of command @param is not found in the argument list of check_peer_config(void *cls, const struct GNUNET_TESTBED_PeerConfigurationInformationMessage *msg) -/home/william/Git/gnunet/src/testbed/testbed_api.c:758: warning: The following parameter of check_peer_config(void *cls, const struct GNUNET_TESTBED_PeerConfigurationInformationMessage *msg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/testbed/testbed_api.c:767: warning: argument 'c' of command @param is not found in the argument list of handle_peer_config(void *cls, const struct GNUNET_TESTBED_PeerConfigurationInformationMessage *msg) -/home/william/Git/gnunet/src/testbed/testbed_api.c:775: warning: The following parameter of handle_peer_config(void *cls, const struct GNUNET_TESTBED_PeerConfigurationInformationMessage *msg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/testbed/testbed_api.c:839: warning: argument 'c' of command @param is not found in the argument list of check_op_fail_event(void *cls, const struct GNUNET_TESTBED_OperationFailureEventMessage *msg) -/home/william/Git/gnunet/src/testbed/testbed_api.c:848: warning: The following parameter of check_op_fail_event(void *cls, const struct GNUNET_TESTBED_OperationFailureEventMessage *msg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/testbed/testbed_api.c:857: warning: argument 'c' of command @param is not found in the argument list of handle_op_fail_event(void *cls, const struct GNUNET_TESTBED_OperationFailureEventMessage *msg) -/home/william/Git/gnunet/src/testbed/testbed_api.c:865: warning: The following parameter of handle_op_fail_event(void *cls, const struct GNUNET_TESTBED_OperationFailureEventMessage *msg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/testbed/testbed_api.c:1020: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_SLAVE_INFORMATION' could not be resolved -/home/william/Git/gnunet/src/testbed/testbed_api.c:1020: warning: argument 'c' of command @param is not found in the argument list of check_slave_config(void *cls, const struct GNUNET_TESTBED_SlaveConfiguration *msg) -/home/william/Git/gnunet/src/testbed/testbed_api.c:1028: warning: The following parameter of check_slave_config(void *cls, const struct GNUNET_TESTBED_SlaveConfiguration *msg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/testbed/testbed_api.c:1036: warning: argument 'c' of command @param is not found in the argument list of handle_slave_config(void *cls, const struct GNUNET_TESTBED_SlaveConfiguration *msg) -/home/william/Git/gnunet/src/testbed/testbed_api.c:1044: warning: The following parameter of handle_slave_config(void *cls, const struct GNUNET_TESTBED_SlaveConfiguration *msg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/testbed/testbed_api.c:1080: warning: argument 'c' of command @param is not found in the argument list of check_link_controllers_result(void *cls, const struct GNUNET_TESTBED_ControllerLinkResponse *msg) -/home/william/Git/gnunet/src/testbed/testbed_api.c:1089: warning: The following parameter of check_link_controllers_result(void *cls, const struct GNUNET_TESTBED_ControllerLinkResponse *msg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/testbed/testbed_api.c:1098: warning: argument 'c' of command @param is not found in the argument list of handle_link_controllers_result(void *cls, const struct GNUNET_TESTBED_ControllerLinkResponse *msg) -/home/william/Git/gnunet/src/testbed/testbed_api.c:1106: warning: The following parameter of handle_link_controllers_result(void *cls, const struct GNUNET_TESTBED_ControllerLinkResponse *msg) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/testbed/testbed_api.h:319: warning: argument 'controller' from the argument list of GNUNET_TESTBED_queue_message_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api.h:319: warning: argument 'msg' from the argument list of GNUNET_TESTBED_queue_message_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api.c:2054: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_PEERCONFIG' could not be resolved -/home/william/Git/gnunet/src/testbed/testbed_api.c:2055: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_SLAVECONFIG' could not be resolved -/home/william/Git/gnunet/src/testbed/testbed_api.h:440: warning: argument 'msg' from the argument list of GNUNET_TESTBED_extract_config_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api.h:451: warning: argument 'msg' from the argument list of GNUNET_TESTBED_parse_error_string_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api.h:502: warning: argument 'controller' from the argument list of GNUNET_TESTBED_barrier_init_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api.h:502: warning: argument 'name' from the argument list of GNUNET_TESTBED_barrier_init_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api.h:502: warning: argument 'quorum' from the argument list of GNUNET_TESTBED_barrier_init_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api.h:502: warning: argument 'cb' from the argument list of GNUNET_TESTBED_barrier_init_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api.h:502: warning: argument 'cls' from the argument list of GNUNET_TESTBED_barrier_init_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api.h:502: warning: argument 'echo' from the argument list of GNUNET_TESTBED_barrier_init_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api_hosts.c:934: warning: argument 'client' of command @param is not found in the argument list of helper_mst(void *cls, const struct GNUNET_MessageHeader *message) -/home/william/Git/gnunet/src/testbed/testbed_api_hosts.h:70: warning: argument 'id' from the argument list of GNUNET_TESTBED_host_lookup_by_id_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api_hosts.h:99: warning: argument 'host' from the argument list of GNUNET_TESTBED_host_get_id_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api_hosts.h:176: warning: argument 'host' from the argument list of GNUNET_TESTBED_is_host_registered_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api_hosts.h:176: warning: argument 'controller' from the argument list of GNUNET_TESTBED_is_host_registered_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api_operations.h:68: warning: argument 'type' from the argument list of GNUNET_TESTBED_operation_queue_create_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api_operations.h:68: warning: argument 'max_active' from the argument list of GNUNET_TESTBED_operation_queue_create_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api_operations.h:79: warning: argument 'queue' from the argument list of GNUNET_TESTBED_operation_queue_destroy_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api_operations.h:133: warning: argument 'queue' from the argument list of GNUNET_TESTBED_operation_queue_insert_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api_operations.h:133: warning: argument 'op' from the argument list of GNUNET_TESTBED_operation_queue_insert_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api_sd.h:77: warning: argument 'h' from the argument list of GNUNET_TESTBED_SD_deviation_factor_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api_sd.h:77: warning: argument 'amount' from the argument list of GNUNET_TESTBED_SD_deviation_factor_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api_sd.h:77: warning: argument 'factor' from the argument list of GNUNET_TESTBED_SD_deviation_factor_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api_testbed.c:1014: warning: argument 'cls' from the argument list of register_hosts has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api_topology.h:41: warning: argument 'num_peers' from the argument list of GNUNET_TESTBED_2dtorus_calc_links has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api_topology.h:41: warning: argument 'rows' from the argument list of GNUNET_TESTBED_2dtorus_calc_links has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api_topology.h:41: warning: argument 'rows_len' from the argument list of GNUNET_TESTBED_2dtorus_calc_links has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api_topology.h:55: warning: argument 'topology' from the argument list of GNUNET_TESTBED_topology_get_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api_topology.h:55: warning: argument 'topology_string' from the argument list of GNUNET_TESTBED_topology_get_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api_topology.h:107: warning: argument 'num_peers' from the argument list of GNUNET_TESTBED_underlay_construct_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api_topology.h:107: warning: argument 'proc' from the argument list of GNUNET_TESTBED_underlay_construct_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api_topology.h:107: warning: argument 'cls' from the argument list of GNUNET_TESTBED_underlay_construct_ has multiple @param documentation sections -/home/william/Git/gnunet/src/testing/gnunet-cmds-helper.c:323: warning: explicit link request to 'GNUNET_mst_destroy()' could not be resolved -/home/william/Git/gnunet/src/testing/list-keys.c:11: warning: argument 'cfg' of command @param is not found in the argument list of run(void *cls, char *const *args, const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *config) -/home/william/Git/gnunet/src/testing/list-keys.c:18: warning: The following parameter of run(void *cls, char *const *args, const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *config) is not documented: - parameter 'config' -/home/william/Git/gnunet/src/testing/testing_api_cmd_block_until_external_trigger.c:98: warning: argument 'all_peers_started' of command @param is not found in the argument list of GNUNET_TESTING_cmd_block_until_external_trigger(const char *label) -/home/william/Git/gnunet/src/testing/testing_api_cmd_block_until_external_trigger.c:98: warning: argument 'asynchronous_finish' of command @param is not found in the argument list of GNUNET_TESTING_cmd_block_until_external_trigger(const char *label) -/home/william/Git/gnunet/src/testing/testing_api_cmd_local_test_prepared.c:97: warning: argument 'all_local_tests_prepared' of command @param is not found in the argument list of GNUNET_TESTING_cmd_local_test_prepared(const char *label, TESTING_CMD_HELPER_write_cb write_message) -/home/william/Git/gnunet/src/testing/testing_api_cmd_netjail_start.c:136: warning: The following parameter of GNUNET_TESTING_cmd_netjail_start(const char *label, char *topology_config, unsigned int *read_file) is not documented: - parameter 'read_file' -/home/william/Git/gnunet/src/testing/testing_api_cmd_netjail_start_testsystem.c:345: warning: argument 'client' of command @param is not found in the argument list of helper_mst(void *cls, const struct GNUNET_MessageHeader *message) -/home/william/Git/gnunet/src/testing/testing_api_cmd_netjail_start_testsystem.c:733: warning: argument 'cmd' of command @param is not found in the argument list of netjail_exec_run(void *cls, struct GNUNET_TESTING_Interpreter *is) -/home/william/Git/gnunet/src/testing/testing_api_cmd_netjail_stop_testsystem.c:65: warning: argument 'cmd' of command @param is not found in the argument list of stop_testing_system_cleanup(void *cls) -/home/william/Git/gnunet/src/testing/testing_api_cmd_system_create.c:96: warning: argument 'label' from the argument list of GNUNET_TESTING_cmd_system_create has multiple @param documentation sections -/home/william/Git/gnunet/src/testing/testing_api_cmd_system_create.c:96: warning: The following parameter of GNUNET_TESTING_cmd_system_create(const char *label, const char *testdir) is not documented: - parameter 'testdir' -/home/william/Git/gnunet/src/testing/testing_api_loop.c:370: warning: argument 'cls' from the argument list of interpreter_run has multiple @param documentation sections -/home/william/Git/gnunet/src/testing/testing_api_loop.c:441: warning: argument 'cmd' of command @param is not found in the argument list of GNUNET_TESTING_running(const struct GNUNET_TESTING_Command *command) -/home/william/Git/gnunet/src/testing/testing_api_loop.c:427: warning: The following parameter of GNUNET_TESTING_running(const struct GNUNET_TESTING_Command *command) is not documented: - parameter 'command' -/home/william/Git/gnunet/src/testing/testing_api_loop.c:455: warning: argument 'cmd' of command @param is not found in the argument list of GNUNET_TESTING_finished(struct GNUNET_TESTING_Command *command) -/home/william/Git/gnunet/src/testing/testing_api_loop.c:427: warning: The following parameter of GNUNET_TESTING_finished(struct GNUNET_TESTING_Command *command) is not documented: - parameter 'command' -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:2780: warning: argument 'cls' from the argument list of listen_cb has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:980: warning: argument 'out' of command @param is not found in the argument list of calculate_hmac(struct GNUNET_HashCode *hmac_secret, const void *buf, size_t buf_size, struct GNUNET_ShortHashCode *smac) -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:1154: warning: argument 'out' of command @param is not found in the argument list of setup_cipher(const struct GNUNET_HashCode *dh, const struct GNUNET_PeerIdentity *pid, gcry_cipher_hd_t *cipher, struct GNUNET_HashCode *hmac_key) -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:1154: warning: argument 'out' of command @param is not found in the argument list of setup_cipher(const struct GNUNET_HashCode *dh, const struct GNUNET_PeerIdentity *pid, gcry_cipher_hd_t *cipher, struct GNUNET_HashCode *hmac_key) -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:1288: warning: argument 'in' of command @param is not found in the argument list of setup_in_cipher(const struct GNUNET_CRYPTO_EcdhePublicKey *ephemeral, struct Queue *queue) -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:1288: warning: argument 'out' of command @param is not found in the argument list of setup_in_cipher(const struct GNUNET_CRYPTO_EcdhePublicKey *ephemeral, struct Queue *queue) -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:1445: warning: argument 'tc' of command @param is not found in the argument list of send_challenge(struct GNUNET_CRYPTO_ChallengeNonceP challenge, struct Queue *queue) -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:1450: warning: The following parameter of send_challenge(struct GNUNET_CRYPTO_ChallengeNonceP challenge, struct Queue *queue) is not documented: - parameter 'challenge' -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:2013: warning: The following parameter of tcp_address_to_sockaddr_numeric_v6(socklen_t *sock_len, struct sockaddr_in6 v6, unsigned int port) is not documented: - parameter 'port' -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:2041: warning: The following parameter of tcp_address_to_sockaddr_numeric_v4(socklen_t *sock_len, struct sockaddr_in v4, unsigned int port) is not documented: - parameter 'port' -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:2065: warning: The following parameter of tcp_address_to_sockaddr_port_only(const char *bindto, unsigned int *port) is not documented: - parameter 'port' -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:2603: warning: argument 'out' of command @param is not found in the argument list of decrypt_and_check_tc(struct Queue *queue, struct TCPConfirmation *tc, char *ibuf) -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:3170: warning: argument 'in' of command @param is not found in the argument list of nat_address_cb(void *cls, void **app_ctx, int add_remove, enum GNUNET_NAT_AddressClass ac, const struct sockaddr *addr, socklen_t addrlen) -/home/william/Git/gnunet/src/transport/gnunet-communicator-tcp.c:3170: warning: argument 'out' of command @param is not found in the argument list of nat_address_cb(void *cls, void **app_ctx, int add_remove, enum GNUNET_NAT_AddressClass ac, const struct sockaddr *addr, socklen_t addrlen) -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:998: warning: argument 'out' of command @param is not found in the argument list of get_kid(const struct GNUNET_HashCode *msec, uint32_t serial, struct GNUNET_ShortHashCode *kid) -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:1130: warning: argument 'out' of command @param is not found in the argument list of get_iv_key(const struct GNUNET_HashCode *msec, uint32_t serial, char key[(256/8)], char iv[(96/8)]) -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:1130: warning: argument 'out' of command @param is not found in the argument list of get_iv_key(const struct GNUNET_HashCode *msec, uint32_t serial, char key[(256/8)], char iv[(96/8)]) -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:1191: warning: explicit link request to 'receiver_heap' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:1191: warning: explicit link request to 'sender_heap' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:1239: warning: argument 'in' of command @param is not found in the argument list of calculate_cmac(struct SharedSecret *ss) -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:1239: warning: argument 'out' of command @param is not found in the argument list of calculate_cmac(struct SharedSecret *ss) -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:1261: warning: argument 'queue' of command @param is not found in the argument list of pass_plaintext_to_core(struct SenderAddress *sender, const void *plaintext, size_t plaintext_len) -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:1269: warning: The following parameter of pass_plaintext_to_core(struct SenderAddress *sender, const void *plaintext, size_t plaintext_len) is not documented: - parameter 'sender' -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:1311: warning: argument 'out' of command @param is not found in the argument list of setup_cipher(const struct GNUNET_HashCode *msec, uint32_t serial, gcry_cipher_hd_t *cipher) -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:1398: warning: argument 'in' of command @param is not found in the argument list of setup_shared_secret_enc(const struct GNUNET_CRYPTO_EcdhePrivateKey *ephemeral, struct ReceiverAddress *receiver, int add_to_receiver) -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:1398: warning: argument 'out' of command @param is not found in the argument list of setup_shared_secret_enc(const struct GNUNET_CRYPTO_EcdhePrivateKey *ephemeral, struct ReceiverAddress *receiver, int add_to_receiver) -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:1404: warning: The following parameter of setup_shared_secret_enc(const struct GNUNET_CRYPTO_EcdhePrivateKey *ephemeral, struct ReceiverAddress *receiver, int add_to_receiver) is not documented: - parameter 'add_to_receiver' -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:2015: warning: The following parameter of decrypt_rekey(const struct UDPRekey *rekey, size_t rekey_len, struct KeyCacheEntry *kce, struct SenderAddress *sender) is not documented: - parameter 'sender' -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:2200: warning: argument 'ephermal' of command @param is not found in the argument list of verify_confirmation(const struct GNUNET_CRYPTO_EcdhePublicKey *ephemeral, const struct UDPConfirmation *uc) -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:2206: warning: The following parameter of verify_confirmation(const struct GNUNET_CRYPTO_EcdhePublicKey *ephemeral, const struct UDPConfirmation *uc) is not documented: - parameter 'ephemeral' -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:3458: warning: argument 'in' of command @param is not found in the argument list of nat_address_cb(void *cls, void **app_ctx, int add_remove, enum GNUNET_NAT_AddressClass ac, const struct sockaddr *addr, socklen_t addrlen) -/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:3458: warning: argument 'out' of command @param is not found in the argument list of nat_address_cb(void *cls, void **app_ctx, int add_remove, enum GNUNET_NAT_AddressClass ac, const struct sockaddr *addr, socklen_t addrlen) -/home/william/Git/gnunet/src/transport/gnunet-communicator-unix.c:299: warning: argument 'is_abstract' of command @param is not found in the argument list of unix_address_to_sockaddr(const char *unixpath, socklen_t *sock_len) -/home/william/Git/gnunet/src/transport/gnunet-communicator-unix.c:380: warning: argument 'plugin' of command @param is not found in the argument list of lookup_queue(const struct GNUNET_PeerIdentity *peer, const struct sockaddr_un *un, socklen_t un_len) -/home/william/Git/gnunet/src/transport/gnunet-communicator-unix.c:380: warning: argument 'address' of command @param is not found in the argument list of lookup_queue(const struct GNUNET_PeerIdentity *peer, const struct sockaddr_un *un, socklen_t un_len) -/home/william/Git/gnunet/src/transport/gnunet-communicator-unix.c:386: warning: The following parameters of lookup_queue(const struct GNUNET_PeerIdentity *peer, const struct sockaddr_un *un, socklen_t un_len) are not documented: - parameter 'peer' - parameter 'un' - parameter 'un_len' -/home/william/Git/gnunet/src/transport/gnunet-communicator-unix.c:618: warning: argument 'peer' of command @param is not found in the argument list of setup_queue(const struct GNUNET_PeerIdentity *target, enum GNUNET_TRANSPORT_ConnectionStatus cs, const struct sockaddr_un *un, socklen_t un_len) -/home/william/Git/gnunet/src/transport/gnunet-communicator-unix.c:627: warning: The following parameter of setup_queue(const struct GNUNET_PeerIdentity *target, enum GNUNET_TRANSPORT_ConnectionStatus cs, const struct sockaddr_un *un, socklen_t un_len) is not documented: - parameter 'target' -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:3252: warning: Found unknown command '\dvh' -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:9528: warning: argument 'cls' from the argument list of transmit_on_queue has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:3605: warning: The following parameter of schedule_transmit_on_queue(struct GNUNET_TIME_Relative delay, struct Queue *queue, enum GNUNET_SCHEDULER_Priority p) is not documented: - parameter 'delay' -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:4082: warning: argument 'out' of command @param is not found in the argument list of pick_random_dv_hops(const struct DistanceVector *dv, enum RouteMessageOptions options, struct DistanceVectorHop **hops_array, unsigned int hops_array_length) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:4331: warning: argument 'in' of command @param is not found in the argument list of update_ephemeral(struct DistanceVector *dv) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:4331: warning: argument 'out' of command @param is not found in the argument list of update_ephemeral(struct DistanceVector *dv) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:4564: warning: argument 'out' of command @param is not found in the argument list of dv_setup_key_state_from_km(const struct GNUNET_HashCode *km, const struct GNUNET_ShortHashCode *iv, struct DVKeyState *key) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:4605: warning: argument 'out' of command @param is not found in the argument list of dh_key_derive_eph_pid(const struct GNUNET_CRYPTO_EcdhePrivateKey *priv_ephemeral, const struct GNUNET_PeerIdentity *target, const struct GNUNET_ShortHashCode *iv, struct DVKeyState *key) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:4630: warning: argument 'priv_ephemeral' of command @param is not found in the argument list of dh_key_derive_eph_pub(const struct GNUNET_CRYPTO_EcdhePublicKey *pub_ephemeral, const struct GNUNET_ShortHashCode *iv, struct DVKeyState *key) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:4630: warning: argument 'target' of command @param is not found in the argument list of dh_key_derive_eph_pub(const struct GNUNET_CRYPTO_EcdhePublicKey *pub_ephemeral, const struct GNUNET_ShortHashCode *iv, struct DVKeyState *key) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:4630: warning: argument 'out' of command @param is not found in the argument list of dh_key_derive_eph_pub(const struct GNUNET_CRYPTO_EcdhePublicKey *pub_ephemeral, const struct GNUNET_ShortHashCode *iv, struct DVKeyState *key) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:4638: warning: The following parameter of dh_key_derive_eph_pub(const struct GNUNET_CRYPTO_EcdhePublicKey *pub_ephemeral, const struct GNUNET_ShortHashCode *iv, struct DVKeyState *key) is not documented: - parameter 'pub_ephemeral' -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:4653: warning: argument 'out' of command @param is not found in the argument list of dv_hmac(const struct DVKeyState *key, struct GNUNET_HashCode *hmac, const void *data, size_t data_size) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:4672: warning: argument 'out' of command @param is not found in the argument list of dv_encrypt(struct DVKeyState *key, const void *in, void *dst, size_t in_size) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:4680: warning: argument 'in' from the argument list of dv_encrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:4689: warning: argument 'in' of command @param is not found in the argument list of dv_decrypt(struct DVKeyState *key, void *out, const void *ciph, size_t out_size) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:4697: warning: argument 'out' from the argument list of dv_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:4737: warning: argument 'target' of command @param is not found in the argument list of encapsulate_for_dv(struct DistanceVector *dv, unsigned int num_dvhs, struct DistanceVectorHop **dvhs, const struct GNUNET_MessageHeader *hdr, DVMessageHandler use, void *use_cls, enum RouteMessageOptions options, enum GNUNET_GenericReturnValue without_fc) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:4737: warning: argument 'shall' of command @param is not found in the argument list of encapsulate_for_dv(struct DistanceVector *dv, unsigned int num_dvhs, struct DistanceVectorHop **dvhs, const struct GNUNET_MessageHeader *hdr, DVMessageHandler use, void *use_cls, enum RouteMessageOptions options, enum GNUNET_GenericReturnValue without_fc) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:4730: warning: The following parameters of encapsulate_for_dv(struct DistanceVector *dv, unsigned int num_dvhs, struct DistanceVectorHop **dvhs, const struct GNUNET_MessageHeader *hdr, DVMessageHandler use, void *use_cls, enum RouteMessageOptions options, enum GNUNET_GenericReturnValue without_fc) are not documented: - parameter 'dv' - parameter 'without_fc' -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:4866: warning: argument 'target' of command @param is not found in the argument list of route_control_message_without_fc(struct VirtualLink *vl, const struct GNUNET_MessageHeader *hdr, enum RouteMessageOptions options) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:4856: warning: The following parameter of route_control_message_without_fc(struct VirtualLink *vl, const struct GNUNET_MessageHeader *hdr, enum RouteMessageOptions options) is not documented: - parameter 'vl' -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:6148: warning: argument 'in' of command @param is not found in the argument list of update_pd_age(struct PerformanceData *pd, unsigned int age) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:6148: warning: argument 'out' of command @param is not found in the argument list of update_pd_age(struct PerformanceData *pd, unsigned int age) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:6177: warning: argument 'in' of command @param is not found in the argument list of update_performance_data(struct PerformanceData *pd, struct GNUNET_TIME_Relative rtt, uint16_t bytes_transmitted_ok) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:6177: warning: argument 'out' of command @param is not found in the argument list of update_performance_data(struct PerformanceData *pd, struct GNUNET_TIME_Relative rtt, uint16_t bytes_transmitted_ok) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:6340: warning: explicit link request to 'GNUNET_Ok' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:6929: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_DV_INITIATOR' could not be resolved -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:7555: warning: Found unknown command '\ea' -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:7556: warning: argument 'origin' of command @param is not found in the argument list of forward_dv_box(struct Neighbour *next_hop, struct TransportDVBoxMessage *hdr, uint16_t total_hops, uint16_t num_hops, const struct GNUNET_PeerIdentity *hops, const void *enc_payload, uint16_t enc_payload_size) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:7556: warning: argument 'payload' of command @param is not found in the argument list of forward_dv_box(struct Neighbour *next_hop, struct TransportDVBoxMessage *hdr, uint16_t total_hops, uint16_t num_hops, const struct GNUNET_PeerIdentity *hops, const void *enc_payload, uint16_t enc_payload_size) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:7556: warning: argument 'payload_size' of command @param is not found in the argument list of forward_dv_box(struct Neighbour *next_hop, struct TransportDVBoxMessage *hdr, uint16_t total_hops, uint16_t num_hops, const struct GNUNET_PeerIdentity *hops, const void *enc_payload, uint16_t enc_payload_size) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:7567: warning: The following parameters of forward_dv_box(struct Neighbour *next_hop, struct TransportDVBoxMessage *hdr, uint16_t total_hops, uint16_t num_hops, const struct GNUNET_PeerIdentity *hops, const void *enc_payload, uint16_t enc_payload_size) are not documented: - parameter 'hdr' - parameter 'enc_payload' - parameter 'enc_payload_size' -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:8088: warning: argument 'obm' of command @param is not found in the argument list of check_incoming_msg(void *cls, const struct GNUNET_TRANSPORT_IncomingMessage *im) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:8096: warning: The following parameter of check_incoming_msg(void *cls, const struct GNUNET_TRANSPORT_IncomingMessage *im) is not documented: - parameter 'im' -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:8685: warning: The following parameter of handle_incoming_msg(void *cls, const struct GNUNET_TRANSPORT_IncomingMessage *im) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:9306: warning: argument 'in' of command @param is not found in the argument list of select_best_pending_from_link(struct PendingMessageScoreContext *sc, struct Queue *queue, struct VirtualLink *vl, struct DistanceVectorHop *dvh, size_t overhead) -/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:9306: warning: argument 'out' of command @param is not found in the argument list of select_best_pending_from_link(struct PendingMessageScoreContext *sc, struct Queue *queue, struct VirtualLink *vl, struct DistanceVectorHop *dvh, size_t overhead) -/home/william/Git/gnunet/src/transport/gnunet-service-transport.c:2198: warning: argument 'cls' from the argument list of do_blacklist_check has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport.c:1921: warning: argument 'ats' of command @param is not found in the argument list of ats_request_address_change(void *cls, const struct GNUNET_PeerIdentity *peer, const struct GNUNET_HELLO_Address *address, struct GNUNET_ATS_Session *session, struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out, struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in) -/home/william/Git/gnunet/src/transport/gnunet-service-transport.c:1921: warning: argument 'ats_count' of command @param is not found in the argument list of ats_request_address_change(void *cls, const struct GNUNET_PeerIdentity *peer, const struct GNUNET_HELLO_Address *address, struct GNUNET_ATS_Session *session, struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out, struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in) -/home/william/Git/gnunet/src/transport/gnunet-service-transport.c:2119: warning: argument 'message' of command @param is not found in the argument list of handle_client_set_metric(void *cls, const struct TrafficMetricMessage *tm) -/home/william/Git/gnunet/src/transport/gnunet-service-transport.c:2126: warning: The following parameter of handle_client_set_metric(void *cls, const struct TrafficMetricMessage *tm) is not documented: - parameter 'tm' -/home/william/Git/gnunet/src/transport/gnunet-service-transport.h:173: warning: argument 'cls' from the argument list of GST_receive_callback has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport.h:173: warning: argument 'address' from the argument list of GST_receive_callback has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport.h:173: warning: argument 'session' from the argument list of GST_receive_callback has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport.h:173: warning: argument 'message' from the argument list of GST_receive_callback has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_ats.h:120: warning: argument 'address' from the argument list of GST_ats_add_address has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_ats.h:120: warning: argument 'prop' from the argument list of GST_ats_add_address has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_ats.c:759: warning: argument 'session' of command @param is not found in the argument list of GST_ats_update_delay(const struct GNUNET_HELLO_Address *address, struct GNUNET_TIME_Relative delay) -/home/william/Git/gnunet/src/transport/gnunet-service-transport_ats.h:161: warning: argument 'address' from the argument list of GST_ats_update_delay has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_ats.h:161: warning: argument 'delay' from the argument list of GST_ats_update_delay has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_hello.h:96: warning: argument 'address' from the argument list of GST_hello_test_address has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_hello.h:96: warning: argument 'sig' from the argument list of GST_hello_test_address has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_hello.h:96: warning: argument 'sig_expiration' from the argument list of GST_hello_test_address has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_manipulation.c:168: warning: argument 'message' of command @param is not found in the argument list of GST_manipulation_set_metric(const struct TrafficMetricMessage *tm) -/home/william/Git/gnunet/src/transport/gnunet-service-transport_manipulation.c:174: warning: The following parameter of GST_manipulation_set_metric(const struct TrafficMetricMessage *tm) is not documented: - parameter 'tm' -/home/william/Git/gnunet/src/transport/gnunet-service-transport_manipulation.c:346: warning: argument 'IN' of command @param is not found in the argument list of GST_manipulation_manipulate_metrics(const struct GNUNET_HELLO_Address *address, struct GNUNET_ATS_Session *session, struct GNUNET_ATS_Properties *prop) -/home/william/Git/gnunet/src/transport/gnunet-service-transport_manipulation.c:346: warning: argument 'OUT' of command @param is not found in the argument list of GST_manipulation_manipulate_metrics(const struct GNUNET_HELLO_Address *address, struct GNUNET_ATS_Session *session, struct GNUNET_ATS_Properties *prop) -/home/william/Git/gnunet/src/transport/gnunet-service-transport_manipulation.h:39: warning: argument 'message' of command @param is not found in the argument list of GST_manipulation_set_metric(const struct TrafficMetricMessage *tm) -/home/william/Git/gnunet/src/transport/gnunet-service-transport_manipulation.h:45: warning: The following parameter of GST_manipulation_set_metric(const struct TrafficMetricMessage *tm) is not documented: - parameter 'tm' -/home/william/Git/gnunet/src/transport/gnunet-service-transport_manipulation.h:59: warning: argument 'target' from the argument list of GST_manipulation_send has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_manipulation.h:59: warning: argument 'msg' from the argument list of GST_manipulation_send has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_manipulation.h:59: warning: argument 'msg_size' from the argument list of GST_manipulation_send has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_manipulation.h:59: warning: argument 'timeout' from the argument list of GST_manipulation_send has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_manipulation.h:59: warning: argument 'cont' from the argument list of GST_manipulation_send has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_manipulation.h:59: warning: argument 'cont_cls' from the argument list of GST_manipulation_send has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_manipulation.h:84: warning: argument 'IN' of command @param is not found in the argument list of GST_manipulation_manipulate_metrics(const struct GNUNET_HELLO_Address *address, struct GNUNET_ATS_Session *session, struct GNUNET_ATS_Properties *prop) -/home/william/Git/gnunet/src/transport/gnunet-service-transport_manipulation.h:84: warning: argument 'OUT' of command @param is not found in the argument list of GST_manipulation_manipulate_metrics(const struct GNUNET_HELLO_Address *address, struct GNUNET_ATS_Session *session, struct GNUNET_ATS_Properties *prop) -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.c:3030: warning: argument 'cls' from the argument list of master_task has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.c:2999: warning: argument 'message' of command @param is not found in the argument list of GST_neighbours_notify_data_sent(const struct GNUNET_HELLO_Address *address, struct GNUNET_ATS_Session *session, size_t size) -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.c:3007: warning: The following parameter of GST_neighbours_notify_data_sent(const struct GNUNET_HELLO_Address *address, struct GNUNET_ATS_Session *session, size_t size) is not documented: - parameter 'size' -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:251: warning: argument 'peer' of command @param is not found in the argument list of GST_neighbours_handle_session_syn_ack(const struct GNUNET_MessageHeader *message, const struct GNUNET_HELLO_Address *address, struct GNUNET_ATS_Session *session) -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:89: warning: argument 'target' from the argument list of GST_neighbours_send has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:89: warning: argument 'msg' from the argument list of GST_neighbours_send has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:89: warning: argument 'msg_size' from the argument list of GST_neighbours_send has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:89: warning: argument 'timeout' from the argument list of GST_neighbours_send has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:89: warning: argument 'cont' from the argument list of GST_neighbours_send has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:89: warning: argument 'cont_cls' from the argument list of GST_neighbours_send has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:89: warning: argument 'sender' from the argument list of GST_neighbours_calculate_receive_delay has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:89: warning: argument 'size' from the argument list of GST_neighbours_calculate_receive_delay has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:89: warning: argument 'do_forward' from the argument list of GST_neighbours_calculate_receive_delay has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:188: warning: argument 'peer' from the argument list of GST_neighbours_session_terminated has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:188: warning: argument 'session' from the argument list of GST_neighbours_session_terminated has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:207: warning: argument 'message' of command @param is not found in the argument list of GST_neighbours_notify_data_sent(const struct GNUNET_HELLO_Address *address, struct GNUNET_ATS_Session *session, size_t size) -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:215: warning: The following parameter of GST_neighbours_notify_data_sent(const struct GNUNET_HELLO_Address *address, struct GNUNET_ATS_Session *session, size_t size) is not documented: - parameter 'size' -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:230: warning: argument 'address' from the argument list of GST_neighbours_switch_to_address has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:230: warning: argument 'session' from the argument list of GST_neighbours_switch_to_address has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:230: warning: argument 'bandwidth_in' from the argument list of GST_neighbours_switch_to_address has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:230: warning: argument 'bandwidth_out' from the argument list of GST_neighbours_switch_to_address has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:247: warning: argument 'message' from the argument list of GST_neighbours_handle_session_syn has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:247: warning: argument 'peer' from the argument list of GST_neighbours_handle_session_syn has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:251: warning: argument 'peer' of command @param is not found in the argument list of GST_neighbours_handle_session_syn_ack(const struct GNUNET_MessageHeader *message, const struct GNUNET_HELLO_Address *address, struct GNUNET_ATS_Session *session) -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:261: warning: argument 'message' from the argument list of GST_neighbours_handle_session_syn_ack has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:261: warning: argument 'address' from the argument list of GST_neighbours_handle_session_syn_ack has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:261: warning: argument 'session' from the argument list of GST_neighbours_handle_session_syn_ack has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:279: warning: argument 'message' from the argument list of GST_neighbours_handle_session_ack has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:279: warning: argument 'address' from the argument list of GST_neighbours_handle_session_ack has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:279: warning: argument 'session' from the argument list of GST_neighbours_handle_session_ack has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:302: warning: argument 'peer' from the argument list of GST_neighbours_handle_quota_message has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.h:302: warning: argument 'msg' from the argument list of GST_neighbours_handle_quota_message has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_plugins.c:81: warning: argument 'session' of command @param is not found in the argument list of plugin_env_update_distance(void *cls, const struct GNUNET_HELLO_Address *address, uint32_t distance) -/home/william/Git/gnunet/src/transport/gnunet-service-transport_plugins.c:124: warning: argument 'address_type_cb' of command @param is not found in the argument list of GST_plugins_load(GNUNET_TRANSPORT_PluginReceiveCallback recv_cb, GNUNET_TRANSPORT_AddressNotification address_cb, GNUNET_TRANSPORT_SessionStart session_start_cb, GNUNET_TRANSPORT_SessionEnd session_end_cb) -/home/william/Git/gnunet/src/transport/gnunet-service-transport_plugins.c:124: warning: argument 'register_quota_cb' of command @param is not found in the argument list of GST_plugins_load(GNUNET_TRANSPORT_PluginReceiveCallback recv_cb, GNUNET_TRANSPORT_AddressNotification address_cb, GNUNET_TRANSPORT_SessionStart session_start_cb, GNUNET_TRANSPORT_SessionEnd session_end_cb) -/home/william/Git/gnunet/src/transport/gnunet-service-transport_plugins.c:124: warning: argument 'unregister_quota_cb' of command @param is not found in the argument list of GST_plugins_load(GNUNET_TRANSPORT_PluginReceiveCallback recv_cb, GNUNET_TRANSPORT_AddressNotification address_cb, GNUNET_TRANSPORT_SessionStart session_start_cb, GNUNET_TRANSPORT_SessionEnd session_end_cb) -/home/william/Git/gnunet/src/transport/gnunet-service-transport_plugins.c:124: warning: argument 'address_type_cb' of command @param is not found in the argument list of GST_plugins_load(GNUNET_TRANSPORT_PluginReceiveCallback recv_cb, GNUNET_TRANSPORT_AddressNotification address_cb, GNUNET_TRANSPORT_SessionStart session_start_cb, GNUNET_TRANSPORT_SessionEnd session_end_cb) -/home/william/Git/gnunet/src/transport/gnunet-service-transport_plugins.c:124: warning: argument 'metric_update_cb' of command @param is not found in the argument list of GST_plugins_load(GNUNET_TRANSPORT_PluginReceiveCallback recv_cb, GNUNET_TRANSPORT_AddressNotification address_cb, GNUNET_TRANSPORT_SessionStart session_start_cb, GNUNET_TRANSPORT_SessionEnd session_end_cb) -/home/william/Git/gnunet/src/transport/gnunet-service-transport_plugins.c:124: warning: argument 'address_type_cb' of command @param is not found in the argument list of GST_plugins_load(GNUNET_TRANSPORT_PluginReceiveCallback recv_cb, GNUNET_TRANSPORT_AddressNotification address_cb, GNUNET_TRANSPORT_SessionStart session_start_cb, GNUNET_TRANSPORT_SessionEnd session_end_cb) -/home/william/Git/gnunet/src/transport/gnunet-service-transport_plugins.h:52: warning: argument 'recv_cb' from the argument list of GST_plugins_load has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_plugins.h:52: warning: argument 'address_cb' from the argument list of GST_plugins_load has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_plugins.h:52: warning: argument 'session_start_cb' from the argument list of GST_plugins_load has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_plugins.h:52: warning: argument 'session_end_cb' from the argument list of GST_plugins_load has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_plugins.h:96: warning: argument 'address' from the argument list of GST_plugins_a2s has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_validation.h:74: warning: argument 'sender' from the argument list of GST_validation_handle_ping has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_validation.h:74: warning: argument 'hdr' from the argument list of GST_validation_handle_ping has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_validation.h:74: warning: argument 'sender_address' from the argument list of GST_validation_handle_ping has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_validation.h:74: warning: argument 'session' from the argument list of GST_validation_handle_ping has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_validation.h:141: warning: argument 'target' from the argument list of GST_validation_get_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_validation.h:141: warning: argument 'cb' from the argument list of GST_validation_get_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-service-transport_validation.h:141: warning: argument 'cb_cls' from the argument list of GST_validation_get_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/gnunet-transport-profiler.c:297: warning: argument 'size' of command @param is not found in the argument list of send_msg(void *cls) -/home/william/Git/gnunet/src/transport/gnunet-transport-profiler.c:297: warning: argument 'buf' of command @param is not found in the argument list of send_msg(void *cls) -/home/william/Git/gnunet/src/transport/plugin_transport_http_client.c:1292: warning: argument 'tc' of command @param is not found in the argument list of client_run(void *cls) -/home/william/Git/gnunet/src/transport/plugin_transport_http_client.c:1298: warning: argument 'cls' from the argument list of client_run has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_client.c:1702: warning: argument 's' from the argument list of client_connect_put has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:147: warning: argument 'cls' from the argument list of http_common_plugin_address_pretty_printer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:147: warning: argument 'type' from the argument list of http_common_plugin_address_pretty_printer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:147: warning: argument 'addr' from the argument list of http_common_plugin_address_pretty_printer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:147: warning: argument 'addrlen' from the argument list of http_common_plugin_address_pretty_printer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:147: warning: argument 'numeric' from the argument list of http_common_plugin_address_pretty_printer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:147: warning: argument 'timeout' from the argument list of http_common_plugin_address_pretty_printer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:147: warning: argument 'asc' from the argument list of http_common_plugin_address_pretty_printer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:147: warning: argument 'asc_cls' from the argument list of http_common_plugin_address_pretty_printer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:170: warning: argument 'plugin' from the argument list of http_common_plugin_address_to_string has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:170: warning: argument 'addr' from the argument list of http_common_plugin_address_to_string has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:170: warning: argument 'addrlen' from the argument list of http_common_plugin_address_to_string has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:188: warning: argument 'cls' from the argument list of http_common_plugin_string_to_address has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:188: warning: argument 'addr' from the argument list of http_common_plugin_string_to_address has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:188: warning: argument 'addrlen' from the argument list of http_common_plugin_string_to_address has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:188: warning: argument 'buf' from the argument list of http_common_plugin_string_to_address has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:188: warning: argument 'added' from the argument list of http_common_plugin_string_to_address has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:204: warning: argument 'protocol' from the argument list of http_common_address_from_socket has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:204: warning: argument 'addr' from the argument list of http_common_address_from_socket has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:204: warning: argument 'addrlen' from the argument list of http_common_address_from_socket has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:252: warning: argument 'addr1' from the argument list of http_common_cmp_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:252: warning: argument 'addrlen1' from the argument list of http_common_cmp_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:252: warning: argument 'addr2' from the argument list of http_common_cmp_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_common.h:252: warning: argument 'addrlen2' from the argument list of http_common_cmp_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_http_server.c:1741: warning: explicit link request to 'MHD_YES' could not be resolved -/home/william/Git/gnunet/src/transport/plugin_transport_http_server.c:1741: warning: explicit link request to 'MHD_NO' could not be resolved -/home/william/Git/gnunet/src/transport/plugin_transport_http_server.c:1995: warning: explicit link request to 'MHD_OPTION_NOTIFY_CONNECTION' could not be resolved -/home/william/Git/gnunet/src/transport/plugin_transport_http_server.c:2027: warning: explicit link request to 'MHD_YES' could not be resolved -/home/william/Git/gnunet/src/transport/plugin_transport_http_server.c:2027: warning: explicit link request to 'MHD_NO' could not be resolved -/home/william/Git/gnunet/src/transport/plugin_transport_http_server.c:2564: warning: argument 'in' of command @param is not found in the argument list of server_nat_port_map_callback(void *cls, void **app_ctx, int add_remove, enum GNUNET_NAT_AddressClass ac, const struct sockaddr *addr, socklen_t addrlen) -/home/william/Git/gnunet/src/transport/plugin_transport_http_server.c:2564: warning: argument 'out' of command @param is not found in the argument list of server_nat_port_map_callback(void *cls, void **app_ctx, int add_remove, enum GNUNET_NAT_AddressClass ac, const struct sockaddr *addr, socklen_t addrlen) -/home/william/Git/gnunet/src/transport/plugin_transport_tcp.c:293: warning: explicit link request to 'LEGACY_SERVICE_shutdown()' could not be resolved -/home/william/Git/gnunet/src/transport/plugin_transport_tcp.c:80: warning: argument 'srv' of command @param is not found in the argument list of LEGACY_SERVICE_stop(struct LEGACY_SERVICE_Context *sctx) -/home/william/Git/gnunet/src/transport/plugin_transport_tcp.c:315: warning: argument 'client' from the argument list of GNUNET_SERVER_client_disconnect has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_tcp.c:376: warning: argument 'mst' from the argument list of GNUNET_SERVER_mst_receive has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_tcp.c:376: warning: argument 'client_identity' from the argument list of GNUNET_SERVER_mst_receive has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_tcp.c:376: warning: argument 'buf' from the argument list of GNUNET_SERVER_mst_receive has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_tcp.c:376: warning: argument 'size' from the argument list of GNUNET_SERVER_mst_receive has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_tcp.c:376: warning: argument 'purge' from the argument list of GNUNET_SERVER_mst_receive has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_tcp.c:376: warning: argument 'one_shot' from the argument list of GNUNET_SERVER_mst_receive has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_tcp.c:442: warning: argument 'client' from the argument list of GNUNET_SERVER_notify_transmit_ready has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_tcp.c:442: warning: argument 'size' from the argument list of GNUNET_SERVER_notify_transmit_ready has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_tcp.c:442: warning: argument 'timeout' from the argument list of GNUNET_SERVER_notify_transmit_ready has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_tcp.c:442: warning: argument 'callback' from the argument list of GNUNET_SERVER_notify_transmit_ready has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_tcp.c:442: warning: argument 'callback_cls' from the argument list of GNUNET_SERVER_notify_transmit_ready has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_tcp.c:503: warning: argument 'server' from the argument list of GNUNET_SERVER_suspend has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_tcp.c:551: warning: argument 'server' from the argument list of GNUNET_SERVER_resume has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/plugin_transport_tcp.c:1419: warning: argument 'in' of command @param is not found in the argument list of tcp_nat_port_map_callback(void *cls, void **app_ctx, int add_remove, enum GNUNET_NAT_AddressClass ac, const struct sockaddr *addr, socklen_t addrlen) -/home/william/Git/gnunet/src/transport/plugin_transport_tcp.c:1419: warning: argument 'out' of command @param is not found in the argument list of tcp_nat_port_map_callback(void *cls, void **app_ctx, int add_remove, enum GNUNET_NAT_AddressClass ac, const struct sockaddr *addr, socklen_t addrlen) -/home/william/Git/gnunet/src/transport/plugin_transport_udp.c:1255: warning: argument 'in' of command @param is not found in the argument list of udp_nat_port_map_callback(void *cls, void **app_ctx, int add_remove, enum GNUNET_NAT_AddressClass ac, const struct sockaddr *addr, socklen_t addrlen) -/home/william/Git/gnunet/src/transport/plugin_transport_udp.c:1255: warning: argument 'out' of command @param is not found in the argument list of udp_nat_port_map_callback(void *cls, void **app_ctx, int add_remove, enum GNUNET_NAT_AddressClass ac, const struct sockaddr *addr, socklen_t addrlen) -/home/william/Git/gnunet/src/transport/plugin_transport_udp_broadcasting.c:129: warning: argument 'client' of command @param is not found in the argument list of broadcast_mst_cb(void *cls, const struct GNUNET_MessageHeader *message) -/home/william/Git/gnunet/src/transport/tcp_connection_legacy.c:300: warning: explicit link request to 'GNUNET_connection_destroy()' could not be resolved -/home/william/Git/gnunet/src/transport/transport-testing-cmds.h:196: warning: argument 'm' of command @param is not found in the argument list of GNUNET_TRANSPORT_cmd_start_peer(const char *label, const char *system_label, uint32_t no, char *node_ip, struct GNUNET_MQ_MessageHandler *handlers, const char *cfgname, GNUNET_TRANSPORT_notify_connect_cb notify_connect, unsigned int broadcast) -/home/william/Git/gnunet/src/transport/transport-testing-cmds.h:196: warning: argument 'n' of command @param is not found in the argument list of GNUNET_TRANSPORT_cmd_start_peer(const char *label, const char *system_label, uint32_t no, char *node_ip, struct GNUNET_MQ_MessageHandler *handlers, const char *cfgname, GNUNET_TRANSPORT_notify_connect_cb notify_connect, unsigned int broadcast) -/home/william/Git/gnunet/src/transport/transport-testing-cmds.h:196: warning: argument 'local_m' of command @param is not found in the argument list of GNUNET_TRANSPORT_cmd_start_peer(const char *label, const char *system_label, uint32_t no, char *node_ip, struct GNUNET_MQ_MessageHandler *handlers, const char *cfgname, GNUNET_TRANSPORT_notify_connect_cb notify_connect, unsigned int broadcast) -/home/william/Git/gnunet/src/transport/transport-testing-cmds.h:32: warning: The following parameters of GNUNET_TRANSPORT_cmd_start_peer(const char *label, const char *system_label, uint32_t no, char *node_ip, struct GNUNET_MQ_MessageHandler *handlers, const char *cfgname, GNUNET_TRANSPORT_notify_connect_cb notify_connect, unsigned int broadcast) are not documented: - parameter 'no' - parameter 'node_ip' -/home/william/Git/gnunet/src/transport/transport-testing-cmds.h:225: warning: argument 'create_peer_label' of command @param is not found in the argument list of GNUNET_TRANSPORT_cmd_connect_peers(const char *label, const char *start_peer_label, const char *create_label, uint32_t num, struct GNUNET_TESTING_NetjailTopology *topology, unsigned int additional_connects) -/home/william/Git/gnunet/src/transport/transport-testing-cmds.h:225: warning: argument 'The' of command @param is not found in the argument list of GNUNET_TRANSPORT_cmd_connect_peers(const char *label, const char *start_peer_label, const char *create_label, uint32_t num, struct GNUNET_TESTING_NetjailTopology *topology, unsigned int additional_connects) -/home/william/Git/gnunet/src/transport/transport-testing-cmds.h:32: warning: The following parameters of GNUNET_TRANSPORT_cmd_connect_peers(const char *label, const char *start_peer_label, const char *create_label, uint32_t num, struct GNUNET_TESTING_NetjailTopology *topology, unsigned int additional_connects) are not documented: - parameter 'create_label' - parameter 'topology' -/home/william/Git/gnunet/src/transport/transport_api_cmd_send_simple.c:180: warning: argument 'create_peer_label' of command @param is not found in the argument list of GNUNET_TRANSPORT_cmd_send_simple(const char *label, const char *start_peer_label, const char *create_label, uint32_t num, struct GNUNET_TESTING_NetjailTopology *topology) -/home/william/Git/gnunet/src/transport/transport_api_cmd_send_simple.c:180: warning: argument 'The' of command @param is not found in the argument list of GNUNET_TRANSPORT_cmd_send_simple(const char *label, const char *start_peer_label, const char *create_label, uint32_t num, struct GNUNET_TESTING_NetjailTopology *topology) -/home/william/Git/gnunet/src/transport/transport_api_cmd_send_simple.c:180: warning: argument 'The' of command @param is not found in the argument list of GNUNET_TRANSPORT_cmd_send_simple(const char *label, const char *start_peer_label, const char *create_label, uint32_t num, struct GNUNET_TESTING_NetjailTopology *topology) -/home/william/Git/gnunet/src/transport/transport-testing-cmds.h:32: warning: argument 'label' from the argument list of GNUNET_TRANSPORT_cmd_send_simple has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing-cmds.h:32: warning: argument 'start_peer_label' from the argument list of GNUNET_TRANSPORT_cmd_send_simple has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing-cmds.h:32: warning: argument 'num' from the argument list of GNUNET_TRANSPORT_cmd_send_simple has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing-cmds.h:32: warning: The following parameters of GNUNET_TRANSPORT_cmd_send_simple(const char *label, const char *start_peer_label, const char *create_label, uint32_t num, struct GNUNET_TESTING_NetjailTopology *topology) are not documented: - parameter 'create_label' - parameter 'topology' -/home/william/Git/gnunet/src/transport/transport-testing-cmds.h:267: warning: argument 'The' of command @param is not found in the argument list of GNUNET_TRANSPORT_cmd_backchannel_check(const char *label, const char *start_peer_label, const char *create_label, uint32_t num, unsigned int node_n, unsigned int namespace_n, struct GNUNET_TESTING_NetjailTopology *topology) -/home/william/Git/gnunet/src/transport/transport-testing-cmds.h:32: warning: The following parameter of GNUNET_TRANSPORT_cmd_backchannel_check(const char *label, const char *start_peer_label, const char *create_label, uint32_t num, unsigned int node_n, unsigned int namespace_n, struct GNUNET_TESTING_NetjailTopology *topology) is not documented: - parameter 'topology' -/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:231: warning: argument 'msg' of command @param is not found in the argument list of handle_communicator_backchannel(void *cls, const struct GNUNET_TRANSPORT_CommunicatorBackchannel *bc_msg) -/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:238: warning: The following parameter of handle_communicator_backchannel(void *cls, const struct GNUNET_TRANSPORT_CommunicatorBackchannel *bc_msg) is not documented: - parameter 'bc_msg' -/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:282: warning: argument 'aam' of command @param is not found in the argument list of check_add_address(void *cls, const struct GNUNET_TRANSPORT_AddAddressMessage *msg) -/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:290: warning: The following parameter of check_add_address(void *cls, const struct GNUNET_TRANSPORT_AddAddressMessage *msg) is not documented: - parameter 'msg' -/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:364: warning: argument 'msg' of command @param is not found in the argument list of handle_incoming_msg(void *cls, const struct GNUNET_TRANSPORT_IncomingMessage *inc_msg) -/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:371: warning: The following parameter of handle_incoming_msg(void *cls, const struct GNUNET_TRANSPORT_IncomingMessage *inc_msg) is not documented: - parameter 'inc_msg' -/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:684: warning: argument 'communicator_available' of command @param is not found in the argument list of transport_communicator_start(struct GNUNET_TRANSPORT_TESTING_TransportCommunicatorHandle *tc_h) -/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:684: warning: argument 'cfg' of command @param is not found in the argument list of transport_communicator_start(struct GNUNET_TRANSPORT_TESTING_TransportCommunicatorHandle *tc_h) -/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:692: warning: The following parameter of transport_communicator_start(struct GNUNET_TRANSPORT_TESTING_TransportCommunicatorHandle *tc_h) is not documented: - parameter 'tc_h' -/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:754: warning: argument 'cls' of command @param is not found in the argument list of shutdown_process(struct GNUNET_OS_Process *proc) -/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:760: warning: The following parameter of shutdown_process(struct GNUNET_OS_Process *proc) is not documented: - parameter 'proc' -/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:812: warning: argument 'cfgname' of command @param is not found in the argument list of communicator_start(struct GNUNET_TRANSPORT_TESTING_TransportCommunicatorHandle *tc_h, const char *binary_name) -/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:818: warning: The following parameters of communicator_start(struct GNUNET_TRANSPORT_TESTING_TransportCommunicatorHandle *tc_h, const char *binary_name) are not documented: - parameter 'tc_h' - parameter 'binary_name' -/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:1006: warning: argument 'cfg' of command @param is not found in the argument list of GNUNET_TRANSPORT_TESTING_transport_communicator_service_start(const char *service_name, const char *binary_name, const char *cfg_filename, const struct GNUNET_PeerIdentity *peer_id, GNUNET_TRANSPORT_TESTING_CommunicatorAvailableCallback communicator_available_cb, GNUNET_TRANSPORT_TESTING_AddAddressCallback add_address_cb, GNUNET_TRANSPORT_TESTING_QueueCreateReplyCallback queue_create_reply_cb, GNUNET_TRANSPORT_TESTING_AddQueueCallback add_queue_cb, GNUNET_TRANSPORT_TESTING_IncomingMessageCallback incoming_message_cb, GNUNET_TRANSPORT_TESTING_BackchannelCallback bc_cb, void *cb_cls) -/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:1013: warning: expected whitespace after \a command -/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:1019: warning: The following parameters of GNUNET_TRANSPORT_TESTING_transport_communicator_service_start(const char *service_name, const char *binary_name, const char *cfg_filename, const struct GNUNET_PeerIdentity *peer_id, GNUNET_TRANSPORT_TESTING_CommunicatorAvailableCallback communicator_available_cb, GNUNET_TRANSPORT_TESTING_AddAddressCallback add_address_cb, GNUNET_TRANSPORT_TESTING_QueueCreateReplyCallback queue_create_reply_cb, GNUNET_TRANSPORT_TESTING_AddQueueCallback add_queue_cb, GNUNET_TRANSPORT_TESTING_IncomingMessageCallback incoming_message_cb, GNUNET_TRANSPORT_TESTING_BackchannelCallback bc_cb, void *cb_cls) are not documented: - parameter 'binary_name' - parameter 'cfg_filename' - parameter 'peer_id' - parameter 'queue_create_reply_cb' - parameter 'add_queue_cb' - parameter 'incoming_message_cb' - parameter 'bc_cb' -/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:1149: warning: argument 'tc_queue' of command @param is not found in the argument list of GNUNET_TRANSPORT_TESTING_transport_communicator_send(struct GNUNET_TRANSPORT_TESTING_TransportCommunicatorHandle *tc_h, GNUNET_SCHEDULER_TaskCallback cont, void *cont_cls, const void *payload, size_t payload_size) -/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:1159: warning: The following parameter of GNUNET_TRANSPORT_TESTING_transport_communicator_send(struct GNUNET_TRANSPORT_TESTING_TransportCommunicatorHandle *tc_h, GNUNET_SCHEDULER_TaskCallback cont, void *cont_cls, const void *payload, size_t payload_size) is not documented: - parameter 'tc_h' -/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:1006: warning: argument 'cfg' of command @param is not found in the argument list of GNUNET_TRANSPORT_TESTING_transport_communicator_service_start(const char *service_name, const char *binary_name, const char *cfg_filename, const struct GNUNET_PeerIdentity *peer_id, GNUNET_TRANSPORT_TESTING_CommunicatorAvailableCallback communicator_available_cb, GNUNET_TRANSPORT_TESTING_AddAddressCallback add_address_cb, GNUNET_TRANSPORT_TESTING_QueueCreateReplyCallback queue_create_reply_cb, GNUNET_TRANSPORT_TESTING_AddQueueCallback add_queue_cb, GNUNET_TRANSPORT_TESTING_IncomingMessageCallback incoming_message_cb, GNUNET_TRANSPORT_TESTING_BackchannelCallback bc_cb, void *cb_cls) -/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:1006: warning: argument 'communicator_available' of command @param is not found in the argument list of GNUNET_TRANSPORT_TESTING_transport_communicator_service_start(const char *service_name, const char *binary_name, const char *cfg_filename, const struct GNUNET_PeerIdentity *peer_id, GNUNET_TRANSPORT_TESTING_CommunicatorAvailableCallback communicator_available_cb, GNUNET_TRANSPORT_TESTING_AddAddressCallback add_address_cb, GNUNET_TRANSPORT_TESTING_QueueCreateReplyCallback queue_create_reply_cb, GNUNET_TRANSPORT_TESTING_AddQueueCallback add_queue_cb, GNUNET_TRANSPORT_TESTING_IncomingMessageCallback incoming_message_cb, GNUNET_TRANSPORT_TESTING_BackchannelCallback bc_cb, void *cb_cls) -/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:1006: warning: argument 'cfg' of command @param is not found in the argument list of GNUNET_TRANSPORT_TESTING_transport_communicator_service_start(const char *service_name, const char *binary_name, const char *cfg_filename, const struct GNUNET_PeerIdentity *peer_id, GNUNET_TRANSPORT_TESTING_CommunicatorAvailableCallback communicator_available_cb, GNUNET_TRANSPORT_TESTING_AddAddressCallback add_address_cb, GNUNET_TRANSPORT_TESTING_QueueCreateReplyCallback queue_create_reply_cb, GNUNET_TRANSPORT_TESTING_AddQueueCallback add_queue_cb, GNUNET_TRANSPORT_TESTING_IncomingMessageCallback incoming_message_cb, GNUNET_TRANSPORT_TESTING_BackchannelCallback bc_cb, void *cb_cls) -/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:1025: warning: expected whitespace after \a command -/home/william/Git/gnunet/src/transport/transport-testing-communicator.h:306: warning: argument 'service_name' from the argument list of GNUNET_TRANSPORT_TESTING_transport_communicator_service_start has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing-communicator.h:306: warning: argument 'add_address_cb' from the argument list of GNUNET_TRANSPORT_TESTING_transport_communicator_service_start has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing-communicator.h:306: warning: argument 'cb_cls' from the argument list of GNUNET_TRANSPORT_TESTING_transport_communicator_service_start has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing-communicator.h:306: warning: The following parameters of GNUNET_TRANSPORT_TESTING_transport_communicator_service_start(const char *service_name, const char *binary_name, const char *cfg_filename, const struct GNUNET_PeerIdentity *peer_id, GNUNET_TRANSPORT_TESTING_CommunicatorAvailableCallback communicator_available_cb, GNUNET_TRANSPORT_TESTING_AddAddressCallback add_address_cb, GNUNET_TRANSPORT_TESTING_QueueCreateReplyCallback queue_create_reply_cb, GNUNET_TRANSPORT_TESTING_AddQueueCallback add_queue_cb, GNUNET_TRANSPORT_TESTING_IncomingMessageCallback incoming_message_cb, GNUNET_TRANSPORT_TESTING_BackchannelCallback bc_cb, void *cb_cls) are not documented: - parameter 'binary_name' - parameter 'cfg_filename' - parameter 'peer_id' - parameter 'bc_cb' -/home/william/Git/gnunet/src/transport/transport-testing-communicator.h:343: warning: argument 'tc_queue' of command @param is not found in the argument list of GNUNET_TRANSPORT_TESTING_transport_communicator_send(struct GNUNET_TRANSPORT_TESTING_TransportCommunicatorHandle *tc_h, GNUNET_SCHEDULER_TaskCallback cont, void *cont_cls, const void *payload, size_t payload_size) -/home/william/Git/gnunet/src/transport/transport-testing-communicator.h:353: warning: The following parameter of GNUNET_TRANSPORT_TESTING_transport_communicator_send(struct GNUNET_TRANSPORT_TESTING_TransportCommunicatorHandle *tc_h, GNUNET_SCHEDULER_TaskCallback cont, void *cont_cls, const void *payload, size_t payload_size) is not documented: - parameter 'tc_h' -/home/william/Git/gnunet/src/transport/transport-testing-main.c:255: warning: Found unknown command '\my_nc' -/home/william/Git/gnunet/src/transport/transport-testing-main2.c:255: warning: Found unknown command '\my_nc' -/home/william/Git/gnunet/src/transport/transport-testing.h:328: warning: argument 'tth' of command @param is not found in the argument list of GNUNET_TRANSPORT_TESTING_connect_peers(struct GNUNET_TRANSPORT_TESTING_PeerContext *p1, struct GNUNET_TRANSPORT_TESTING_PeerContext *p2, GNUNET_SCHEDULER_TaskCallback cb, void *cls) -/home/william/Git/gnunet/src/transport/transport-testing.h:348: warning: argument 'tth' of command @param is not found in the argument list of GNUNET_TRANSPORT_TESTING_connect_peers_cancel(struct GNUNET_TRANSPORT_TESTING_ConnectRequest *cc) -/home/william/Git/gnunet/src/transport/transport-testing.h:291: warning: argument 'tth' from the argument list of GNUNET_TRANSPORT_TESTING_start_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:291: warning: argument 'cfgname' from the argument list of GNUNET_TRANSPORT_TESTING_start_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:291: warning: argument 'peer_id' from the argument list of GNUNET_TRANSPORT_TESTING_start_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:291: warning: argument 'handlers' from the argument list of GNUNET_TRANSPORT_TESTING_start_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:291: warning: argument 'nc' from the argument list of GNUNET_TRANSPORT_TESTING_start_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:291: warning: argument 'nd' from the argument list of GNUNET_TRANSPORT_TESTING_start_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:291: warning: argument 'cb_cls' from the argument list of GNUNET_TRANSPORT_TESTING_start_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:291: warning: argument 'start_cb' from the argument list of GNUNET_TRANSPORT_TESTING_start_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:291: warning: argument 'start_cb_cls' from the argument list of GNUNET_TRANSPORT_TESTING_start_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:322: warning: argument 'p' from the argument list of GNUNET_TRANSPORT_TESTING_restart_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:322: warning: argument 'restart_cb' from the argument list of GNUNET_TRANSPORT_TESTING_restart_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:322: warning: argument 'restart_cb_cls' from the argument list of GNUNET_TRANSPORT_TESTING_restart_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:328: warning: argument 'tth' of command @param is not found in the argument list of GNUNET_TRANSPORT_TESTING_connect_peers(struct GNUNET_TRANSPORT_TESTING_PeerContext *p1, struct GNUNET_TRANSPORT_TESTING_PeerContext *p2, GNUNET_SCHEDULER_TaskCallback cb, void *cls) -/home/william/Git/gnunet/src/transport/transport-testing.h:341: warning: argument 'p1' from the argument list of GNUNET_TRANSPORT_TESTING_connect_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:341: warning: argument 'p2' from the argument list of GNUNET_TRANSPORT_TESTING_connect_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:341: warning: argument 'cb' from the argument list of GNUNET_TRANSPORT_TESTING_connect_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:341: warning: argument 'cls' from the argument list of GNUNET_TRANSPORT_TESTING_connect_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:348: warning: argument 'tth' of command @param is not found in the argument list of GNUNET_TRANSPORT_TESTING_connect_peers_cancel(struct GNUNET_TRANSPORT_TESTING_ConnectRequest *cc) -/home/william/Git/gnunet/src/transport/transport-testing.h:356: warning: argument 'cc' from the argument list of GNUNET_TRANSPORT_TESTING_connect_peers_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:814: warning: argument 'cls' from the argument list of GNUNET_TRANSPORT_TESTING_simple_send has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:832: warning: argument 'cls' from the argument list of GNUNET_TRANSPORT_TESTING_large_send has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:877: warning: argument 'file' from the argument list of GNUNET_TRANSPORT_TESTING_get_test_name has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:889: warning: argument 'file' from the argument list of GNUNET_TRANSPORT_TESTING_get_config_name has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:889: warning: argument 'count' from the argument list of GNUNET_TRANSPORT_TESTING_get_config_name has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:899: warning: argument 'file' from the argument list of GNUNET_TRANSPORT_TESTING_get_test_plugin_name has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:899: warning: argument 'test' from the argument list of GNUNET_TRANSPORT_TESTING_get_test_plugin_name has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:911: warning: argument 'file' from the argument list of GNUNET_TRANSPORT_TESTING_get_test_source_name has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.c:760: warning: argument 'cls' from the argument list of offer_hello has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:328: warning: argument 'tth' of command @param is not found in the argument list of GNUNET_TRANSPORT_TESTING_connect_peers(struct GNUNET_TRANSPORT_TESTING_PeerContext *p1, struct GNUNET_TRANSPORT_TESTING_PeerContext *p2, GNUNET_SCHEDULER_TaskCallback cb, void *cls) -/home/william/Git/gnunet/src/transport/transport-testing.h:348: warning: argument 'tth' of command @param is not found in the argument list of GNUNET_TRANSPORT_TESTING_connect_peers_cancel(struct GNUNET_TRANSPORT_TESTING_ConnectRequest *cc) -/home/william/Git/gnunet/src/transport/transport-testing2.h:301: warning: argument 'tth' from the argument list of GNUNET_TRANSPORT_TESTING_start_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.h:301: warning: argument 'cfgname' from the argument list of GNUNET_TRANSPORT_TESTING_start_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.h:301: warning: argument 'peer_id' from the argument list of GNUNET_TRANSPORT_TESTING_start_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.h:301: warning: argument 'handlers' from the argument list of GNUNET_TRANSPORT_TESTING_start_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.h:301: warning: argument 'nc' from the argument list of GNUNET_TRANSPORT_TESTING_start_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.h:301: warning: argument 'nd' from the argument list of GNUNET_TRANSPORT_TESTING_start_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.h:301: warning: argument 'cb_cls' from the argument list of GNUNET_TRANSPORT_TESTING_start_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.h:301: warning: argument 'start_cb' from the argument list of GNUNET_TRANSPORT_TESTING_start_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.h:301: warning: argument 'start_cb_cls' from the argument list of GNUNET_TRANSPORT_TESTING_start_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.h:332: warning: argument 'p' from the argument list of GNUNET_TRANSPORT_TESTING_restart_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.h:332: warning: argument 'restart_cb' from the argument list of GNUNET_TRANSPORT_TESTING_restart_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.h:332: warning: argument 'restart_cb_cls' from the argument list of GNUNET_TRANSPORT_TESTING_restart_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:328: warning: argument 'tth' of command @param is not found in the argument list of GNUNET_TRANSPORT_TESTING_connect_peers(struct GNUNET_TRANSPORT_TESTING_PeerContext *p1, struct GNUNET_TRANSPORT_TESTING_PeerContext *p2, GNUNET_SCHEDULER_TaskCallback cb, void *cls) -/home/william/Git/gnunet/src/transport/transport-testing2.h:351: warning: argument 'p1' from the argument list of GNUNET_TRANSPORT_TESTING_connect_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.h:351: warning: argument 'p2' from the argument list of GNUNET_TRANSPORT_TESTING_connect_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.h:351: warning: argument 'cb' from the argument list of GNUNET_TRANSPORT_TESTING_connect_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.h:351: warning: argument 'cls' from the argument list of GNUNET_TRANSPORT_TESTING_connect_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing.h:348: warning: argument 'tth' of command @param is not found in the argument list of GNUNET_TRANSPORT_TESTING_connect_peers_cancel(struct GNUNET_TRANSPORT_TESTING_ConnectRequest *cc) -/home/william/Git/gnunet/src/transport/transport-testing2.h:366: warning: argument 'cc' from the argument list of GNUNET_TRANSPORT_TESTING_connect_peers_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.h:824: warning: argument 'cls' from the argument list of GNUNET_TRANSPORT_TESTING_simple_send has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.h:842: warning: argument 'cls' from the argument list of GNUNET_TRANSPORT_TESTING_large_send has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.h:887: warning: argument 'file' from the argument list of GNUNET_TRANSPORT_TESTING_get_test_name has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.h:899: warning: argument 'file' from the argument list of GNUNET_TRANSPORT_TESTING_get_config_name has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.h:899: warning: argument 'count' from the argument list of GNUNET_TRANSPORT_TESTING_get_config_name has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.h:909: warning: argument 'file' from the argument list of GNUNET_TRANSPORT_TESTING_get_test_plugin_name has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.h:909: warning: argument 'test' from the argument list of GNUNET_TRANSPORT_TESTING_get_test_plugin_name has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport-testing2.h:921: warning: argument 'file' from the argument list of GNUNET_TRANSPORT_TESTING_get_test_source_name has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport_api2_communication.c:798: warning: argument 'mtu' of command @param is not found in the argument list of GNUNET_TRANSPORT_communicator_connect(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *config_section, const char *addr_prefix, enum GNUNET_TRANSPORT_CommunicatorCharacteristics cc, GNUNET_TRANSPORT_CommunicatorMqInit mq_init, void *mq_init_cls, GNUNET_TRANSPORT_CommunicatorNotify notify_cb, void *notify_cb_cls) -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:252: warning: argument 'cc' of command @param is not found in the argument list of GNUNET_TRANSPORT_communicator_mq_add(struct GNUNET_TRANSPORT_CommunicatorHandle *ch, const struct GNUNET_PeerIdentity *peer, const char *address, uint32_t mtu, uint64_t q_len, uint32_t priority, enum GNUNET_NetworkType nt, enum GNUNET_TRANSPORT_ConnectionStatus cs, struct GNUNET_MQ_Handle *mq) -/home/william/Git/gnunet/src/transport/transport_api2_communication.c:1013: warning: argument 'qh' of command @param is not found in the argument list of GNUNET_TRANSPORT_communicator_mq_update(struct GNUNET_TRANSPORT_CommunicatorHandle *ch, const struct GNUNET_TRANSPORT_QueueHandle *u_qh, uint64_t q_len, uint32_t priority) -/home/william/Git/gnunet/src/transport/transport_api2_communication.c:1023: warning: The following parameter of GNUNET_TRANSPORT_communicator_mq_update(struct GNUNET_TRANSPORT_CommunicatorHandle *ch, const struct GNUNET_TRANSPORT_QueueHandle *u_qh, uint64_t q_len, uint32_t priority) is not documented: - parameter 'u_qh' -/home/william/Git/gnunet/src/transport/transport_api2_monitor.c:81: warning: argument 'ai' of command @param is not found in the argument list of send_start_monitor(struct GNUNET_TRANSPORT_MonitorContext *mc) -/home/william/Git/gnunet/src/transport/transport_api2_monitor.c:86: warning: The following parameter of send_start_monitor(struct GNUNET_TRANSPORT_MonitorContext *mc) is not documented: - parameter 'mc' -/home/william/Git/gnunet/src/transport/transport_api2_monitor.c:279: warning: argument 'pmc' of command @param is not found in the argument list of GNUNET_TRANSPORT_monitor_cancel(struct GNUNET_TRANSPORT_MonitorContext *mc) -/home/william/Git/gnunet/src/transport/transport_api2_monitor.c:285: warning: The following parameter of GNUNET_TRANSPORT_monitor_cancel(struct GNUNET_TRANSPORT_MonitorContext *mc) is not documented: - parameter 'mc' -/home/william/Git/gnunet/src/transport/transport_api_address_to_string.c:57: warning: argument 'msg' of command @param is not found in the argument list of check_reply(void *cls, const struct AddressToStringResultMessage *atsm) -/home/william/Git/gnunet/src/transport/transport_api_address_to_string.c:63: warning: The following parameter of check_reply(void *cls, const struct AddressToStringResultMessage *atsm) is not documented: - parameter 'atsm' -/home/william/Git/gnunet/src/transport/transport_api_address_to_string.c:98: warning: argument 'msg' of command @param is not found in the argument list of handle_reply(void *cls, const struct AddressToStringResultMessage *atsm) -/home/william/Git/gnunet/src/transport/transport_api_address_to_string.c:103: warning: The following parameter of handle_reply(void *cls, const struct AddressToStringResultMessage *atsm) is not documented: - parameter 'atsm' -/home/william/Git/gnunet/src/transport/transport_api_cmd_backchannel_check.c:562: warning: argument 'The' of command @param is not found in the argument list of GNUNET_TRANSPORT_cmd_backchannel_check(const char *label, const char *start_peer_label, const char *create_label, uint32_t num, unsigned int node_n, unsigned int namespace_n, struct GNUNET_TESTING_NetjailTopology *topology) -/home/william/Git/gnunet/src/transport/transport_api_cmd_backchannel_check.c:552: warning: The following parameter of GNUNET_TRANSPORT_cmd_backchannel_check(const char *label, const char *start_peer_label, const char *create_label, uint32_t num, unsigned int node_n, unsigned int namespace_n, struct GNUNET_TESTING_NetjailTopology *topology) is not documented: - parameter 'topology' -/home/william/Git/gnunet/src/transport/transport_api_cmd_connecting_peers.c:223: warning: argument 'create_peer_label' of command @param is not found in the argument list of GNUNET_TRANSPORT_cmd_connect_peers(const char *label, const char *start_peer_label, const char *create_label, uint32_t num, struct GNUNET_TESTING_NetjailTopology *topology, unsigned int additional_connects) -/home/william/Git/gnunet/src/transport/transport_api_cmd_connecting_peers.c:223: warning: argument 'The' of command @param is not found in the argument list of GNUNET_TRANSPORT_cmd_connect_peers(const char *label, const char *start_peer_label, const char *create_label, uint32_t num, struct GNUNET_TESTING_NetjailTopology *topology, unsigned int additional_connects) -/home/william/Git/gnunet/src/transport/transport_api_cmd_connecting_peers.c:193: warning: The following parameters of GNUNET_TRANSPORT_cmd_connect_peers(const char *label, const char *start_peer_label, const char *create_label, uint32_t num, struct GNUNET_TESTING_NetjailTopology *topology, unsigned int additional_connects) are not documented: - parameter 'create_label' - parameter 'topology' -/home/william/Git/gnunet/src/transport/transport_api_cmd_send_simple.c:180: warning: argument 'The' of command @param is not found in the argument list of GNUNET_TRANSPORT_cmd_send_simple(const char *label, const char *start_peer_label, const char *create_label, uint32_t num, struct GNUNET_TESTING_NetjailTopology *topology) -/home/william/Git/gnunet/src/transport/transport_api_cmd_send_simple.c:113: warning: argument 'start_peer_label' from the argument list of GNUNET_TRANSPORT_cmd_send_simple has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport_api_cmd_send_simple.c:113: warning: The following parameters of GNUNET_TRANSPORT_cmd_send_simple(const char *label, const char *start_peer_label, const char *create_label, uint32_t num, struct GNUNET_TESTING_NetjailTopology *topology) are not documented: - parameter 'create_label' - parameter 'topology' -/home/william/Git/gnunet/src/transport/transport_api_cmd_start_peer.c:433: warning: argument 'm' of command @param is not found in the argument list of GNUNET_TRANSPORT_cmd_start_peer(const char *label, const char *system_label, uint32_t no, char *node_ip, struct GNUNET_MQ_MessageHandler *handlers, const char *cfgname, GNUNET_TRANSPORT_notify_connect_cb notify_connect, unsigned int broadcast) -/home/william/Git/gnunet/src/transport/transport_api_cmd_start_peer.c:433: warning: argument 'n' of command @param is not found in the argument list of GNUNET_TRANSPORT_cmd_start_peer(const char *label, const char *system_label, uint32_t no, char *node_ip, struct GNUNET_MQ_MessageHandler *handlers, const char *cfgname, GNUNET_TRANSPORT_notify_connect_cb notify_connect, unsigned int broadcast) -/home/william/Git/gnunet/src/transport/transport_api_cmd_start_peer.c:433: warning: argument 'local_m' of command @param is not found in the argument list of GNUNET_TRANSPORT_cmd_start_peer(const char *label, const char *system_label, uint32_t no, char *node_ip, struct GNUNET_MQ_MessageHandler *handlers, const char *cfgname, GNUNET_TRANSPORT_notify_connect_cb notify_connect, unsigned int broadcast) -/home/william/Git/gnunet/src/transport/transport_api_cmd_start_peer.c:397: warning: The following parameters of GNUNET_TRANSPORT_cmd_start_peer(const char *label, const char *system_label, uint32_t no, char *node_ip, struct GNUNET_MQ_MessageHandler *handlers, const char *cfgname, GNUNET_TRANSPORT_notify_connect_cb notify_connect, unsigned int broadcast) are not documented: - parameter 'no' - parameter 'node_ip' -/home/william/Git/gnunet/src/transport/transport_api_core.c:714: warning: argument 'msg' of command @param is not found in the argument list of handle_set_quota(void *cls, const struct QuotaSetMessage *qm) -/home/william/Git/gnunet/src/transport/transport_api_core.c:719: warning: The following parameter of handle_set_quota(void *cls, const struct QuotaSetMessage *qm) is not documented: - parameter 'qm' -/home/william/Git/gnunet/src/transport/transport_api_core.c:844: warning: argument 'rec' of command @param is not found in the argument list of GNUNET_TRANSPORT_core_connect(const struct GNUNET_CONFIGURATION_Handle *cfg, const struct GNUNET_PeerIdentity *self, const struct GNUNET_MQ_MessageHandler *handlers, void *cls, GNUNET_TRANSPORT_NotifyConnect nc, GNUNET_TRANSPORT_NotifyDisconnect nd, GNUNET_TRANSPORT_NotifyExcessBandwidth neb) -/home/william/Git/gnunet/src/transport/transport_api_core.c:859: warning: The following parameter of GNUNET_TRANSPORT_core_connect(const struct GNUNET_CONFIGURATION_Handle *cfg, const struct GNUNET_PeerIdentity *self, const struct GNUNET_MQ_MessageHandler *handlers, void *cls, GNUNET_TRANSPORT_NotifyConnect nc, GNUNET_TRANSPORT_NotifyDisconnect nd, GNUNET_TRANSPORT_NotifyExcessBandwidth neb) is not documented: - parameter 'handlers' -/home/william/Git/gnunet/src/transport/transport_api_monitor_peers.c:279: warning: argument 'msg' of command @param is not found in the argument list of handle_response(void *cls, const struct PeerIterateResponseMessage *pir_msg) -/home/william/Git/gnunet/src/transport/transport_api_monitor_peers.c:284: warning: The following parameter of handle_response(void *cls, const struct PeerIterateResponseMessage *pir_msg) is not documented: - parameter 'pir_msg' -/home/william/Git/gnunet/src/transport/transport_api_monitor_plugins.c:213: warning: Found unknown command '\paramm' -/home/william/Git/gnunet/src/transport/transport_api_monitor_plugins.c:214: warning: explicit link request to 'GNUNET_Ok' could not be resolved -/home/william/Git/gnunet/src/transport/transport_api_monitor_plugins.c:218: warning: The following parameter of check_event(void *cls, const struct TransportPluginMonitorMessage *tpmm) is not documented: - parameter 'tpmm' -/home/william/Git/gnunet/src/transport/transport_api_monitor_plugins.c:245: warning: Found unknown command '\paramm' -/home/william/Git/gnunet/src/transport/transport_api_monitor_plugins.c:249: warning: The following parameter of handle_event(void *cls, const struct TransportPluginMonitorMessage *tpmm) is not documented: - parameter 'tpmm' -/home/william/Git/gnunet/src/transport/transport_api_monitor_plugins.c:435: warning: explicit link request to 'GNUNET_TRANSPORT_SS_FINI' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_child_management_lib.h:55: warning: argument 'cp' of command @param is not found in the argument list of GNUNET_wait_child(struct GNUNET_OS_Process *proc, GNUNET_ChildCompletedCallback cb, void *cb_cls) -/home/william/Git/gnunet/src/util/child_management.c:205: warning: The following parameter of GNUNET_wait_child(struct GNUNET_OS_Process *proc, GNUNET_ChildCompletedCallback cb, void *cb_cls) is not documented: - parameter 'cb' -/home/william/Git/gnunet/src/include/gnunet_common.h:784: warning: argument 'hc' of command @param is not found in the argument list of GNUNET_p2s(const struct GNUNET_CRYPTO_EddsaPublicKey *p) -/home/william/Git/gnunet/src/util/common_logging.c:1194: warning: The following parameter of GNUNET_p2s(const struct GNUNET_CRYPTO_EddsaPublicKey *p) is not documented: - parameter 'p' -/home/william/Git/gnunet/src/include/gnunet_common.h:797: warning: argument 'hc' of command @param is not found in the argument list of GNUNET_p2s2(const struct GNUNET_CRYPTO_EddsaPublicKey *p) -/home/william/Git/gnunet/src/util/common_logging.c:1216: warning: The following parameter of GNUNET_p2s2(const struct GNUNET_CRYPTO_EddsaPublicKey *p) is not documented: - parameter 'p' -/home/william/Git/gnunet/src/include/gnunet_common.h:810: warning: argument 'hc' of command @param is not found in the argument list of GNUNET_e2s(const struct GNUNET_CRYPTO_EcdhePublicKey *p) -/home/william/Git/gnunet/src/util/common_logging.c:1238: warning: The following parameter of GNUNET_e2s(const struct GNUNET_CRYPTO_EcdhePublicKey *p) is not documented: - parameter 'p' -/home/william/Git/gnunet/src/include/gnunet_common.h:823: warning: argument 'hc' of command @param is not found in the argument list of GNUNET_e2s2(const struct GNUNET_CRYPTO_EcdhePublicKey *p) -/home/william/Git/gnunet/src/util/common_logging.c:1260: warning: The following parameter of GNUNET_e2s2(const struct GNUNET_CRYPTO_EcdhePublicKey *p) is not documented: - parameter 'p' -/home/william/Git/gnunet/src/util/common_logging.c:1519: warning: argument 'out' of command @param is not found in the argument list of GNUNET_async_scope_enter(const struct GNUNET_AsyncScopeId *aid, struct GNUNET_AsyncScopeSave *old_scope) -/home/william/Git/gnunet/src/include/gnunet_configuration_lib.h:174: warning: Found unknown command '\INLINE' -/home/william/Git/gnunet/src/util/container_multihashmap32.c:288: warning: argument 'bme' of command @param is not found in the argument list of update_next_cache(struct GNUNET_CONTAINER_MultiHashMap32 *map, const struct MapEntry *me) -/home/william/Git/gnunet/src/util/container_multihashmap32.c:294: warning: The following parameter of update_next_cache(struct GNUNET_CONTAINER_MultiHashMap32 *map, const struct MapEntry *me) is not documented: - parameter 'me' -/home/william/Git/gnunet/src/util/crypto_cs.c:141: warning: argument 'hash' of command @param is not found in the argument list of cs_full_domain_hash(const struct GNUNET_CRYPTO_CsRPublic *r_dash, const void *msg, size_t msg_len, const struct GNUNET_CRYPTO_CsPublicKey *pub, struct GNUNET_CRYPTO_CsC *c) -/home/william/Git/gnunet/src/util/crypto_cs.c:149: warning: The following parameters of cs_full_domain_hash(const struct GNUNET_CRYPTO_CsRPublic *r_dash, const void *msg, size_t msg_len, const struct GNUNET_CRYPTO_CsPublicKey *pub, struct GNUNET_CRYPTO_CsC *c) are not documented: - parameter 'r_dash' - parameter 'msg' - parameter 'msg_len' -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1424: warning: argument 'priv' of command @param is not found in the argument list of GNUNET_CRYPTO_eddsa_private_key_from_string(const char *enc, size_t enclen, struct GNUNET_CRYPTO_EddsaPrivateKey *pub) -/home/william/Git/gnunet/src/util/crypto_ecc.c:305: warning: The following parameter of GNUNET_CRYPTO_eddsa_private_key_from_string(const char *enc, size_t enclen, struct GNUNET_CRYPTO_EddsaPrivateKey *pub) is not documented: - parameter 'pub' -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1823: warning: explicit link request to 'GNUNET_CRRYPTO_ecdh_eddsa' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1839: warning: explicit link request to 'GNUNET_CRRYPTO_ecdh_ecdsa' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1855: warning: explicit link request to 'GNUNET_CRRYPTO_eddsa_ecdh' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1870: warning: explicit link request to 'GNUNET_CRRYPTO_ecdsa_ecdh' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1683: warning: argument 'dlc' of command @param is not found in the argument list of GNUNET_CRYPTO_ecc_dlog(struct GNUNET_CRYPTO_EccDlogContext *edc, const struct GNUNET_CRYPTO_EccPoint *input) -/home/william/Git/gnunet/src/util/crypto_ecc_dlog.c:112: warning: The following parameter of GNUNET_CRYPTO_ecc_dlog(struct GNUNET_CRYPTO_EccDlogContext *edc, const struct GNUNET_CRYPTO_EccPoint *input) is not documented: - parameter 'edc' -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2285: warning: argument 'purp' of command @param is not found in the argument list of GNUNET_CRYPTO_eddsa_sign_derived(const struct GNUNET_CRYPTO_EddsaPrivateKey *pkey, const char *label, const char *context, const struct GNUNET_CRYPTO_EccSignaturePurpose *purpose, struct GNUNET_CRYPTO_EddsaSignature *sig) -/home/william/Git/gnunet/src/util/crypto_ecc_gnsrecord.c:48: warning: The following parameter of GNUNET_CRYPTO_eddsa_sign_derived(const struct GNUNET_CRYPTO_EddsaPrivateKey *pkey, const char *label, const char *context, const struct GNUNET_CRYPTO_EccSignaturePurpose *purpose, struct GNUNET_CRYPTO_EddsaSignature *sig) is not documented: - parameter 'purpose' -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2221: warning: argument 'purp' of command @param is not found in the argument list of GNUNET_CRYPTO_ecdsa_sign_derived(const struct GNUNET_CRYPTO_EcdsaPrivateKey *pkey, const char *label, const char *context, const struct GNUNET_CRYPTO_EccSignaturePurpose *purpose, struct GNUNET_CRYPTO_EcdsaSignature *sig) -/home/william/Git/gnunet/src/util/crypto_ecc_gnsrecord.c:48: warning: The following parameter of GNUNET_CRYPTO_ecdsa_sign_derived(const struct GNUNET_CRYPTO_EcdsaPrivateKey *pkey, const char *label, const char *context, const struct GNUNET_CRYPTO_EccSignaturePurpose *purpose, struct GNUNET_CRYPTO_EcdsaSignature *sig) is not documented: - parameter 'purpose' -/home/william/Git/gnunet/src/util/crypto_ecc_setup.c:1: warning: argument 'filename' from the argument list of GNUNET_CRYPTO_eddsa_key_from_file has multiple @param documentation sections -/home/william/Git/gnunet/src/util/crypto_ecc_setup.c:1: warning: argument 'do_create' from the argument list of GNUNET_CRYPTO_eddsa_key_from_file has multiple @param documentation sections -/home/william/Git/gnunet/src/util/crypto_ecc_setup.c:1: warning: argument 'pkey' from the argument list of GNUNET_CRYPTO_eddsa_key_from_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1977: warning: argument 'purp' of command @param is not found in the argument list of GNUNET_CRYPTO_edx25519_sign_(const struct GNUNET_CRYPTO_Edx25519PrivateKey *priv, const struct GNUNET_CRYPTO_EccSignaturePurpose *purpose, struct GNUNET_CRYPTO_Edx25519Signature *sig) -/home/william/Git/gnunet/src/util/crypto_edx25519.c:79: warning: The following parameter of GNUNET_CRYPTO_edx25519_sign_(const struct GNUNET_CRYPTO_Edx25519PrivateKey *priv, const struct GNUNET_CRYPTO_EccSignaturePurpose *purpose, struct GNUNET_CRYPTO_Edx25519Signature *sig) is not documented: - parameter 'purpose' -/home/william/Git/gnunet/src/util/crypto_paillier.c:331: warning: Found unknown command '\private_key' -/home/william/Git/gnunet/src/util/crypto_random.c:236: warning: explicit link request to 'GNUNET_RANDOM_QUALITY_STRONG' could not be resolved -/home/william/Git/gnunet/src/util/crypto_random.c:237: warning: explicit link request to 'GNUNET_RANDOM_QUALITY_WEAK' could not be resolved -/home/william/Git/gnunet/src/util/crypto_rsa.c:513: warning: argument 'len' of command @param is not found in the argument list of rsa_blinding_key_derive(const struct GNUNET_CRYPTO_RsaPublicKey *pkey, const struct GNUNET_CRYPTO_RsaBlindingKeySecret *bks) -/home/william/Git/gnunet/src/util/crypto_rsa.c:521: warning: The following parameter of rsa_blinding_key_derive(const struct GNUNET_CRYPTO_RsaPublicKey *pkey, const struct GNUNET_CRYPTO_RsaBlindingKeySecret *bks) is not documented: - parameter 'pkey' -/home/william/Git/gnunet/src/util/crypto_rsa.c:708: warning: argument 'newly' of command @param is not found in the argument list of numeric_mpi_alloc_n_print(gcry_mpi_t v, char **buffer) -/home/william/Git/gnunet/src/util/crypto_rsa.c:716: warning: The following parameter of numeric_mpi_alloc_n_print(gcry_mpi_t v, char **buffer) is not documented: - parameter 'buffer' -/home/william/Git/gnunet/src/util/crypto_rsa.c:741: warning: argument 'rsize' of command @param is not found in the argument list of rsa_full_domain_hash(const struct GNUNET_CRYPTO_RsaPublicKey *pkey, const struct GNUNET_HashCode *hash) -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2673: warning: argument 'bkey' of command @param is not found in the argument list of GNUNET_CRYPTO_rsa_blind(const struct GNUNET_HashCode *hash, const struct GNUNET_CRYPTO_RsaBlindingKeySecret *bks, struct GNUNET_CRYPTO_RsaPublicKey *pkey, void **buf, size_t *buf_size) -/home/william/Git/gnunet/src/util/crypto_rsa.c:753: warning: The following parameter of GNUNET_CRYPTO_rsa_blind(const struct GNUNET_HashCode *hash, const struct GNUNET_CRYPTO_RsaBlindingKeySecret *bks, struct GNUNET_CRYPTO_RsaPublicKey *pkey, void **buf, size_t *buf_size) is not documented: - parameter 'bks' -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2763: warning: explicit link request to 'GNUNET_CRYPTO_rsa_sign()' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_disk_lib.h:673: warning: argument 'glob_patterb' of command @param is not found in the argument list of GNUNET_DISK_glob(const char *glob_pattern, GNUNET_FileNameCallback callback, void *callback_cls) -/home/william/Git/gnunet/src/util/disk.c:1007: warning: The following parameter of GNUNET_DISK_glob(const char *glob_pattern, GNUNET_FileNameCallback callback, void *callback_cls) is not documented: - parameter 'glob_pattern' -/home/william/Git/gnunet/src/util/dnsstub.c:430: warning: argument 'cls' from the argument list of read_response has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_getopt_lib.h:404: warning: argument 'argumentHelp' of command @param is not found in the argument list of GNUNET_GETOPT_option_increment_uint(char shortName, const char *name, const char *description, unsigned int *val) -/home/william/Git/gnunet/src/include/gnunet_getopt_lib.h:170: warning: argument 'val' of command @param is not found in the argument list of GNUNET_GETOPT_option_timetravel(char shortName, const char *name) -/home/william/Git/gnunet/src/util/gnunet-crypto-tvg.c:134: warning: argument 'data' of command @param is not found in the argument list of uint2j(json_t *vec, const char *label, unsigned int num) -/home/william/Git/gnunet/src/util/gnunet-crypto-tvg.c:134: warning: argument 'size' of command @param is not found in the argument list of uint2j(json_t *vec, const char *label, unsigned int num) -/home/william/Git/gnunet/src/util/gnunet-crypto-tvg.c:141: warning: The following parameter of uint2j(json_t *vec, const char *label, unsigned int num) is not documented: - parameter 'num' -/home/william/Git/gnunet/src/util/gnunet-scrypt.c:82: warning: argument 'tc' of command @param is not found in the argument list of find_proof(void *cls) -/home/william/Git/gnunet/src/util/gnunet-scrypt.c:158: warning: argument 'cfg' of command @param is not found in the argument list of run(void *cls, char *const *args, const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *config) -/home/william/Git/gnunet/src/util/gnunet-scrypt.c:165: warning: The following parameter of run(void *cls, char *const *args, const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *config) is not documented: - parameter 'config' -/home/william/Git/gnunet/src/util/gnunet-service-resolver.c:313: warning: argument 'out' of command @param is not found in the argument list of lookup_dns_servers(char ***server_addrs) -/home/william/Git/gnunet/src/util/gnunet-service-resolver.c:314: warning: Found unknown command '\server_addrs' -/home/william/Git/gnunet/src/util/gnunet-service-resolver.c:668: warning: argument 'out' of command @param is not found in the argument list of pack(const char *hostname, uint16_t type, uint16_t dns_id, char **packet_buf, size_t *packet_size) -/home/william/Git/gnunet/src/util/gnunet-service-resolver.c:668: warning: argument 'out' of command @param is not found in the argument list of pack(const char *hostname, uint16_t type, uint16_t dns_id, char **packet_buf, size_t *packet_size) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:1031: warning: explicit link request to 'gnunet_mq_impl_send_continue' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:131: warning: explicit link request to 'GNUNET_MQ_extract_nexted_mh' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:385: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_head(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:385: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_head(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:385: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_head(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:385: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_head(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:385: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_head(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:385: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_head(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/util/mq.c:926: warning: The following parameters of GNUNET_MQ_dll_insert_head(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) are not documented: - parameter 'env_head' - parameter 'env_tail' - parameter 'env' -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:403: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_tail(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:403: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_tail(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:403: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_tail(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:403: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_tail(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:403: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_tail(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:403: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_tail(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/util/mq.c:937: warning: The following parameters of GNUNET_MQ_dll_insert_tail(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) are not documented: - parameter 'env_head' - parameter 'env_tail' - parameter 'env' -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:422: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MQ_dll_remove(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:422: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MQ_dll_remove(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:422: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MQ_dll_remove(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:422: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MQ_dll_remove(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:422: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MQ_dll_remove(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:422: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MQ_dll_remove(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/util/mq.c:948: warning: The following parameters of GNUNET_MQ_dll_remove(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) are not documented: - parameter 'env_head' - parameter 'env_tail' - parameter 'env' -/home/william/Git/gnunet/src/util/mst.c:339: warning: argument 'buf' of command @param is not found in the argument list of GNUNET_MST_read(struct GNUNET_MessageStreamTokenizer *mst, struct GNUNET_NETWORK_Handle *sock, int purge, int one_shot) -/home/william/Git/gnunet/src/util/mst.c:339: warning: argument 'size' of command @param is not found in the argument list of GNUNET_MST_read(struct GNUNET_MessageStreamTokenizer *mst, struct GNUNET_NETWORK_Handle *sock, int purge, int one_shot) -/home/william/Git/gnunet/src/util/mst.c:352: warning: The following parameter of GNUNET_MST_read(struct GNUNET_MessageStreamTokenizer *mst, struct GNUNET_NETWORK_Handle *sock, int purge, int one_shot) is not documented: - parameter 'sock' -/home/william/Git/gnunet/src/util/os_priority.c:678: warning: The following parameter of GNUNET_OS_start_process(enum GNUNET_OS_InheritStdioFlags std_inheritance, struct GNUNET_DISK_PipeHandle *pipe_stdin, struct GNUNET_DISK_PipeHandle *pipe_stdout, struct GNUNET_DISK_PipeHandle *pipe_stderr, const char *filename,...) is not documented: - parameter 'pipe_stderr' -/home/william/Git/gnunet/src/include/gnunet_program_lib.h:80: warning: explicit link request to 'a' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_program_lib.h:107: warning: explicit link request to 'a' could not be resolved -/home/william/Git/gnunet/src/util/scheduler.c:439: warning: documented empty return type of GNUNET_SCHEDULER_set_select -/home/william/Git/gnunet/src/util/scheduler.c:878: warning: argument 'driver_func' of command @param is not found in the argument list of driver_add_multiple(struct GNUNET_SCHEDULER_Task *t) -/home/william/Git/gnunet/src/util/scheduler.c:878: warning: argument 'if_not_ready' of command @param is not found in the argument list of driver_add_multiple(struct GNUNET_SCHEDULER_Task *t) -/home/william/Git/gnunet/src/util/scheduler.c:878: warning: argument 'et' of command @param is not found in the argument list of driver_add_multiple(struct GNUNET_SCHEDULER_Task *t) -/home/william/Git/gnunet/src/util/scheduler.c:1404: warning: argument 'rfd' of command @param is not found in the argument list of add_without_sets(struct GNUNET_TIME_Relative delay, enum GNUNET_SCHEDULER_Priority priority, const struct GNUNET_NETWORK_Handle *read_nh, const struct GNUNET_NETWORK_Handle *write_nh, const struct GNUNET_DISK_FileHandle *read_fh, const struct GNUNET_DISK_FileHandle *write_fh, GNUNET_SCHEDULER_TaskCallback task, void *task_cls) -/home/william/Git/gnunet/src/util/scheduler.c:1404: warning: argument 'wfd' of command @param is not found in the argument list of add_without_sets(struct GNUNET_TIME_Relative delay, enum GNUNET_SCHEDULER_Priority priority, const struct GNUNET_NETWORK_Handle *read_nh, const struct GNUNET_NETWORK_Handle *write_nh, const struct GNUNET_DISK_FileHandle *read_fh, const struct GNUNET_DISK_FileHandle *write_fh, GNUNET_SCHEDULER_TaskCallback task, void *task_cls) -/home/william/Git/gnunet/src/util/scheduler.c:1430: warning: The following parameters of add_without_sets(struct GNUNET_TIME_Relative delay, enum GNUNET_SCHEDULER_Priority priority, const struct GNUNET_NETWORK_Handle *read_nh, const struct GNUNET_NETWORK_Handle *write_nh, const struct GNUNET_DISK_FileHandle *read_fh, const struct GNUNET_DISK_FileHandle *write_fh, GNUNET_SCHEDULER_TaskCallback task, void *task_cls) are not documented: - parameter 'read_nh' - parameter 'write_nh' - parameter 'read_fh' - parameter 'write_fh' -/home/william/Git/gnunet/src/util/service.c:741: warning: argument 'sock' of command @param is not found in the argument list of start_client(struct GNUNET_SERVICE_Handle *sh, struct GNUNET_NETWORK_Handle *csock) -/home/william/Git/gnunet/src/util/service.c:749: warning: The following parameter of start_client(struct GNUNET_SERVICE_Handle *sh, struct GNUNET_NETWORK_Handle *csock) is not documented: - parameter 'csock' -/home/william/Git/gnunet/src/util/service.c:2401: warning: explicit link request to 'GNUNET_SERVICE_stop_listening()' could not be resolved -/home/william/Git/gnunet/src/util/socks.c:347: warning: argument 'client' of command @param is not found in the argument list of register_reciever(struct GNUNET_SOCKS_Handshake *ih, int want) -/home/william/Git/gnunet/src/util/socks.c:347: warning: argument 'handler' of command @param is not found in the argument list of register_reciever(struct GNUNET_SOCKS_Handshake *ih, int want) -/home/william/Git/gnunet/src/util/socks.c:347: warning: argument 'handler_cls' of command @param is not found in the argument list of register_reciever(struct GNUNET_SOCKS_Handshake *ih, int want) -/home/william/Git/gnunet/src/util/socks.c:353: warning: The following parameters of register_reciever(struct GNUNET_SOCKS_Handshake *ih, int want) are not documented: - parameter 'ih' - parameter 'want' -/home/william/Git/gnunet/src/util/socks.c:197: warning: argument 'c' of command @param is not found in the argument list of SOCKS5_handshake_done(struct GNUNET_SOCKS_Handshake *ih) -/home/william/Git/gnunet/src/util/socks.c:203: warning: documented empty return type of SOCKS5_handshake_done -/home/william/Git/gnunet/src/util/socks.c:323: warning: argument 'client' of command @param is not found in the argument list of receiver(void *cls, const void *buf, size_t available, const struct sockaddr *addr, socklen_t addrlen, int errCode) -/home/william/Git/gnunet/src/util/socks.c:323: warning: argument 'handler' of command @param is not found in the argument list of receiver(void *cls, const void *buf, size_t available, const struct sockaddr *addr, socklen_t addrlen, int errCode) -/home/william/Git/gnunet/src/util/socks.c:323: warning: argument 'handler_cls' of command @param is not found in the argument list of receiver(void *cls, const void *buf, size_t available, const struct sockaddr *addr, socklen_t addrlen, int errCode) -/home/william/Git/gnunet/src/util/socks.c:329: warning: The following parameters of receiver(void *cls, const void *buf, size_t available, const struct sockaddr *addr, socklen_t addrlen, int errCode) are not documented: - parameter 'cls' - parameter 'buf' - parameter 'available' - parameter 'addr' - parameter 'addrlen' - parameter 'errCode' -/home/william/Git/gnunet/src/util/socks.c:516: warning: argument 'hostname' of command @param is not found in the argument list of GNUNET_SOCKS_set_handshake_destination(struct GNUNET_SOCKS_Handshake *ih, const char *host, uint16_t port) -/home/william/Git/gnunet/src/util/socks.c:523: warning: The following parameter of GNUNET_SOCKS_set_handshake_destination(struct GNUNET_SOCKS_Handshake *ih, const char *host, uint16_t port) is not documented: - parameter 'host' -/home/william/Git/gnunet/src/util/speedup.h:37: warning: argument 'cfg' from the argument list of GNUNET_SPEEDUP_start_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_strings_lib.h:388: warning: argument 'data' of command @param is not found in the argument list of GNUNET_STRINGS_base64_encode(const void *in, size_t len, char **output) -/home/william/Git/gnunet/src/util/strings.c:1608: warning: The following parameter of GNUNET_STRINGS_base64_encode(const void *in, size_t len, char **output) is not documented: - parameter 'in' -/home/william/Git/gnunet/src/include/gnunet_strings_lib.h:446: warning: argument 'output' of command @param is not found in the argument list of GNUNET_STRINGS_base64url_decode(const char *data, size_t len, void **out) -/home/william/Git/gnunet/src/util/strings.c:1761: warning: The following parameter of GNUNET_STRINGS_base64url_decode(const char *data, size_t len, void **out) is not documented: - parameter 'out' -/home/william/Git/gnunet/src/include/gnunet_strings_lib.h:403: warning: argument 'output' of command @param is not found in the argument list of GNUNET_STRINGS_urlencode(const char *data, size_t len, char **out) -/home/william/Git/gnunet/src/util/strings.c:1851: warning: The following parameter of GNUNET_STRINGS_urlencode(const char *data, size_t len, char **out) is not documented: - parameter 'out' -/home/william/Git/gnunet/src/include/gnunet_time_lib.h:239: warning: argument 't' of command @param is not found in the argument list of GNUNET_TIME_absolute2s(struct GNUNET_TIME_Absolute ts) -/home/william/Git/gnunet/src/util/time.c:238: warning: The following parameter of GNUNET_TIME_absolute2s(struct GNUNET_TIME_Absolute ts) is not documented: - parameter 'ts' -/home/william/Git/gnunet/src/vpn/gnunet-service-vpn.c:695: warning: argument 'message' of command @param is not found in the argument list of check_icmp_back(void *cls, const struct GNUNET_EXIT_IcmpToVPNMessage *i2v) -/home/william/Git/gnunet/src/vpn/gnunet-service-vpn.c:704: warning: The following parameter of check_icmp_back(void *cls, const struct GNUNET_EXIT_IcmpToVPNMessage *i2v) is not documented: - parameter 'i2v' -/home/william/Git/gnunet/src/vpn/gnunet-service-vpn.c:722: warning: argument 'message' of command @param is not found in the argument list of handle_icmp_back(void *cls, const struct GNUNET_EXIT_IcmpToVPNMessage *i2v) -/home/william/Git/gnunet/src/vpn/gnunet-service-vpn.c:730: warning: The following parameter of handle_icmp_back(void *cls, const struct GNUNET_EXIT_IcmpToVPNMessage *i2v) is not documented: - parameter 'i2v' -/home/william/Git/gnunet/src/zonemaster/gnunet-service-zonemaster-monitor.c:131: warning: argument 'tc' of command @param is not found in the argument list of shutdown_task(void *cls) -/home/william/Git/gnunet/src/zonemaster/gnunet-service-zonemaster-monitor.c:208: warning: The following parameter of perform_dht_put(const struct GNUNET_IDENTITY_PrivateKey *key, const char *label, const struct GNUNET_GNSRECORD_Data *rd_public, unsigned int rd_public_count, struct GNUNET_TIME_Absolute expire, struct DhtPutActivity *ma) is not documented: - parameter 'expire' -/home/william/Git/gnunet/src/zonemaster/gnunet-service-zonemaster-monitor.c:379: warning: argument 'server' of command @param is not found in the argument list of run(void *cls, const struct GNUNET_CONFIGURATION_Handle *c, struct GNUNET_SERVICE_Handle *service) -/home/william/Git/gnunet/src/zonemaster/gnunet-service-zonemaster-monitor.c:385: warning: The following parameter of run(void *cls, const struct GNUNET_CONFIGURATION_Handle *c, struct GNUNET_SERVICE_Handle *service) is not documented: - parameter 'service' -/home/william/Git/gnunet/src/zonemaster/gnunet-service-zonemaster.c:209: warning: explicit link request to 'put_interval' could not be resolved -/home/william/Git/gnunet/src/zonemaster/gnunet-service-zonemaster.c:241: warning: argument 'tc' of command @param is not found in the argument list of shutdown_task(void *cls) -/home/william/Git/gnunet/src/zonemaster/gnunet-service-zonemaster.c:540: warning: The following parameter of perform_dht_put(const struct GNUNET_IDENTITY_PrivateKey *key, const char *label, const struct GNUNET_GNSRECORD_Data *rd_public, unsigned int rd_public_count, const struct GNUNET_TIME_Absolute expire, struct DhtPutActivity *ma) is not documented: - parameter 'expire' -/home/william/Git/gnunet/src/zonemaster/gnunet-service-zonemaster.c:810: warning: argument 'server' of command @param is not found in the argument list of run(void *cls, const struct GNUNET_CONFIGURATION_Handle *c, struct GNUNET_SERVICE_Handle *service) -/home/william/Git/gnunet/src/zonemaster/gnunet-service-zonemaster.c:816: warning: The following parameter of run(void *cls, const struct GNUNET_CONFIGURATION_Handle *c, struct GNUNET_SERVICE_Handle *service) is not documented: - parameter 'service' -/home/william/Git/gnunet/src/abe/abe.c:181: warning: documented empty return type of GNUNET_ABE_cpabe_delete_master_key -/home/william/Git/gnunet/src/abe/abe.c:226: warning: argument 'key' from the argument list of GNUNET_ABE_cpabe_delete_key has multiple @param documentation sections -/home/william/Git/gnunet/src/abe/abe.c:226: warning: argument 'delete_pub' from the argument list of GNUNET_ABE_cpabe_delete_key has multiple @param documentation sections -/home/william/Git/gnunet/src/abe/abe.c:226: warning: documented empty return type of GNUNET_ABE_cpabe_delete_key -/home/william/Git/gnunet/src/include/gnunet_arm_service.h:307: warning: argument 'h' from the argument list of GNUNET_ARM_disconnect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_arm_service.h:417: warning: argument 'h' from the argument list of GNUNET_ARM_monitor_stop has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:160: warning: argument 'OUT' of command @param is not found in the argument list of GNUNET_ATS_properties_hton(struct GNUNET_ATS_PropertiesNBO *nbo, const struct GNUNET_ATS_Properties *hbo) -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:171: warning: argument 'OUT' of command @param is not found in the argument list of GNUNET_ATS_properties_ntoh(struct GNUNET_ATS_Properties *hbo, const struct GNUNET_ATS_PropertiesNBO *nbo) -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:210: warning: argument 'ch' from the argument list of GNUNET_ATS_connectivity_done has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:223: warning: argument 'ch' from the argument list of GNUNET_ATS_connectivity_suggest has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:223: warning: argument 'peer' from the argument list of GNUNET_ATS_connectivity_suggest has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:223: warning: argument 'strength' from the argument list of GNUNET_ATS_connectivity_suggest has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:234: warning: argument 'sh' from the argument list of GNUNET_ATS_connectivity_suggest_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:288: warning: argument 'cfg' from the argument list of GNUNET_ATS_scheduling_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:288: warning: argument 'suggest_cb' from the argument list of GNUNET_ATS_scheduling_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:288: warning: argument 'suggest_cb_cls' from the argument list of GNUNET_ATS_scheduling_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:321: warning: argument 'sh' from the argument list of GNUNET_ATS_address_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:321: warning: argument 'address' from the argument list of GNUNET_ATS_address_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:321: warning: argument 'session' from the argument list of GNUNET_ATS_address_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:321: warning: argument 'prop' from the argument list of GNUNET_ATS_address_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:345: warning: Found unknown command '\ar' -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:358: warning: Found unknown command '\ar' -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:351: warning: argument 'ar' from the argument list of GNUNET_ATS_address_del_session has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:351: warning: argument 'session' from the argument list of GNUNET_ATS_address_del_session has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:369: warning: argument 'ar' from the argument list of GNUNET_ATS_address_update has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:369: warning: argument 'prop' from the argument list of GNUNET_ATS_address_update has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:380: warning: argument 'ar' from the argument list of GNUNET_ATS_address_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:452: warning: argument 'ph' from the argument list of GNUNET_ATS_performance_list_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:452: warning: argument 'peer' from the argument list of GNUNET_ATS_performance_list_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:452: warning: argument 'all' from the argument list of GNUNET_ATS_performance_list_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:452: warning: argument 'infocb' from the argument list of GNUNET_ATS_performance_list_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:452: warning: argument 'infocb_cls' from the argument list of GNUNET_ATS_performance_list_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:466: warning: argument 'alh' from the argument list of GNUNET_ATS_performance_list_addresses_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:517: warning: argument 'ph' from the argument list of GNUNET_ATS_reserve_bandwidth has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:517: warning: argument 'peer' from the argument list of GNUNET_ATS_reserve_bandwidth has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:517: warning: argument 'amount' from the argument list of GNUNET_ATS_reserve_bandwidth has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:517: warning: argument 'rcb' from the argument list of GNUNET_ATS_reserve_bandwidth has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:517: warning: argument 'rcb_cls' from the argument list of GNUNET_ATS_reserve_bandwidth has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:530: warning: argument 'rc' from the argument list of GNUNET_ATS_reserve_bandwidth_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:581: warning: argument 'type' from the argument list of GNUNET_ATS_print_preference_type has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:593: warning: argument 'ph' from the argument list of GNUNET_ATS_performance_change_preference has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:593: warning: argument 'peer' from the argument list of GNUNET_ATS_performance_change_preference has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:618: warning: argument 'ph' from the argument list of GNUNET_ATS_performance_give_feedback has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:618: warning: argument 'peer' from the argument list of GNUNET_ATS_performance_give_feedback has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_ats_service.h:618: warning: argument 'scope' from the argument list of GNUNET_ATS_performance_give_feedback has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bio_lib.h:87: warning: argument 'h' from the argument list of GNUNET_BIO_read_close has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bio_lib.h:87: warning: argument 'emsg' from the argument list of GNUNET_BIO_read_close has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bio_lib.h:314: warning: argument 'h' from the argument list of GNUNET_BIO_write_float has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bio_lib.h:314: warning: argument 'what' from the argument list of GNUNET_BIO_write_float has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bio_lib.h:314: warning: argument 'f' from the argument list of GNUNET_BIO_write_float has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bio_lib.h:326: warning: argument 'h' from the argument list of GNUNET_BIO_write_double has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bio_lib.h:326: warning: argument 'what' from the argument list of GNUNET_BIO_write_double has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bio_lib.h:326: warning: argument 'f' from the argument list of GNUNET_BIO_write_double has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:175: warning: argument 'bps' from the argument list of GNUNET_BANDWIDTH_value_get_delay_for has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:175: warning: argument 'size' from the argument list of GNUNET_BANDWIDTH_value_get_delay_for has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:246: warning: argument 'av' from the argument list of GNUNET_BANDWIDTH_tracker_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:246: warning: argument 'update_cb' from the argument list of GNUNET_BANDWIDTH_tracker_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:246: warning: argument 'update_cb_cls' from the argument list of GNUNET_BANDWIDTH_tracker_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:246: warning: argument 'bytes_per_second_limit' from the argument list of GNUNET_BANDWIDTH_tracker_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:246: warning: argument 'max_carry_s' from the argument list of GNUNET_BANDWIDTH_tracker_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:273: warning: argument 'av' from the argument list of GNUNET_BANDWIDTH_tracker_init2 has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:273: warning: argument 'update_cb' from the argument list of GNUNET_BANDWIDTH_tracker_init2 has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:273: warning: argument 'update_cb_cls' from the argument list of GNUNET_BANDWIDTH_tracker_init2 has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:273: warning: argument 'bytes_per_second_limit' from the argument list of GNUNET_BANDWIDTH_tracker_init2 has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:273: warning: argument 'max_carry_s' from the argument list of GNUNET_BANDWIDTH_tracker_init2 has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:273: warning: argument 'excess_cb' from the argument list of GNUNET_BANDWIDTH_tracker_init2 has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:273: warning: argument 'excess_cb_cls' from the argument list of GNUNET_BANDWIDTH_tracker_init2 has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:305: warning: argument 'av' from the argument list of GNUNET_BANDWIDTH_tracker_consume has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:305: warning: argument 'size' from the argument list of GNUNET_BANDWIDTH_tracker_consume has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:305: warning: argument 'av' from the argument list of GNUNET_BANDWIDTH_tracker_get_delay has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_bandwidth_lib.h:305: warning: argument 'size' from the argument list of GNUNET_BANDWIDTH_tracker_get_delay has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_block_group_lib.h:66: warning: argument 'ctx' of command @param is not found in the argument list of GNUNET_BLOCK_GROUP_bf_create(void *cls, size_t bf_size, unsigned int bf_k, enum GNUNET_BLOCK_Type type, uint32_t nonce, const void *raw_data, size_t raw_data_size) -/home/william/Git/gnunet/src/include/gnunet_block_group_lib.h:78: warning: The following parameter of GNUNET_BLOCK_GROUP_bf_create(void *cls, size_t bf_size, unsigned int bf_k, enum GNUNET_BLOCK_Type type, uint32_t nonce, const void *raw_data, size_t raw_data_size) is not documented: - parameter 'cls' -/home/william/Git/gnunet/src/include/gnunet_block_group_lib.h:94: warning: Found unknown command '\bg' -/home/william/Git/gnunet/src/include/gnunet_block_lib.h:259: warning: argument 'bf_mutator' of command @param is not found in the argument list of GNUNET_BLOCK_group_set_seen(struct GNUNET_BLOCK_Group *bg, const struct GNUNET_HashCode *seen_results, unsigned int seen_results_count) -/home/william/Git/gnunet/src/include/gnunet_block_lib.h:173: warning: The following parameter of GNUNET_BLOCK_group_set_seen(struct GNUNET_BLOCK_Group *bg, const struct GNUNET_HashCode *seen_results, unsigned int seen_results_count) is not documented: - parameter 'bg' -/home/william/Git/gnunet/src/include/gnunet_block_lib.h:277: warning: Found unknown command '\bg2' -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:189: warning: argument 'h' from the argument list of GNUNET_CADET_open_port has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:189: warning: argument 'port' from the argument list of GNUNET_CADET_open_port has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:189: warning: argument 'connects' from the argument list of GNUNET_CADET_open_port has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:189: warning: argument 'connects_cls' from the argument list of GNUNET_CADET_open_port has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:189: warning: argument 'window_changes' from the argument list of GNUNET_CADET_open_port has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:189: warning: argument 'disconnects' from the argument list of GNUNET_CADET_open_port has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:189: warning: argument 'handlers' from the argument list of GNUNET_CADET_open_port has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:205: warning: argument 'p' from the argument list of GNUNET_CADET_close_port has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:229: warning: argument 'h' from the argument list of GNUNET_CADET_channel_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:229: warning: argument 'channel_cls' from the argument list of GNUNET_CADET_channel_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:229: warning: argument 'destination' from the argument list of GNUNET_CADET_channel_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:229: warning: argument 'port' from the argument list of GNUNET_CADET_channel_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:229: warning: argument 'window_changes' from the argument list of GNUNET_CADET_channel_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:229: warning: argument 'disconnects' from the argument list of GNUNET_CADET_channel_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:229: warning: argument 'handlers' from the argument list of GNUNET_CADET_channel_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:258: warning: argument 'channel' from the argument list of GNUNET_CADET_get_mq has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:261: warning: argument 'ch' of command @param is not found in the argument list of GNUNET_CADET_receive_done(struct GNUNET_CADET_Channel *channel) -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:319: warning: argument 'channel' from the argument list of GNUNET_CADET_channel_get_info has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:381: warning: argument 'cfg' from the argument list of GNUNET_CADET_get_channel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:381: warning: argument 'peer' from the argument list of GNUNET_CADET_get_channel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:381: warning: argument 'callback' from the argument list of GNUNET_CADET_get_channel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:381: warning: argument 'callback_cls' from the argument list of GNUNET_CADET_get_channel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:387: warning: argument 'h' of command @param is not found in the argument list of GNUNET_CADET_get_channel_cancel(struct GNUNET_CADET_ChannelMonitor *cm) -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:394: warning: The following parameter of GNUNET_CADET_get_channel_cancel(struct GNUNET_CADET_ChannelMonitor *cm) is not documented: - parameter 'cm' -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:467: warning: argument 'pl' from the argument list of GNUNET_CADET_list_peers_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:527: warning: argument 'cfg' from the argument list of GNUNET_CADET_get_path has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:527: warning: argument 'id' from the argument list of GNUNET_CADET_get_path has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:527: warning: argument 'callback' from the argument list of GNUNET_CADET_get_path has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:527: warning: argument 'callback_cls' from the argument list of GNUNET_CADET_get_path has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_cadet_service.h:618: warning: argument 'lt' from the argument list of GNUNET_CADET_list_tunnels_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_curl_lib.h:231: warning: Found unknown command '\eh' -/home/william/Git/gnunet/src/include/gnunet_curl_lib.h:253: warning: Found unknown command '\eh' -/home/william/Git/gnunet/src/include/gnunet_curl_lib.h:311: warning: Found unknown command '\eh' -/home/william/Git/gnunet/src/include/gnunet_curl_lib.h:323: warning: argument 'max_reply_size' of command @param is not found in the argument list of GNUNET_CURL_job_add_raw(struct GNUNET_CURL_Context *ctx, CURL *eh, const struct curl_slist *job_headers, GNUNET_CURL_RawJobCompletionCallback jcc, void *jcc_cls) -/home/william/Git/gnunet/src/include/gnunet_curl_lib.h:334: warning: Found unknown command '\eh' -/home/william/Git/gnunet/src/include/gnunet_curl_lib.h:392: warning: The following parameters of GNUNET_CURL_gnunet_rc_create_with_parser(struct GNUNET_CURL_Context *ctx, GNUNET_CURL_RawParser rp, GNUNET_CURL_ResponseCleaner rc) are not documented: - parameter 'rp' - parameter 'rc' -/home/william/Git/gnunet/src/include/gnunet_client_lib.h:69: warning: argument 'cfg' from the argument list of GNUNET_CLIENT_test has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_client_lib.h:69: warning: argument 'service_name' from the argument list of GNUNET_CLIENT_test has multiple @param documentation sections -/home/william/Git/gnunet/src/util/client.c:1055: warning: argument 'connection' of command @param is not found in the argument list of GNUNET_CLIENT_connect(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *service_name, const struct GNUNET_MQ_MessageHandler *handlers, GNUNET_MQ_ErrorHandler error_handler, void *error_handler_cls) -/home/william/Git/gnunet/src/include/gnunet_client_lib.h:84: warning: argument 'handlers' from the argument list of GNUNET_CLIENT_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_client_lib.h:84: warning: argument 'error_handler' from the argument list of GNUNET_CLIENT_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_client_lib.h:84: warning: argument 'error_handler_cls' from the argument list of GNUNET_CLIENT_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_configuration_lib.h:77: warning: argument 'cfg' from the argument list of GNUNET_CONFIGURATION_load has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_configuration_lib.h:77: warning: argument 'filename' from the argument list of GNUNET_CONFIGURATION_load has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_configuration_lib.h:174: warning: Found unknown command '\INLINE' -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:99: warning: argument 'cfg' from the argument list of GNUNET_CONSENSUS_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:99: warning: argument 'num_peers' from the argument list of GNUNET_CONSENSUS_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:99: warning: argument 'peers' from the argument list of GNUNET_CONSENSUS_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:99: warning: argument 'session_id' from the argument list of GNUNET_CONSENSUS_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:99: warning: argument 'start' from the argument list of GNUNET_CONSENSUS_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:99: warning: argument 'deadline' from the argument list of GNUNET_CONSENSUS_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:99: warning: argument 'new_element_cb' from the argument list of GNUNET_CONSENSUS_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:99: warning: argument 'new_element_cls' from the argument list of GNUNET_CONSENSUS_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:138: warning: argument 'consensus' from the argument list of GNUNET_CONSENSUS_insert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:138: warning: argument 'element' from the argument list of GNUNET_CONSENSUS_insert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:138: warning: argument 'idc' from the argument list of GNUNET_CONSENSUS_insert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:138: warning: argument 'idc_cls' from the argument list of GNUNET_CONSENSUS_insert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:152: warning: argument 'deadline' of command @param is not found in the argument list of GNUNET_CONSENSUS_conclude(struct GNUNET_CONSENSUS_Handle *consensus, GNUNET_CONSENSUS_ConcludeCallback conclude, void *conclude_cls) -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:161: warning: argument 'consensus' from the argument list of GNUNET_CONSENSUS_conclude has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:161: warning: argument 'conclude' from the argument list of GNUNET_CONSENSUS_conclude has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_consensus_service.h:161: warning: argument 'conclude_cls' from the argument list of GNUNET_CONSENSUS_conclude has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_constants.h:131: warning: explicit link request to 'GNUNET_CONSTANTS_TRANSPORT_SIZE_OUTBOUND_MESSAGE' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:237: warning: argument 'filename' from the argument list of GNUNET_CONTAINER_bloomfilter_load has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:237: warning: argument 'size' from the argument list of GNUNET_CONTAINER_bloomfilter_load has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:237: warning: argument 'k' from the argument list of GNUNET_CONTAINER_bloomfilter_load has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:257: warning: argument 'data' from the argument list of GNUNET_CONTAINER_bloomfilter_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:257: warning: argument 'size' from the argument list of GNUNET_CONTAINER_bloomfilter_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:257: warning: argument 'k' from the argument list of GNUNET_CONTAINER_bloomfilter_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:272: warning: argument 'data' from the argument list of GNUNET_CONTAINER_bloomfilter_get_raw_data has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:272: warning: argument 'size' from the argument list of GNUNET_CONTAINER_bloomfilter_get_raw_data has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:287: warning: argument 'bf' from the argument list of GNUNET_CONTAINER_bloomfilter_test has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:287: warning: argument 'e' from the argument list of GNUNET_CONTAINER_bloomfilter_test has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:300: warning: argument 'bf' from the argument list of GNUNET_CONTAINER_bloomfilter_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:300: warning: argument 'e' from the argument list of GNUNET_CONTAINER_bloomfilter_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:312: warning: argument 'bf' from the argument list of GNUNET_CONTAINER_bloomfilter_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:312: warning: argument 'e' from the argument list of GNUNET_CONTAINER_bloomfilter_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:324: warning: argument 'bf' from the argument list of GNUNET_CONTAINER_bloomfilter_copy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:337: warning: argument 'bf' from the argument list of GNUNET_CONTAINER_bloomfilter_free has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:359: warning: argument 'bf' from the argument list of GNUNET_CONTAINER_bloomfilter_get_size has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:370: warning: argument 'bf' from the argument list of GNUNET_CONTAINER_bloomfilter_clear has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:386: warning: argument 'bf' from the argument list of GNUNET_CONTAINER_bloomfilter_or has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:386: warning: argument 'data' from the argument list of GNUNET_CONTAINER_bloomfilter_or has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:386: warning: argument 'size' from the argument list of GNUNET_CONTAINER_bloomfilter_or has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:402: warning: argument 'bf' from the argument list of GNUNET_CONTAINER_bloomfilter_or2 has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:402: warning: argument 'to_or' from the argument list of GNUNET_CONTAINER_bloomfilter_or2 has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:420: warning: argument 'bf' from the argument list of GNUNET_CONTAINER_bloomfilter_resize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:420: warning: argument 'iterator' from the argument list of GNUNET_CONTAINER_bloomfilter_resize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:420: warning: argument 'iterator_cls' from the argument list of GNUNET_CONTAINER_bloomfilter_resize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:420: warning: argument 'size' from the argument list of GNUNET_CONTAINER_bloomfilter_resize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:420: warning: argument 'k' from the argument list of GNUNET_CONTAINER_bloomfilter_resize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2541: warning: argument 'order' from the argument list of GNUNET_CONTAINER_heap_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2552: warning: argument 'heap' from the argument list of GNUNET_CONTAINER_heap_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2563: warning: argument 'heap' from the argument list of GNUNET_CONTAINER_heap_peek has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2589: warning: argument 'heap' from the argument list of GNUNET_CONTAINER_heap_get_size has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2600: warning: argument 'node' from the argument list of GNUNET_CONTAINER_heap_node_get_cost has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2632: warning: argument 'heap' from the argument list of GNUNET_CONTAINER_heap_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2632: warning: argument 'iterator' from the argument list of GNUNET_CONTAINER_heap_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2632: warning: argument 'iterator_cls' from the argument list of GNUNET_CONTAINER_heap_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2649: warning: argument 'heap' from the argument list of GNUNET_CONTAINER_heap_walk_get_next has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2662: warning: argument 'heap' from the argument list of GNUNET_CONTAINER_heap_insert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2662: warning: argument 'element' from the argument list of GNUNET_CONTAINER_heap_insert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2662: warning: argument 'cost' from the argument list of GNUNET_CONTAINER_heap_insert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2675: warning: argument 'heap' from the argument list of GNUNET_CONTAINER_heap_remove_root has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2686: warning: argument 'node' from the argument list of GNUNET_CONTAINER_heap_remove_node has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2697: warning: argument 'node' from the argument list of GNUNET_CONTAINER_heap_update_cost has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2697: warning: argument 'new_cost' from the argument list of GNUNET_CONTAINER_heap_update_cost has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:454: warning: argument 'md' from the argument list of GNUNET_CONTAINER_meta_data_duplicate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:465: warning: argument 'md' from the argument list of GNUNET_CONTAINER_meta_data_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:480: warning: argument 'md1' from the argument list of GNUNET_CONTAINER_meta_data_test_equal has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:480: warning: argument 'md2' from the argument list of GNUNET_CONTAINER_meta_data_test_equal has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:504: warning: argument 'md' from the argument list of GNUNET_CONTAINER_meta_data_insert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:504: warning: argument 'plugin_name' from the argument list of GNUNET_CONTAINER_meta_data_insert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:504: warning: argument 'type' from the argument list of GNUNET_CONTAINER_meta_data_insert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:504: warning: argument 'format' from the argument list of GNUNET_CONTAINER_meta_data_insert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:504: warning: argument 'data_mime_type' from the argument list of GNUNET_CONTAINER_meta_data_insert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:504: warning: argument 'data' from the argument list of GNUNET_CONTAINER_meta_data_insert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:504: warning: argument 'data_size' from the argument list of GNUNET_CONTAINER_meta_data_insert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:522: warning: argument 'md' from the argument list of GNUNET_CONTAINER_meta_data_merge has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:522: warning: argument 'in' from the argument list of GNUNET_CONTAINER_meta_data_merge has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:538: warning: argument 'md' from the argument list of GNUNET_CONTAINER_meta_data_delete has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:538: warning: argument 'type' from the argument list of GNUNET_CONTAINER_meta_data_delete has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:538: warning: argument 'data' from the argument list of GNUNET_CONTAINER_meta_data_delete has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:538: warning: argument 'data_size' from the argument list of GNUNET_CONTAINER_meta_data_delete has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:551: warning: argument 'md' from the argument list of GNUNET_CONTAINER_meta_data_clear has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:562: warning: argument 'md' from the argument list of GNUNET_CONTAINER_meta_data_add_publication_date has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:577: warning: argument 'md' from the argument list of GNUNET_CONTAINER_meta_data_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:577: warning: argument 'iter' from the argument list of GNUNET_CONTAINER_meta_data_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:577: warning: argument 'iter_cls' from the argument list of GNUNET_CONTAINER_meta_data_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:594: warning: argument 'md' from the argument list of GNUNET_CONTAINER_meta_data_get_by_type has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:594: warning: argument 'type' from the argument list of GNUNET_CONTAINER_meta_data_get_by_type has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:612: warning: argument 'md' from the argument list of GNUNET_CONTAINER_meta_data_get_first_by_types has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:627: warning: argument 'md' from the argument list of GNUNET_CONTAINER_meta_data_get_thumbnail has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:627: warning: argument 'thumb' from the argument list of GNUNET_CONTAINER_meta_data_get_thumbnail has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:675: warning: argument 'md' from the argument list of GNUNET_CONTAINER_meta_data_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:675: warning: argument 'target' from the argument list of GNUNET_CONTAINER_meta_data_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:675: warning: argument 'max' from the argument list of GNUNET_CONTAINER_meta_data_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:675: warning: argument 'opt' from the argument list of GNUNET_CONTAINER_meta_data_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:690: warning: argument 'md' from the argument list of GNUNET_CONTAINER_meta_data_get_serialized_size has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:704: warning: argument 'input' from the argument list of GNUNET_CONTAINER_meta_data_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:704: warning: argument 'size' from the argument list of GNUNET_CONTAINER_meta_data_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:796: warning: argument 'len' from the argument list of GNUNET_CONTAINER_multihashmap_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:796: warning: argument 'do_not_copy_keys' from the argument list of GNUNET_CONTAINER_multihashmap_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:808: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:824: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:824: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multihashmap_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:842: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:842: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multihashmap_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:842: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multihashmap_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:856: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap_remove_all has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:856: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multihashmap_remove_all has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:884: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap_contains has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:884: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multihashmap_contains has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:901: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap_contains_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:901: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multihashmap_contains_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:901: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multihashmap_contains_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:921: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:921: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multihashmap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:921: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multihashmap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:921: warning: argument 'opt' from the argument list of GNUNET_CONTAINER_multihashmap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:935: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap_size has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:950: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:950: warning: argument 'it' from the argument list of GNUNET_CONTAINER_multihashmap_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:950: warning: argument 'it_cls' from the argument list of GNUNET_CONTAINER_multihashmap_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:970: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap_iterator_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:990: warning: argument 'iter' from the argument list of GNUNET_CONTAINER_multihashmap_iterator_next has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:990: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multihashmap_iterator_next has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:990: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multihashmap_iterator_next has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1003: warning: argument 'iter' from the argument list of GNUNET_CONTAINER_multihashmap_iterator_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1019: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1019: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multihashmap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1019: warning: argument 'it' from the argument list of GNUNET_CONTAINER_multihashmap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1019: warning: argument 'it_cls' from the argument list of GNUNET_CONTAINER_multihashmap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1086: warning: argument 'len' from the argument list of GNUNET_CONTAINER_multipeermap_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1086: warning: argument 'do_not_copy_keys' from the argument list of GNUNET_CONTAINER_multipeermap_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1097: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multipeermap_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1113: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multipeermap_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1113: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multipeermap_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1131: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multipeermap_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1131: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multipeermap_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1131: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multipeermap_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1145: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multipeermap_remove_all has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1145: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multipeermap_remove_all has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1161: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multipeermap_contains has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1161: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multipeermap_contains has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1178: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multipeermap_contains_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1178: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multipeermap_contains_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1178: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multipeermap_contains_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1198: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multipeermap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1198: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multipeermap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1198: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multipeermap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1198: warning: argument 'opt' from the argument list of GNUNET_CONTAINER_multipeermap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1213: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multipeermap_size has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1228: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multipeermap_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1228: warning: argument 'it' from the argument list of GNUNET_CONTAINER_multipeermap_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1228: warning: argument 'it_cls' from the argument list of GNUNET_CONTAINER_multipeermap_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1249: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multipeermap_iterator_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1269: warning: argument 'iter' from the argument list of GNUNET_CONTAINER_multipeermap_iterator_next has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1269: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multipeermap_iterator_next has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1269: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multipeermap_iterator_next has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1282: warning: argument 'iter' from the argument list of GNUNET_CONTAINER_multipeermap_iterator_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1298: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multipeermap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1298: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multipeermap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1298: warning: argument 'it' from the argument list of GNUNET_CONTAINER_multipeermap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1298: warning: argument 'it_cls' from the argument list of GNUNET_CONTAINER_multipeermap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1365: warning: argument 'len' from the argument list of GNUNET_CONTAINER_multishortmap_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1365: warning: argument 'do_not_copy_keys' from the argument list of GNUNET_CONTAINER_multishortmap_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1376: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multishortmap_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1392: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multishortmap_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1392: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multishortmap_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1410: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multishortmap_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1410: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multishortmap_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1410: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multishortmap_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1425: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multishortmap_remove_all has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1425: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multishortmap_remove_all has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1441: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multishortmap_contains has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1441: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multishortmap_contains has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1458: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multishortmap_contains_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1458: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multishortmap_contains_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1458: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multishortmap_contains_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1478: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multishortmap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1478: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multishortmap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1478: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multishortmap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1478: warning: argument 'opt' from the argument list of GNUNET_CONTAINER_multishortmap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1493: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multishortmap_size has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1508: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multishortmap_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1508: warning: argument 'it' from the argument list of GNUNET_CONTAINER_multishortmap_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1508: warning: argument 'it_cls' from the argument list of GNUNET_CONTAINER_multishortmap_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1531: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multishortmap_iterator_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1551: warning: argument 'iter' from the argument list of GNUNET_CONTAINER_multishortmap_iterator_next has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1551: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multishortmap_iterator_next has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1551: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multishortmap_iterator_next has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1564: warning: argument 'iter' from the argument list of GNUNET_CONTAINER_multishortmap_iterator_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1580: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multishortmap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1580: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multishortmap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1580: warning: argument 'it' from the argument list of GNUNET_CONTAINER_multishortmap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1580: warning: argument 'it_cls' from the argument list of GNUNET_CONTAINER_multishortmap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1648: warning: argument 'len' from the argument list of GNUNET_CONTAINER_multiuuidmap_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1648: warning: argument 'do_not_copy_keys' from the argument list of GNUNET_CONTAINER_multiuuidmap_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1659: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multiuuidmap_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1675: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multiuuidmap_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1675: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multiuuidmap_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1693: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multiuuidmap_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1693: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multiuuidmap_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1693: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multiuuidmap_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1707: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multiuuidmap_remove_all has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1707: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multiuuidmap_remove_all has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1723: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multiuuidmap_contains has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1723: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multiuuidmap_contains has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1740: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multiuuidmap_contains_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1740: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multiuuidmap_contains_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1740: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multiuuidmap_contains_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1760: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multiuuidmap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1760: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multiuuidmap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1760: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multiuuidmap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1760: warning: argument 'opt' from the argument list of GNUNET_CONTAINER_multiuuidmap_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1775: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multiuuidmap_size has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1790: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multiuuidmap_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1790: warning: argument 'it' from the argument list of GNUNET_CONTAINER_multiuuidmap_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1790: warning: argument 'it_cls' from the argument list of GNUNET_CONTAINER_multiuuidmap_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1813: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multiuuidmap_iterator_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1833: warning: argument 'iter' from the argument list of GNUNET_CONTAINER_multiuuidmap_iterator_next has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1833: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multiuuidmap_iterator_next has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1833: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multiuuidmap_iterator_next has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1846: warning: argument 'iter' from the argument list of GNUNET_CONTAINER_multiuuidmap_iterator_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1862: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multiuuidmap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1862: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multiuuidmap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1862: warning: argument 'it' from the argument list of GNUNET_CONTAINER_multiuuidmap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1862: warning: argument 'it_cls' from the argument list of GNUNET_CONTAINER_multiuuidmap_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1928: warning: argument 'len' from the argument list of GNUNET_CONTAINER_multihashmap32_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1939: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap32_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1951: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap32_size has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1967: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap32_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1967: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multihashmap32_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1983: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap32_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1983: warning: argument 'it' from the argument list of GNUNET_CONTAINER_multihashmap32_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:1983: warning: argument 'it_cls' from the argument list of GNUNET_CONTAINER_multihashmap32_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2002: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap32_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2002: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multihashmap32_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2002: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multihashmap32_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2018: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap32_remove_all has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2018: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multihashmap32_remove_all has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2034: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap32_contains has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2034: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multihashmap32_contains has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2051: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap32_contains_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2051: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multihashmap32_contains_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2051: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multihashmap32_contains_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2071: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap32_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2071: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multihashmap32_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2071: warning: argument 'value' from the argument list of GNUNET_CONTAINER_multihashmap32_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2071: warning: argument 'opt' from the argument list of GNUNET_CONTAINER_multihashmap32_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2090: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap32_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2090: warning: argument 'key' from the argument list of GNUNET_CONTAINER_multihashmap32_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2090: warning: argument 'it' from the argument list of GNUNET_CONTAINER_multihashmap32_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2090: warning: argument 'it_cls' from the argument list of GNUNET_CONTAINER_multihashmap32_get_multiple has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:218: warning: argument 'cfg' from the argument list of GNUNET_CONVERSATION_phone_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:218: warning: argument 'ego' from the argument list of GNUNET_CONVERSATION_phone_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:218: warning: argument 'event_handler' from the argument list of GNUNET_CONVERSATION_phone_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:218: warning: argument 'event_handler_cls' from the argument list of GNUNET_CONVERSATION_phone_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:249: warning: argument 'caller' from the argument list of GNUNET_CONVERSATION_caller_pick_up has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:249: warning: argument 'event_handler' from the argument list of GNUNET_CONVERSATION_caller_pick_up has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:249: warning: argument 'event_handler_cls' from the argument list of GNUNET_CONVERSATION_caller_pick_up has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:249: warning: argument 'speaker' from the argument list of GNUNET_CONVERSATION_caller_pick_up has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:249: warning: argument 'mic' from the argument list of GNUNET_CONVERSATION_caller_pick_up has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:288: warning: argument 'caller' from the argument list of GNUNET_CONVERSATION_caller_hang_up has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:392: warning: argument 'cfg' from the argument list of GNUNET_CONVERSATION_call_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:392: warning: argument 'caller_id' from the argument list of GNUNET_CONVERSATION_call_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:392: warning: argument 'callee' from the argument list of GNUNET_CONVERSATION_call_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:392: warning: argument 'speaker' from the argument list of GNUNET_CONVERSATION_call_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:392: warning: argument 'mic' from the argument list of GNUNET_CONVERSATION_call_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:392: warning: argument 'event_handler' from the argument list of GNUNET_CONVERSATION_call_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:392: warning: argument 'event_handler_cls' from the argument list of GNUNET_CONVERSATION_call_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:420: warning: argument 'call' from the argument list of GNUNET_CONVERSATION_call_resume has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:420: warning: argument 'speaker' from the argument list of GNUNET_CONVERSATION_call_resume has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_conversation_service.h:420: warning: argument 'mic' from the argument list of GNUNET_CONVERSATION_call_resume has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_core_service.h:247: warning: argument 'cfg' from the argument list of GNUNET_CORE_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_core_service.h:247: warning: argument 'cls' from the argument list of GNUNET_CORE_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_core_service.h:247: warning: argument 'init' from the argument list of GNUNET_CORE_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_core_service.h:247: warning: argument 'connects' from the argument list of GNUNET_CORE_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_core_service.h:247: warning: argument 'disconnects' from the argument list of GNUNET_CORE_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_core_service.h:247: warning: argument 'handlers' from the argument list of GNUNET_CORE_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_core_service.h:272: warning: argument 'h' from the argument list of GNUNET_CORE_get_mq has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_core_service.h:272: warning: argument 'pid' from the argument list of GNUNET_CORE_get_mq has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:244: warning: argument 'cfg' from the argument list of GNUNET_ABD_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:253: warning: argument 'handle' from the argument list of GNUNET_ABD_disconnect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:320: warning: argument 'handle' from the argument list of GNUNET_ABD_verify has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:320: warning: argument 'issuer_key' from the argument list of GNUNET_ABD_verify has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:320: warning: argument 'issuer_attribute' from the argument list of GNUNET_ABD_verify has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:320: warning: argument 'subject_key' from the argument list of GNUNET_ABD_verify has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:320: warning: argument 'delegate_count' from the argument list of GNUNET_ABD_verify has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:320: warning: argument 'delegates' from the argument list of GNUNET_ABD_verify has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:320: warning: argument 'proc' from the argument list of GNUNET_ABD_verify has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:320: warning: argument 'proc_cls' from the argument list of GNUNET_ABD_verify has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:320: warning: The following parameters of GNUNET_ABD_verify(struct GNUNET_ABD_Handle *handle, const struct GNUNET_IDENTITY_PublicKey *issuer_key, const char *issuer_attribute, const struct GNUNET_IDENTITY_PublicKey *subject_key, uint32_t delegate_count, const struct GNUNET_ABD_Delegate *delegates, enum GNUNET_ABD_AlgoDirectionFlags direction, GNUNET_ABD_CredentialResultProcessor proc, void *proc_cls, GNUNET_ABD_IntermediateResultProcessor proc2, void *proc2_cls) are not documented: - parameter 'direction' - parameter 'proc2' - parameter 'proc2_cls' -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:333: warning: The following parameters of GNUNET_ABD_collect(struct GNUNET_ABD_Handle *handle, const struct GNUNET_IDENTITY_PublicKey *issuer_key, const char *issuer_attribute, const struct GNUNET_IDENTITY_PrivateKey *subject_key, enum GNUNET_ABD_AlgoDirectionFlags direction, GNUNET_ABD_CredentialResultProcessor proc, void *proc_cls, GNUNET_ABD_IntermediateResultProcessor proc2, void *proc2_cls) are not documented: - parameter 'direction' - parameter 'proc2' - parameter 'proc2_cls' -/home/william/Git/gnunet/src/abd/delegate_misc.c:187: warning: argument 'attribute' of command @param is not found in the argument list of GNUNET_ABD_delegate_issue(const struct GNUNET_IDENTITY_PrivateKey *issuer, struct GNUNET_IDENTITY_PublicKey *subject, const char *iss_attr, const char *sub_attr, struct GNUNET_TIME_Absolute *expiration) -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:392: warning: argument 'issuer' from the argument list of GNUNET_ABD_delegate_issue has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:392: warning: argument 'subject' from the argument list of GNUNET_ABD_delegate_issue has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:392: warning: The following parameter of GNUNET_ABD_delegate_issue(const struct GNUNET_IDENTITY_PrivateKey *issuer, struct GNUNET_IDENTITY_PublicKey *subject, const char *iss_attr, const char *sub_attr, struct GNUNET_TIME_Absolute *expiration) is not documented: - parameter 'sub_attr' -/home/william/Git/gnunet/src/include/gnunet_abd_service.h:405: warning: argument 'lr' from the argument list of GNUNET_ABD_request_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:584: warning: argument 'seed' from the argument list of GNUNET_CRYPTO_seed_weak_random has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:695: warning: argument 'mode' from the argument list of GNUNET_CRYPTO_random_u32 has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:695: warning: argument 'i' from the argument list of GNUNET_CRYPTO_random_u32 has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:707: warning: argument 'mode' from the argument list of GNUNET_CRYPTO_random_u64 has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:707: warning: argument 'max' from the argument list of GNUNET_CRYPTO_random_u64 has multiple @param documentation sections -/home/william/Git/gnunet/src/util/crypto_random.c:243: warning: explicit link request to 'GNUNET_RANDOM_QUALITY_STRONG' could not be resolved -/home/william/Git/gnunet/src/util/crypto_random.c:244: warning: explicit link request to 'GNUNET_RANDOM_QUALITY_WEAK' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:720: warning: argument 'mode' from the argument list of GNUNET_CRYPTO_random_permute has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:720: warning: argument 'n' from the argument list of GNUNET_CRYPTO_random_permute has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:730: warning: argument 'key' from the argument list of GNUNET_CRYPTO_symmetric_create_session_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:746: warning: argument 'block' from the argument list of GNUNET_CRYPTO_symmetric_encrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:746: warning: argument 'size' from the argument list of GNUNET_CRYPTO_symmetric_encrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:746: warning: argument 'sessionkey' from the argument list of GNUNET_CRYPTO_symmetric_encrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:746: warning: argument 'iv' from the argument list of GNUNET_CRYPTO_symmetric_encrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:766: warning: argument 'block' from the argument list of GNUNET_CRYPTO_symmetric_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:766: warning: argument 'size' from the argument list of GNUNET_CRYPTO_symmetric_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:766: warning: argument 'sessionkey' from the argument list of GNUNET_CRYPTO_symmetric_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:766: warning: argument 'iv' from the argument list of GNUNET_CRYPTO_symmetric_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:766: warning: argument 'result' from the argument list of GNUNET_CRYPTO_symmetric_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/util/crypto_ecc_setup.c:1: warning: argument 'filename' from the argument list of GNUNET_CRYPTO_eddsa_key_from_file has multiple @param documentation sections -/home/william/Git/gnunet/src/util/crypto_ecc_setup.c:1: warning: argument 'do_create' from the argument list of GNUNET_CRYPTO_eddsa_key_from_file has multiple @param documentation sections -/home/william/Git/gnunet/src/util/crypto_ecc_setup.c:1: warning: argument 'pkey' from the argument list of GNUNET_CRYPTO_eddsa_key_from_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1510: warning: argument 'cfg' from the argument list of GNUNET_CRYPTO_eddsa_key_create_from_configuration has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1639: warning: argument 'cfg' from the argument list of GNUNET_CRYPTO_get_peer_identity has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1639: warning: argument 'dst' from the argument list of GNUNET_CRYPTO_get_peer_identity has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1823: warning: explicit link request to 'GNUNET_CRRYPTO_ecdh_eddsa' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1839: warning: explicit link request to 'GNUNET_CRRYPTO_ecdh_ecdsa' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1855: warning: explicit link request to 'GNUNET_CRRYPTO_eddsa_ecdh' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1870: warning: explicit link request to 'GNUNET_CRRYPTO_ecdsa_ecdh' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1977: warning: argument 'purp' of command @param is not found in the argument list of GNUNET_CRYPTO_edx25519_sign_(const struct GNUNET_CRYPTO_Edx25519PrivateKey *priv, const struct GNUNET_CRYPTO_EccSignaturePurpose *purpose, struct GNUNET_CRYPTO_Edx25519Signature *sig) -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1802: warning: argument 'priv' from the argument list of GNUNET_CRYPTO_edx25519_sign_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1802: warning: argument 'sig' from the argument list of GNUNET_CRYPTO_edx25519_sign_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2052: warning: argument 'priv' of command @param is not found in the argument list of GNUNET_CRYPTO_eddsa_verify(purp, ps, sig, pub) -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2065: warning: The following parameter of GNUNET_CRYPTO_eddsa_verify(purp, ps, sig, pub) is not documented: - parameter 'pub' -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2104: warning: argument 'priv' of command @param is not found in the argument list of GNUNET_CRYPTO_ecdsa_verify(purp, ps, sig, pub) -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2117: warning: The following parameter of GNUNET_CRYPTO_ecdsa_verify(purp, ps, sig, pub) is not documented: - parameter 'pub' -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2156: warning: argument 'priv' of command @param is not found in the argument list of GNUNET_CRYPTO_edx25519_verify(purp, ps, sig, pub) -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2169: warning: The following parameter of GNUNET_CRYPTO_edx25519_verify(purp, ps, sig, pub) is not documented: - parameter 'pub' -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:630: warning: argument 'buf' from the argument list of GNUNET_CRYPTO_crc16_n has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:630: warning: argument 'len' from the argument list of GNUNET_CRYPTO_crc16_n has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:643: warning: argument 'buf' from the argument list of GNUNET_CRYPTO_crc32_n has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:643: warning: argument 'len' from the argument list of GNUNET_CRYPTO_crc32_n has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1027: warning: argument 'priority' from the argument list of GNUNET_CRYPTO_hash_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1027: warning: argument 'filename' from the argument list of GNUNET_CRYPTO_hash_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1027: warning: argument 'blocksize' from the argument list of GNUNET_CRYPTO_hash_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1027: warning: argument 'callback' from the argument list of GNUNET_CRYPTO_hash_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1027: warning: argument 'callback_cls' from the argument list of GNUNET_CRYPTO_hash_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_dht_service.h:297: warning: explicit link request to 'GNUNET_BLOCK_evaluate' could not be resolved -/home/william/Git/gnunet/src/util/dnsstub.c:697: warning: argument 'retry_frequ' of command @param is not found in the argument list of GNUNET_DNSSTUB_set_retry(struct GNUNET_DNSSTUB_Context *ctx, struct GNUNET_TIME_Relative retry_freq) -/home/william/Git/gnunet/src/include/gnunet_dnsstub_lib.h:95: warning: argument 'ctx' from the argument list of GNUNET_DNSSTUB_set_retry has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_dnsstub_lib.h:134: warning: argument 'ctx' from the argument list of GNUNET_DNSSTUB_resolve has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_dnsstub_lib.h:134: warning: argument 'request' from the argument list of GNUNET_DNSSTUB_resolve has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_dnsstub_lib.h:134: warning: argument 'request_len' from the argument list of GNUNET_DNSSTUB_resolve has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_dnsstub_lib.h:134: warning: argument 'rc' from the argument list of GNUNET_DNSSTUB_resolve has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_dnsstub_lib.h:134: warning: argument 'rc_cls' from the argument list of GNUNET_DNSSTUB_resolve has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_dnsparser_lib.h:581: warning: argument 'name' from the argument list of GNUNET_DNSPARSER_check_name has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_dnsparser_lib.h:718: warning: argument 'dst' from the argument list of GNUNET_DNSPARSER_builder_add_cert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_dnsparser_lib.h:718: warning: argument 'dst_len' from the argument list of GNUNET_DNSPARSER_builder_add_cert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_dnsparser_lib.h:718: warning: argument 'off' from the argument list of GNUNET_DNSPARSER_builder_add_cert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_dnsparser_lib.h:718: warning: argument 'cert' from the argument list of GNUNET_DNSPARSER_builder_add_cert has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_dns_service.h:140: warning: argument 'rh' from the argument list of GNUNET_DNS_request_forward has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_dns_service.h:164: warning: argument 'rh' from the argument list of GNUNET_DNS_request_answer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_dns_service.h:164: warning: argument 'reply_length' from the argument list of GNUNET_DNS_request_answer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_dns_service.h:164: warning: argument 'reply' from the argument list of GNUNET_DNS_request_answer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datacache_lib.h:109: warning: argument 'how' of command @param is not found in the argument list of GNUNET_DATACACHE_put(struct GNUNET_DATACACHE_Handle *h, const struct GNUNET_HashCode *key, uint32_t xor_distance, size_t data_size, const char *data, enum GNUNET_BLOCK_Type type, struct GNUNET_TIME_Absolute discard_time, unsigned int path_info_len, const struct GNUNET_DHT_PathElement *path_info) -/home/william/Git/gnunet/src/include/gnunet_datacache_lib.h:80: warning: The following parameter of GNUNET_DATACACHE_put(struct GNUNET_DATACACHE_Handle *h, const struct GNUNET_HashCode *key, uint32_t xor_distance, size_t data_size, const char *data, enum GNUNET_BLOCK_Type type, struct GNUNET_TIME_Absolute discard_time, unsigned int path_info_len, const struct GNUNET_DHT_PathElement *path_info) is not documented: - parameter 'xor_distance' -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:163: warning: argument 'h' from the argument list of GNUNET_DATASTORE_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:163: warning: argument 'rid' from the argument list of GNUNET_DATASTORE_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:163: warning: argument 'key' from the argument list of GNUNET_DATASTORE_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:163: warning: argument 'size' from the argument list of GNUNET_DATASTORE_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:163: warning: argument 'data' from the argument list of GNUNET_DATASTORE_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:163: warning: argument 'type' from the argument list of GNUNET_DATASTORE_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:163: warning: argument 'priority' from the argument list of GNUNET_DATASTORE_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:163: warning: argument 'anonymity' from the argument list of GNUNET_DATASTORE_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:163: warning: argument 'replication' from the argument list of GNUNET_DATASTORE_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:163: warning: argument 'expiration' from the argument list of GNUNET_DATASTORE_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:163: warning: argument 'queue_priority' from the argument list of GNUNET_DATASTORE_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:163: warning: argument 'max_queue_size' from the argument list of GNUNET_DATASTORE_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:163: warning: argument 'cont' from the argument list of GNUNET_DATASTORE_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:163: warning: argument 'cont_cls' from the argument list of GNUNET_DATASTORE_put has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:200: warning: argument 'queue_priority' from the argument list of GNUNET_DATASTORE_release_reserve has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:200: warning: argument 'max_queue_size' from the argument list of GNUNET_DATASTORE_release_reserve has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:227: warning: argument 'h' from the argument list of GNUNET_DATASTORE_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:227: warning: argument 'key' from the argument list of GNUNET_DATASTORE_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:227: warning: argument 'size' from the argument list of GNUNET_DATASTORE_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:227: warning: argument 'data' from the argument list of GNUNET_DATASTORE_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:227: warning: argument 'queue_priority' from the argument list of GNUNET_DATASTORE_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:227: warning: argument 'max_queue_size' from the argument list of GNUNET_DATASTORE_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:227: warning: argument 'cont' from the argument list of GNUNET_DATASTORE_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:227: warning: argument 'cont_cls' from the argument list of GNUNET_DATASTORE_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:284: warning: argument 'h' from the argument list of GNUNET_DATASTORE_get_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:284: warning: argument 'next_uid' from the argument list of GNUNET_DATASTORE_get_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:284: warning: argument 'random' from the argument list of GNUNET_DATASTORE_get_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:284: warning: argument 'key' from the argument list of GNUNET_DATASTORE_get_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:284: warning: argument 'type' from the argument list of GNUNET_DATASTORE_get_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:284: warning: argument 'queue_priority' from the argument list of GNUNET_DATASTORE_get_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:284: warning: argument 'max_queue_size' from the argument list of GNUNET_DATASTORE_get_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:284: warning: argument 'proc' from the argument list of GNUNET_DATASTORE_get_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:284: warning: argument 'proc_cls' from the argument list of GNUNET_DATASTORE_get_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:312: warning: argument 'h' from the argument list of GNUNET_DATASTORE_get_zero_anonymity has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:312: warning: argument 'next_uid' from the argument list of GNUNET_DATASTORE_get_zero_anonymity has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:312: warning: argument 'queue_priority' from the argument list of GNUNET_DATASTORE_get_zero_anonymity has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:312: warning: argument 'max_queue_size' from the argument list of GNUNET_DATASTORE_get_zero_anonymity has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:312: warning: argument 'type' from the argument list of GNUNET_DATASTORE_get_zero_anonymity has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:312: warning: argument 'proc' from the argument list of GNUNET_DATASTORE_get_zero_anonymity has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_service.h:312: warning: argument 'proc_cls' from the argument list of GNUNET_DATASTORE_get_zero_anonymity has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_datastore_plugin.h:139: warning: explicit link request to 'GNUNET_SYSERROR' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_datastore_plugin.h:239: warning: explicit link request to 'GNUNET_SYSERROR' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_disk_lib.h:673: warning: argument 'glob_patterb' of command @param is not found in the argument list of GNUNET_DISK_glob(const char *glob_pattern, GNUNET_FileNameCallback callback, void *callback_cls) -/home/william/Git/gnunet/src/include/gnunet_disk_lib.h:683: warning: The following parameter of GNUNET_DISK_glob(const char *glob_pattern, GNUNET_FileNameCallback callback, void *callback_cls) is not documented: - parameter 'glob_pattern' -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:118: warning: argument 'uri' from the argument list of GNUNET_FS_uri_to_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:118: warning: argument 'key' from the argument list of GNUNET_FS_uri_to_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:210: warning: argument 'uri' from the argument list of GNUNET_FS_uri_ksk_get_keywords has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:210: warning: argument 'iterator' from the argument list of GNUNET_FS_uri_ksk_get_keywords has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:210: warning: argument 'iterator_cls' from the argument list of GNUNET_FS_uri_ksk_get_keywords has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:273: warning: argument 'u1' from the argument list of GNUNET_FS_uri_ksk_merge has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:273: warning: argument 'u2' from the argument list of GNUNET_FS_uri_ksk_merge has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:361: warning: argument 'ns' from the argument list of GNUNET_FS_uri_sks_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:361: warning: argument 'id' from the argument list of GNUNET_FS_uri_sks_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:374: warning: argument 'uri' from the argument list of GNUNET_FS_uri_sks_get_namespace has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:374: warning: argument 'pseudonym' from the argument list of GNUNET_FS_uri_sks_get_namespace has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:416: warning: argument 'uri' from the argument list of GNUNET_FS_uri_chk_get_file_size has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:462: warning: argument 'metadata' of command @param is not found in the argument list of GNUNET_FS_GETOPT_METADATA(char shortName, const char *name, const char *argumentHelp, const char *description, struct GNUNET_CONTAINER_MetaData **meta) -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:438: warning: The following parameter of GNUNET_FS_GETOPT_METADATA(char shortName, const char *name, const char *argumentHelp, const char *description, struct GNUNET_CONTAINER_MetaData **meta) is not documented: - parameter 'meta' -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1766: warning: argument 'h' from the argument list of GNUNET_FS_file_information_create_from_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1766: warning: argument 'client_info' from the argument list of GNUNET_FS_file_information_create_from_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1766: warning: argument 'filename' from the argument list of GNUNET_FS_file_information_create_from_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1766: warning: argument 'keywords' from the argument list of GNUNET_FS_file_information_create_from_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1766: warning: argument 'meta' from the argument list of GNUNET_FS_file_information_create_from_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1766: warning: argument 'do_index' from the argument list of GNUNET_FS_file_information_create_from_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1766: warning: argument 'bo' from the argument list of GNUNET_FS_file_information_create_from_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1795: warning: argument 'h' from the argument list of GNUNET_FS_file_information_create_from_data has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1795: warning: argument 'client_info' from the argument list of GNUNET_FS_file_information_create_from_data has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1795: warning: argument 'length' from the argument list of GNUNET_FS_file_information_create_from_data has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1795: warning: argument 'data' from the argument list of GNUNET_FS_file_information_create_from_data has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1795: warning: argument 'keywords' from the argument list of GNUNET_FS_file_information_create_from_data has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1795: warning: argument 'meta' from the argument list of GNUNET_FS_file_information_create_from_data has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1795: warning: argument 'do_index' from the argument list of GNUNET_FS_file_information_create_from_data has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1795: warning: argument 'bo' from the argument list of GNUNET_FS_file_information_create_from_data has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1853: warning: argument 'h' from the argument list of GNUNET_FS_file_information_create_from_reader has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1853: warning: argument 'client_info' from the argument list of GNUNET_FS_file_information_create_from_reader has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1853: warning: argument 'length' from the argument list of GNUNET_FS_file_information_create_from_reader has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1853: warning: argument 'reader' from the argument list of GNUNET_FS_file_information_create_from_reader has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1853: warning: argument 'reader_cls' from the argument list of GNUNET_FS_file_information_create_from_reader has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1853: warning: argument 'keywords' from the argument list of GNUNET_FS_file_information_create_from_reader has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1853: warning: argument 'meta' from the argument list of GNUNET_FS_file_information_create_from_reader has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1853: warning: argument 'do_index' from the argument list of GNUNET_FS_file_information_create_from_reader has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1853: warning: argument 'bo' from the argument list of GNUNET_FS_file_information_create_from_reader has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1880: warning: argument 'h' from the argument list of GNUNET_FS_file_information_create_empty_directory has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1880: warning: argument 'client_info' from the argument list of GNUNET_FS_file_information_create_empty_directory has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1880: warning: argument 'keywords' from the argument list of GNUNET_FS_file_information_create_empty_directory has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1880: warning: argument 'meta' from the argument list of GNUNET_FS_file_information_create_empty_directory has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1880: warning: argument 'bo' from the argument list of GNUNET_FS_file_information_create_empty_directory has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1880: warning: argument 'filename' from the argument list of GNUNET_FS_file_information_create_empty_directory has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1915: warning: argument 'dir' from the argument list of GNUNET_FS_file_information_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:1915: warning: argument 'ent' from the argument list of GNUNET_FS_file_information_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2005: warning: argument 'pc' from the argument list of GNUNET_FS_publish_stop has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2042: warning: argument 'h' from the argument list of GNUNET_FS_publish_ksk has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2042: warning: argument 'ksk_uri' from the argument list of GNUNET_FS_publish_ksk has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2042: warning: argument 'meta' from the argument list of GNUNET_FS_publish_ksk has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2042: warning: argument 'uri' from the argument list of GNUNET_FS_publish_ksk has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2042: warning: argument 'bo' from the argument list of GNUNET_FS_publish_ksk has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2042: warning: argument 'options' from the argument list of GNUNET_FS_publish_ksk has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2042: warning: argument 'cont' from the argument list of GNUNET_FS_publish_ksk has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2042: warning: argument 'cont_cls' from the argument list of GNUNET_FS_publish_ksk has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2082: warning: argument 'h' from the argument list of GNUNET_FS_publish_sks has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2082: warning: argument 'ns' from the argument list of GNUNET_FS_publish_sks has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2082: warning: argument 'identifier' from the argument list of GNUNET_FS_publish_sks has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2082: warning: argument 'update' from the argument list of GNUNET_FS_publish_sks has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2082: warning: argument 'meta' from the argument list of GNUNET_FS_publish_sks has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2082: warning: argument 'uri' from the argument list of GNUNET_FS_publish_sks has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2082: warning: argument 'bo' from the argument list of GNUNET_FS_publish_sks has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2082: warning: argument 'options' from the argument list of GNUNET_FS_publish_sks has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2082: warning: argument 'cont' from the argument list of GNUNET_FS_publish_sks has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2082: warning: argument 'cont_cls' from the argument list of GNUNET_FS_publish_sks has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2131: warning: argument 'h' from the argument list of GNUNET_FS_get_indexed_files has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2131: warning: argument 'iterator' from the argument list of GNUNET_FS_get_indexed_files has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2131: warning: argument 'iterator_cls' from the argument list of GNUNET_FS_get_indexed_files has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2209: warning: argument 'h' from the argument list of GNUNET_FS_namespace_list_updateable has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2209: warning: argument 'ns' from the argument list of GNUNET_FS_namespace_list_updateable has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2209: warning: argument 'next_id' from the argument list of GNUNET_FS_namespace_list_updateable has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2209: warning: argument 'ip' from the argument list of GNUNET_FS_namespace_list_updateable has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2209: warning: argument 'ip_cls' from the argument list of GNUNET_FS_namespace_list_updateable has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2378: warning: argument 'h' from the argument list of GNUNET_FS_download_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2378: warning: argument 'uri' from the argument list of GNUNET_FS_download_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2378: warning: argument 'meta' from the argument list of GNUNET_FS_download_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2378: warning: argument 'filename' from the argument list of GNUNET_FS_download_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2378: warning: argument 'tempname' from the argument list of GNUNET_FS_download_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2378: warning: argument 'offset' from the argument list of GNUNET_FS_download_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2378: warning: argument 'length' from the argument list of GNUNET_FS_download_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2378: warning: argument 'anonymity' from the argument list of GNUNET_FS_download_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2378: warning: argument 'options' from the argument list of GNUNET_FS_download_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2378: warning: argument 'cctx' from the argument list of GNUNET_FS_download_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2378: warning: argument 'parent' from the argument list of GNUNET_FS_download_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2422: warning: argument 'h' from the argument list of GNUNET_FS_download_start_from_search has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2422: warning: argument 'sr' from the argument list of GNUNET_FS_download_start_from_search has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2422: warning: argument 'filename' from the argument list of GNUNET_FS_download_start_from_search has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2422: warning: argument 'tempname' from the argument list of GNUNET_FS_download_start_from_search has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2422: warning: argument 'offset' from the argument list of GNUNET_FS_download_start_from_search has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2422: warning: argument 'length' from the argument list of GNUNET_FS_download_start_from_search has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2422: warning: argument 'anonymity' from the argument list of GNUNET_FS_download_start_from_search has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2422: warning: argument 'options' from the argument list of GNUNET_FS_download_start_from_search has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2422: warning: argument 'cctx' from the argument list of GNUNET_FS_download_start_from_search has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2544: warning: argument 'size' from the argument list of GNUNET_FS_directory_list_contents has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2544: warning: argument 'data' from the argument list of GNUNET_FS_directory_list_contents has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2544: warning: argument 'offset' from the argument list of GNUNET_FS_directory_list_contents has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2544: warning: argument 'dep' from the argument list of GNUNET_FS_directory_list_contents has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2544: warning: argument 'dep_cls' from the argument list of GNUNET_FS_directory_list_contents has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2577: warning: argument 'bld' from the argument list of GNUNET_FS_directory_builder_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2577: warning: argument 'uri' from the argument list of GNUNET_FS_directory_builder_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2577: warning: argument 'md' from the argument list of GNUNET_FS_directory_builder_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2577: warning: argument 'data' from the argument list of GNUNET_FS_directory_builder_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2736: warning: argument 'filename' from the argument list of GNUNET_FS_directory_scan_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2736: warning: argument 'disable_extractor' from the argument list of GNUNET_FS_directory_scan_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2736: warning: argument 'ex' from the argument list of GNUNET_FS_directory_scan_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2736: warning: argument 'cb' from the argument list of GNUNET_FS_directory_scan_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2736: warning: argument 'cb_cls' from the argument list of GNUNET_FS_directory_scan_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fs_service.h:2762: warning: argument 'ds' from the argument list of GNUNET_FS_directory_scan_get_result has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fragmentation_lib.h:94: warning: argument 'stats' from the argument list of GNUNET_FRAGMENT_context_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fragmentation_lib.h:94: warning: argument 'mtu' from the argument list of GNUNET_FRAGMENT_context_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fragmentation_lib.h:94: warning: argument 'tracker' from the argument list of GNUNET_FRAGMENT_context_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fragmentation_lib.h:94: warning: argument 'msg_delay' from the argument list of GNUNET_FRAGMENT_context_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fragmentation_lib.h:94: warning: argument 'ack_delay' from the argument list of GNUNET_FRAGMENT_context_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fragmentation_lib.h:94: warning: argument 'msg' from the argument list of GNUNET_FRAGMENT_context_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fragmentation_lib.h:94: warning: argument 'proc' from the argument list of GNUNET_FRAGMENT_context_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_fragmentation_lib.h:94: warning: argument 'proc_cls' from the argument list of GNUNET_FRAGMENT_context_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_json_lib.h:53: warning: argument 'gnsrecord_object' of command @param is not found in the argument list of GNUNET_GNSRECORD_JSON_spec_gnsrecord(struct GNUNET_GNSRECORD_Data **rd, unsigned int *rd_count, char **name) -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_json_lib.h:1: warning: The following parameters of GNUNET_GNSRECORD_JSON_spec_gnsrecord(struct GNUNET_GNSRECORD_Data **rd, unsigned int *rd_count, char **name) are not documented: - parameter 'rd' - parameter 'rd_count' - parameter 'name' -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_json_lib.h:71: warning: The following parameter of GNUNET_GNSRECORD_JSON_from_gnsrecord(const char *rname, const struct GNUNET_GNSRECORD_Data *rd, unsigned int rd_count) is not documented: - parameter 'rd_count' -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:335: warning: argument 'type' from the argument list of GNUNET_GNSRECORD_value_to_string has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:335: warning: argument 'data' from the argument list of GNUNET_GNSRECORD_value_to_string has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:335: warning: argument 'data_size' from the argument list of GNUNET_GNSRECORD_value_to_string has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:350: warning: argument 'type' from the argument list of GNUNET_GNSRECORD_string_to_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:350: warning: argument 's' from the argument list of GNUNET_GNSRECORD_string_to_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:350: warning: argument 'data' from the argument list of GNUNET_GNSRECORD_string_to_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:350: warning: argument 'data_size' from the argument list of GNUNET_GNSRECORD_string_to_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:361: warning: argument 'dns_typename' from the argument list of GNUNET_GNSRECORD_typename_to_number has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:385: warning: argument 'rd_count' from the argument list of GNUNET_GNSRECORD_records_get_size has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:385: warning: argument 'rd' from the argument list of GNUNET_GNSRECORD_records_get_size has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:399: warning: argument 'rd_count' from the argument list of GNUNET_GNSRECORD_records_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:399: warning: argument 'rd' from the argument list of GNUNET_GNSRECORD_records_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:399: warning: argument 'dest_size' from the argument list of GNUNET_GNSRECORD_records_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:399: warning: argument 'dest' from the argument list of GNUNET_GNSRECORD_records_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:417: warning: argument 'len' from the argument list of GNUNET_GNSRECORD_records_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:417: warning: argument 'src' from the argument list of GNUNET_GNSRECORD_records_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:417: warning: argument 'rd_count' from the argument list of GNUNET_GNSRECORD_records_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:417: warning: argument 'dest' from the argument list of GNUNET_GNSRECORD_records_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:456: warning: argument 'z' from the argument list of GNUNET_GNSRECORD_z2s has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:470: warning: argument 'pkey' from the argument list of GNUNET_GNSRECORD_pkey_to_zkey has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:483: warning: argument 'zkey' from the argument list of GNUNET_GNSRECORD_zkey_to_pkey has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:483: warning: argument 'pkey' from the argument list of GNUNET_GNSRECORD_zkey_to_pkey has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:508: warning: argument 'pub' from the argument list of GNUNET_GNSRECORD_query_from_public_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:508: warning: argument 'label' from the argument list of GNUNET_GNSRECORD_query_from_public_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:508: warning: argument 'query' from the argument list of GNUNET_GNSRECORD_query_from_public_key has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:528: warning: argument 'result' of command @param is not found in the argument list of GNUNET_GNSRECORD_block_create(const struct GNUNET_IDENTITY_PrivateKey *key, struct GNUNET_TIME_Absolute expire, const char *label, const struct GNUNET_GNSRECORD_Data *rd, unsigned int rd_count, struct GNUNET_GNSRECORD_Block **block) -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:522: warning: The following parameter of GNUNET_GNSRECORD_block_create(const struct GNUNET_IDENTITY_PrivateKey *key, struct GNUNET_TIME_Absolute expire, const char *label, const struct GNUNET_GNSRECORD_Data *rd, unsigned int rd_count, struct GNUNET_GNSRECORD_Block **block) is not documented: - parameter 'block' -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:593: warning: argument 'block' from the argument list of GNUNET_GNSRECORD_block_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:593: warning: argument 'zone_key' from the argument list of GNUNET_GNSRECORD_block_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:593: warning: argument 'label' from the argument list of GNUNET_GNSRECORD_block_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:593: warning: argument 'proc' from the argument list of GNUNET_GNSRECORD_block_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:593: warning: argument 'proc_cls' from the argument list of GNUNET_GNSRECORD_block_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:607: warning: argument 'a' from the argument list of GNUNET_GNSRECORD_records_cmp has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:607: warning: argument 'b' from the argument list of GNUNET_GNSRECORD_records_cmp has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:661: warning: explicit link request to 'GNUNET_GNSRECORD_PublicKey' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:714: warning: argument 'rd_public_count' of command @param is not found in the argument list of GNUNET_GNSRECORD_normalize_record_set(const char *label, const struct GNUNET_GNSRECORD_Data *rd, unsigned int rd_count, struct GNUNET_GNSRECORD_Data *rd_public, unsigned int *rd_count_public, struct GNUNET_TIME_Absolute *min_expiry, int include_private, char **emsg) -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:636: warning: The following parameter of GNUNET_GNSRECORD_normalize_record_set(const char *label, const struct GNUNET_GNSRECORD_Data *rd, unsigned int rd_count, struct GNUNET_GNSRECORD_Data *rd_public, unsigned int *rd_count_public, struct GNUNET_TIME_Absolute *min_expiry, int include_private, char **emsg) is not documented: - parameter 'rd_count_public' -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:745: warning: argument 'rd_public_count' of command @param is not found in the argument list of GNUNET_GNSRECORD_convert_records_for_export(const char *label, const struct GNUNET_GNSRECORD_Data *rd, unsigned int rd_count, struct GNUNET_GNSRECORD_Data *rd_public, unsigned int *rd_count_public, struct GNUNET_TIME_Absolute *expiry, char **emsg) -/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:636: warning: The following parameter of GNUNET_GNSRECORD_convert_records_for_export(const char *label, const struct GNUNET_GNSRECORD_Data *rd, unsigned int rd_count, struct GNUNET_GNSRECORD_Data *rd_public, unsigned int *rd_count_public, struct GNUNET_TIME_Absolute *expiry, char **emsg) is not documented: - parameter 'rd_count_public' -/home/william/Git/gnunet/src/include/gnunet_gns_service.h:86: warning: argument 'handle' from the argument list of GNUNET_GNS_disconnect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gns_service.h:138: warning: argument 'handle' from the argument list of GNUNET_GNS_lookup has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gns_service.h:138: warning: argument 'name' from the argument list of GNUNET_GNS_lookup has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gns_service.h:138: warning: argument 'zone' from the argument list of GNUNET_GNS_lookup has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gns_service.h:138: warning: argument 'type' from the argument list of GNUNET_GNS_lookup has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gns_service.h:138: warning: argument 'options' from the argument list of GNUNET_GNS_lookup has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gns_service.h:138: warning: argument 'proc' from the argument list of GNUNET_GNS_lookup has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gns_service.h:138: warning: argument 'proc_cls' from the argument list of GNUNET_GNS_lookup has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gns_service.h:213: warning: argument 'handle' from the argument list of GNUNET_GNS_lookup_with_tld has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gns_service.h:213: warning: argument 'name' from the argument list of GNUNET_GNS_lookup_with_tld has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gns_service.h:213: warning: argument 'type' from the argument list of GNUNET_GNS_lookup_with_tld has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gns_service.h:213: warning: argument 'options' from the argument list of GNUNET_GNS_lookup_with_tld has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gns_service.h:213: warning: argument 'proc' from the argument list of GNUNET_GNS_lookup_with_tld has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_gns_service.h:213: warning: argument 'proc_cls' from the argument list of GNUNET_GNS_lookup_with_tld has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_getopt_lib.h:170: warning: argument 'val' of command @param is not found in the argument list of GNUNET_GETOPT_option_timetravel(char shortName, const char *name) -/home/william/Git/gnunet/src/include/gnunet_getopt_lib.h:404: warning: argument 'argumentHelp' of command @param is not found in the argument list of GNUNET_GETOPT_option_increment_uint(char shortName, const char *name, const char *description, unsigned int *val) -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:140: warning: argument 'peer' from the argument list of GNUNET_HELLO_address_allocate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:140: warning: argument 'transport_name' from the argument list of GNUNET_HELLO_address_allocate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:140: warning: argument 'address' from the argument list of GNUNET_HELLO_address_allocate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:140: warning: argument 'address_length' from the argument list of GNUNET_HELLO_address_allocate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:140: warning: argument 'local_info' from the argument list of GNUNET_HELLO_address_allocate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:166: warning: argument 'a1' from the argument list of GNUNET_HELLO_address_cmp has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:166: warning: argument 'a2' from the argument list of GNUNET_HELLO_address_cmp has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:257: warning: argument 'address' from the argument list of GNUNET_HELLO_add_address has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:257: warning: argument 'expiration' from the argument list of GNUNET_HELLO_add_address has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:257: warning: argument 'target' from the argument list of GNUNET_HELLO_add_address has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:257: warning: argument 'max' from the argument list of GNUNET_HELLO_add_address has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:321: warning: argument 'h1' from the argument list of GNUNET_HELLO_merge has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:321: warning: argument 'h2' from the argument list of GNUNET_HELLO_merge has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:321: warning: argument 'h1' from the argument list of GNUNET_HELLO_equals has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:321: warning: argument 'h2' from the argument list of GNUNET_HELLO_equals has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:321: warning: argument 'now' from the argument list of GNUNET_HELLO_equals has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:386: warning: argument 'msg' from the argument list of GNUNET_HELLO_iterate_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:386: warning: argument 'return_modified' from the argument list of GNUNET_HELLO_iterate_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:386: warning: argument 'it' from the argument list of GNUNET_HELLO_iterate_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:386: warning: argument 'it_cls' from the argument list of GNUNET_HELLO_iterate_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:406: warning: argument 'new_hello' from the argument list of GNUNET_HELLO_iterate_new_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:406: warning: argument 'old_hello' from the argument list of GNUNET_HELLO_iterate_new_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:406: warning: argument 'expiration_limit' from the argument list of GNUNET_HELLO_iterate_new_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:406: warning: argument 'it' from the argument list of GNUNET_HELLO_iterate_new_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:406: warning: argument 'it_cls' from the argument list of GNUNET_HELLO_iterate_new_addresses has multiple @param documentation sections -/home/william/Git/gnunet/src/hello/hello-ng.c:58: warning: argument 'out' of command @param is not found in the argument list of GNUNET_HELLO_sign_address(const char *address, enum GNUNET_NetworkType nt, struct GNUNET_TIME_Absolute mono_time, const struct GNUNET_CRYPTO_EddsaPrivateKey *private_key, void **result, size_t *result_size) -/home/william/Git/gnunet/src/hello/hello-ng.c:58: warning: argument 'out' of command @param is not found in the argument list of GNUNET_HELLO_sign_address(const char *address, enum GNUNET_NetworkType nt, struct GNUNET_TIME_Absolute mono_time, const struct GNUNET_CRYPTO_EddsaPrivateKey *private_key, void **result, size_t *result_size) -/home/william/Git/gnunet/src/hello/hello-ng.c:58: warning: argument 'out' of command @param is not found in the argument list of GNUNET_HELLO_sign_address(const char *address, enum GNUNET_NetworkType nt, struct GNUNET_TIME_Absolute mono_time, const struct GNUNET_CRYPTO_EddsaPrivateKey *private_key, void **result, size_t *result_size) -/home/william/Git/gnunet/src/hello/hello-ng.c:58: warning: argument 'out' of command @param is not found in the argument list of GNUNET_HELLO_sign_address(const char *address, enum GNUNET_NetworkType nt, struct GNUNET_TIME_Absolute mono_time, const struct GNUNET_CRYPTO_EddsaPrivateKey *private_key, void **result, size_t *result_size) -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:492: warning: argument 'address' from the argument list of GNUNET_HELLO_sign_address has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:492: warning: argument 'nt' from the argument list of GNUNET_HELLO_sign_address has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:492: warning: argument 'mono_time' from the argument list of GNUNET_HELLO_sign_address has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:492: warning: argument 'private_key' from the argument list of GNUNET_HELLO_sign_address has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:492: warning: argument 'result' from the argument list of GNUNET_HELLO_sign_address has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:492: warning: argument 'result_size' from the argument list of GNUNET_HELLO_sign_address has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:503: warning: argument 'out' of command @param is not found in the argument list of GNUNET_HELLO_extract_address(const void *raw, size_t raw_size, const struct GNUNET_PeerIdentity *pid, enum GNUNET_NetworkType *nt, struct GNUNET_TIME_Absolute *mono_time) -/home/william/Git/gnunet/src/include/gnunet_hello_lib.h:503: warning: argument 'out' of command @param is not found in the argument list of GNUNET_HELLO_extract_address(const void *raw, size_t raw_size, const struct GNUNET_PeerIdentity *pid, enum GNUNET_NetworkType *nt, struct GNUNET_TIME_Absolute *mono_time) -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:81: warning: argument 'with_control_pipe' from the argument list of GNUNET_HELPER_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:81: warning: argument 'binary_name' from the argument list of GNUNET_HELPER_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:81: warning: argument 'binary_argv' from the argument list of GNUNET_HELPER_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:81: warning: argument 'cb' from the argument list of GNUNET_HELPER_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:81: warning: argument 'exp_cb' from the argument list of GNUNET_HELPER_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:81: warning: argument 'cb_cls' from the argument list of GNUNET_HELPER_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:99: warning: argument 'h' from the argument list of GNUNET_HELPER_kill has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:99: warning: argument 'soft_kill' from the argument list of GNUNET_HELPER_kill has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:111: warning: argument 'h' from the argument list of GNUNET_HELPER_wait has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:132: warning: argument 'h' from the argument list of GNUNET_HELPER_stop has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:132: warning: argument 'soft_kill' from the argument list of GNUNET_HELPER_stop has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:167: warning: argument 'h' from the argument list of GNUNET_HELPER_send has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:167: warning: argument 'msg' from the argument list of GNUNET_HELPER_send has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:167: warning: argument 'can_drop' from the argument list of GNUNET_HELPER_send has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:167: warning: argument 'cont' from the argument list of GNUNET_HELPER_send has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_helper_lib.h:167: warning: argument 'cont_cls' from the argument list of GNUNET_HELPER_send has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:257: warning: argument 'cfg' from the argument list of GNUNET_IDENTITY_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:257: warning: argument 'cb' from the argument list of GNUNET_IDENTITY_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:257: warning: argument 'cb_cls' from the argument list of GNUNET_IDENTITY_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:262: warning: argument 'id' of command @param is not found in the argument list of GNUNET_IDENTITY_get(struct GNUNET_IDENTITY_Handle *h, const char *service_name, GNUNET_IDENTITY_Callback cb, void *cb_cls) -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:272: warning: argument 'service_name' from the argument list of GNUNET_IDENTITY_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:272: warning: argument 'cb' from the argument list of GNUNET_IDENTITY_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:272: warning: argument 'cb_cls' from the argument list of GNUNET_IDENTITY_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:290: warning: argument 'id' of command @param is not found in the argument list of GNUNET_IDENTITY_set(struct GNUNET_IDENTITY_Handle *h, const char *service_name, struct GNUNET_IDENTITY_Ego *ego, GNUNET_IDENTITY_Continuation cont, void *cont_cls) -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:301: warning: argument 'service_name' from the argument list of GNUNET_IDENTITY_set has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:301: warning: argument 'ego' from the argument list of GNUNET_IDENTITY_set has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:301: warning: argument 'cont' from the argument list of GNUNET_IDENTITY_set has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:301: warning: argument 'cont_cls' from the argument list of GNUNET_IDENTITY_set has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:314: warning: argument 'h' from the argument list of GNUNET_IDENTITY_disconnect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:352: warning: argument 'id' of command @param is not found in the argument list of GNUNET_IDENTITY_rename(struct GNUNET_IDENTITY_Handle *h, const char *old_name, const char *new_name, GNUNET_IDENTITY_Continuation cb, void *cb_cls) -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:363: warning: argument 'old_name' from the argument list of GNUNET_IDENTITY_rename has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:363: warning: argument 'new_name' from the argument list of GNUNET_IDENTITY_rename has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:363: warning: argument 'cb' from the argument list of GNUNET_IDENTITY_rename has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:363: warning: argument 'cb_cls' from the argument list of GNUNET_IDENTITY_rename has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:370: warning: argument 'id' of command @param is not found in the argument list of GNUNET_IDENTITY_delete(struct GNUNET_IDENTITY_Handle *h, const char *name, GNUNET_IDENTITY_Continuation cb, void *cb_cls) -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:380: warning: argument 'name' from the argument list of GNUNET_IDENTITY_delete has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:380: warning: argument 'cb' from the argument list of GNUNET_IDENTITY_delete has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:380: warning: argument 'cb_cls' from the argument list of GNUNET_IDENTITY_delete has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:465: warning: argument 'sig' of command @param is not found in the argument list of GNUNET_IDENTITY_signature_get_raw_length_by_type(const uint32_t type) -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:475: warning: The following parameter of GNUNET_IDENTITY_signature_get_raw_length_by_type(const uint32_t type) is not documented: - parameter 'type' -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:832: warning: argument 'name' of command @param is not found in the argument list of GNUNET_IDENTITY_ego_lookup_by_suffix(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *suffix, GNUNET_IDENTITY_EgoSuffixCallback cb, void *cb_cls) -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:845: warning: argument 'cfg' from the argument list of GNUNET_IDENTITY_ego_lookup_by_suffix has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:845: warning: argument 'cb' from the argument list of GNUNET_IDENTITY_ego_lookup_by_suffix has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:845: warning: argument 'cb_cls' from the argument list of GNUNET_IDENTITY_ego_lookup_by_suffix has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_identity_service.h:858: warning: argument 'el' from the argument list of GNUNET_IDENTITY_ego_lookup_by_suffix_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_buffer_lib.h:113: warning: argument 'buf' from the argument list of GNUNET_buffer_write_str has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_buffer_lib.h:113: warning: argument 'str' from the argument list of GNUNET_buffer_write_str has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_child_management_lib.h:55: warning: argument 'cp' of command @param is not found in the argument list of GNUNET_wait_child(struct GNUNET_OS_Process *proc, GNUNET_ChildCompletedCallback cb, void *cb_cls) -/home/william/Git/gnunet/src/include/gnunet_child_management_lib.h:66: warning: argument 'proc' from the argument list of GNUNET_wait_child has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_child_management_lib.h:66: warning: argument 'cb_cls' from the argument list of GNUNET_wait_child has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1173: warning: argument 'd' from the argument list of GNUNET_hton_double has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1185: warning: argument 'd' from the argument list of GNUNET_ntoh_double has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1578: warning: argument 'size' from the argument list of GNUNET_xmalloc_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1578: warning: argument 'filename' from the argument list of GNUNET_xmalloc_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1578: warning: argument 'linenumber' from the argument list of GNUNET_xmalloc_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1639: warning: argument 'buf' from the argument list of GNUNET_xmemdup_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1639: warning: argument 'size' from the argument list of GNUNET_xmemdup_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1639: warning: argument 'filename' from the argument list of GNUNET_xmemdup_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1639: warning: argument 'linenumber' from the argument list of GNUNET_xmemdup_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1658: warning: argument 'size' from the argument list of GNUNET_xmalloc_unchecked_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1658: warning: argument 'filename' from the argument list of GNUNET_xmalloc_unchecked_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1658: warning: argument 'linenumber' from the argument list of GNUNET_xmalloc_unchecked_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1679: warning: argument 'ptr' from the argument list of GNUNET_xfree_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1679: warning: argument 'filename' from the argument list of GNUNET_xfree_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1679: warning: argument 'linenumber' from the argument list of GNUNET_xfree_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1690: warning: argument 'str' from the argument list of GNUNET_xstrdup_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1690: warning: argument 'filename' from the argument list of GNUNET_xstrdup_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1690: warning: argument 'linenumber' from the argument list of GNUNET_xstrdup_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1702: warning: argument 'str' from the argument list of GNUNET_xstrndup_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1702: warning: argument 'len' from the argument list of GNUNET_xstrndup_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1702: warning: argument 'filename' from the argument list of GNUNET_xstrndup_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1702: warning: argument 'linenumber' from the argument list of GNUNET_xstrndup_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1723: warning: argument 'old' from the argument list of GNUNET_xgrow_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1723: warning: argument 'elementSize' from the argument list of GNUNET_xgrow_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1723: warning: argument 'oldCount' from the argument list of GNUNET_xgrow_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1723: warning: argument 'newCount' from the argument list of GNUNET_xgrow_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1723: warning: argument 'filename' from the argument list of GNUNET_xgrow_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1723: warning: argument 'linenumber' from the argument list of GNUNET_xgrow_ has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1744: warning: argument 'out' of command @param is not found in the argument list of GNUNET_async_scope_enter(const struct GNUNET_AsyncScopeId *aid, struct GNUNET_AsyncScopeSave *old_scope) -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2110: warning: argument 'map' from the argument list of GNUNET_CONTAINER_multihashmap32_iterator_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_container_lib.h:2141: warning: argument 'iter' from the argument list of GNUNET_CONTAINER_multihashmap32_iterator_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:608: warning: argument 'sum' from the argument list of GNUNET_CRYPTO_crc16_step has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:608: warning: argument 'buf' from the argument list of GNUNET_CRYPTO_crc16_step has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:608: warning: argument 'len' from the argument list of GNUNET_CRYPTO_crc16_step has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:618: warning: argument 'sum' from the argument list of GNUNET_CRYPTO_crc16_finish has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:801: warning: argument 'iv' from the argument list of GNUNET_CRYPTO_symmetric_derive_iv_v has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:801: warning: argument 'skey' from the argument list of GNUNET_CRYPTO_symmetric_derive_iv_v has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:801: warning: argument 'salt' from the argument list of GNUNET_CRYPTO_symmetric_derive_iv_v has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:801: warning: argument 'salt_len' from the argument list of GNUNET_CRYPTO_symmetric_derive_iv_v has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:801: warning: argument 'argp' from the argument list of GNUNET_CRYPTO_symmetric_derive_iv_v has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:897: warning: argument 'salt' from the argument list of GNUNET_CRYPTO_pow_hash has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:897: warning: argument 'buf' from the argument list of GNUNET_CRYPTO_pow_hash has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:897: warning: argument 'buf_len' from the argument list of GNUNET_CRYPTO_pow_hash has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:897: warning: argument 'result' from the argument list of GNUNET_CRYPTO_pow_hash has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1424: warning: argument 'priv' of command @param is not found in the argument list of GNUNET_CRYPTO_eddsa_private_key_from_string(const char *enc, size_t enclen, struct GNUNET_CRYPTO_EddsaPrivateKey *pub) -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1403: warning: The following parameter of GNUNET_CRYPTO_eddsa_private_key_from_string(const char *enc, size_t enclen, struct GNUNET_CRYPTO_EddsaPrivateKey *pub) is not documented: - parameter 'pub' -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1683: warning: argument 'dlc' of command @param is not found in the argument list of GNUNET_CRYPTO_ecc_dlog(struct GNUNET_CRYPTO_EccDlogContext *edc, const struct GNUNET_CRYPTO_EccPoint *input) -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1691: warning: The following parameter of GNUNET_CRYPTO_ecc_dlog(struct GNUNET_CRYPTO_EccDlogContext *edc, const struct GNUNET_CRYPTO_EccPoint *input) is not documented: - parameter 'edc' -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2221: warning: argument 'purp' of command @param is not found in the argument list of GNUNET_CRYPTO_ecdsa_sign_derived(const struct GNUNET_CRYPTO_EcdsaPrivateKey *pkey, const char *label, const char *context, const struct GNUNET_CRYPTO_EccSignaturePurpose *purpose, struct GNUNET_CRYPTO_EcdsaSignature *sig) -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2213: warning: The following parameter of GNUNET_CRYPTO_ecdsa_sign_derived(const struct GNUNET_CRYPTO_EcdsaPrivateKey *pkey, const char *label, const char *context, const struct GNUNET_CRYPTO_EccSignaturePurpose *purpose, struct GNUNET_CRYPTO_EcdsaSignature *sig) is not documented: - parameter 'purpose' -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2285: warning: argument 'purp' of command @param is not found in the argument list of GNUNET_CRYPTO_eddsa_sign_derived(const struct GNUNET_CRYPTO_EddsaPrivateKey *pkey, const char *label, const char *context, const struct GNUNET_CRYPTO_EccSignaturePurpose *purpose, struct GNUNET_CRYPTO_EddsaSignature *sig) -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2276: warning: The following parameter of GNUNET_CRYPTO_eddsa_sign_derived(const struct GNUNET_CRYPTO_EddsaPrivateKey *pkey, const char *label, const char *context, const struct GNUNET_CRYPTO_EccSignaturePurpose *purpose, struct GNUNET_CRYPTO_EddsaSignature *sig) is not documented: - parameter 'purpose' -/home/william/Git/gnunet/src/util/crypto_paillier.c:331: warning: Found unknown command '\private_key' -/home/william/Git/gnunet/src/util/crypto_paillier.c:336: warning: Found unknown command '\private_key' -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2423: warning: argument 'private_key' from the argument list of GNUNET_CRYPTO_paillier_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2423: warning: argument 'public_key' from the argument list of GNUNET_CRYPTO_paillier_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2423: warning: argument 'ciphertext' from the argument list of GNUNET_CRYPTO_paillier_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2423: warning: argument 'm' from the argument list of GNUNET_CRYPTO_paillier_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2444: warning: argument 'public_key' from the argument list of GNUNET_CRYPTO_paillier_hom_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2444: warning: argument 'c1' from the argument list of GNUNET_CRYPTO_paillier_hom_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2444: warning: argument 'c2' from the argument list of GNUNET_CRYPTO_paillier_hom_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2444: warning: argument 'result' from the argument list of GNUNET_CRYPTO_paillier_hom_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2673: warning: argument 'bkey' of command @param is not found in the argument list of GNUNET_CRYPTO_rsa_blind(const struct GNUNET_HashCode *hash, const struct GNUNET_CRYPTO_RsaBlindingKeySecret *bks, struct GNUNET_CRYPTO_RsaPublicKey *pkey, void **buf, size_t *buf_size) -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2684: warning: The following parameter of GNUNET_CRYPTO_rsa_blind(const struct GNUNET_HashCode *hash, const struct GNUNET_CRYPTO_RsaBlindingKeySecret *bks, struct GNUNET_CRYPTO_RsaPublicKey *pkey, void **buf, size_t *buf_size) is not documented: - parameter 'bks' -/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2763: warning: explicit link request to 'GNUNET_CRYPTO_rsa_sign()' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_op_lib.h:87: warning: argument 'h' from the argument list of GNUNET_OP_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_op_lib.h:87: warning: argument 'op_id' from the argument list of GNUNET_OP_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_op_lib.h:87: warning: argument 'result_cb' from the argument list of GNUNET_OP_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_op_lib.h:87: warning: argument 'cls' from the argument list of GNUNET_OP_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_op_lib.h:87: warning: argument 'ctx' from the argument list of GNUNET_OP_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:598: warning: argument 'kind' from the argument list of GNUNET_log_config_missing has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:598: warning: argument 'section' from the argument list of GNUNET_log_config_missing has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:598: warning: argument 'option' from the argument list of GNUNET_log_config_missing has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:613: warning: argument 'kind' from the argument list of GNUNET_log_config_invalid has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:613: warning: argument 'section' from the argument list of GNUNET_log_config_invalid has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:613: warning: argument 'option' from the argument list of GNUNET_log_config_invalid has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:613: warning: argument 'required' from the argument list of GNUNET_log_config_invalid has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:662: warning: argument 'n' from the argument list of GNUNET_log_skip has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:662: warning: argument 'check_reset' from the argument list of GNUNET_log_skip has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:675: warning: argument 'comp' from the argument list of GNUNET_log_setup has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:675: warning: argument 'loglevel' from the argument list of GNUNET_log_setup has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:675: warning: argument 'logfile' from the argument list of GNUNET_log_setup has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:689: warning: argument 'logger' from the argument list of GNUNET_logger_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:689: warning: argument 'logger_cls' from the argument list of GNUNET_logger_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:700: warning: argument 'logger' from the argument list of GNUNET_logger_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:700: warning: argument 'logger_cls' from the argument list of GNUNET_logger_remove has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:739: warning: argument 'hc' from the argument list of GNUNET_h2s has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:754: warning: argument 'hc' from the argument list of GNUNET_h2s2 has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:768: warning: argument 'hc' from the argument list of GNUNET_h2s_full has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:784: warning: argument 'hc' of command @param is not found in the argument list of GNUNET_p2s(const struct GNUNET_CRYPTO_EddsaPublicKey *p) -/home/william/Git/gnunet/src/util/common_logging.c:1194: warning: The following parameter of GNUNET_p2s(const struct GNUNET_CRYPTO_EddsaPublicKey *p) is not documented: - parameter 'p' -/home/william/Git/gnunet/src/include/gnunet_common.h:797: warning: argument 'hc' of command @param is not found in the argument list of GNUNET_p2s2(const struct GNUNET_CRYPTO_EddsaPublicKey *p) -/home/william/Git/gnunet/src/util/common_logging.c:1216: warning: The following parameter of GNUNET_p2s2(const struct GNUNET_CRYPTO_EddsaPublicKey *p) is not documented: - parameter 'p' -/home/william/Git/gnunet/src/include/gnunet_common.h:810: warning: argument 'hc' of command @param is not found in the argument list of GNUNET_e2s(const struct GNUNET_CRYPTO_EcdhePublicKey *p) -/home/william/Git/gnunet/src/util/common_logging.c:1238: warning: The following parameter of GNUNET_e2s(const struct GNUNET_CRYPTO_EcdhePublicKey *p) is not documented: - parameter 'p' -/home/william/Git/gnunet/src/include/gnunet_common.h:823: warning: argument 'hc' of command @param is not found in the argument list of GNUNET_e2s2(const struct GNUNET_CRYPTO_EcdhePublicKey *p) -/home/william/Git/gnunet/src/util/common_logging.c:1260: warning: The following parameter of GNUNET_e2s2(const struct GNUNET_CRYPTO_EcdhePublicKey *p) is not documented: - parameter 'p' -/home/william/Git/gnunet/src/include/gnunet_common.h:852: warning: argument 'pid' from the argument list of GNUNET_i2s has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:868: warning: argument 'pid' from the argument list of GNUNET_i2s2 has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:882: warning: argument 'pid' from the argument list of GNUNET_i2s_full has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:897: warning: argument 'addr' from the argument list of GNUNET_a2s has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:897: warning: argument 'addrlen' from the argument list of GNUNET_a2s has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:908: warning: argument 'kind' from the argument list of GNUNET_error_type_to_string has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:609: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MESSENGER_connect(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *name, GNUNET_MESSENGER_IdentityCallback identity_callback, void *identity_cls, GNUNET_MESSENGER_MessageCallback msg_callback, void *msg_cls) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:609: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MESSENGER_connect(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *name, GNUNET_MESSENGER_IdentityCallback identity_callback, void *identity_cls, GNUNET_MESSENGER_MessageCallback msg_callback, void *msg_cls) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:609: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MESSENGER_connect(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *name, GNUNET_MESSENGER_IdentityCallback identity_callback, void *identity_cls, GNUNET_MESSENGER_MessageCallback msg_callback, void *msg_cls) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:609: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MESSENGER_connect(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *name, GNUNET_MESSENGER_IdentityCallback identity_callback, void *identity_cls, GNUNET_MESSENGER_MessageCallback msg_callback, void *msg_cls) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:622: warning: The following parameters of GNUNET_MESSENGER_connect(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *name, GNUNET_MESSENGER_IdentityCallback identity_callback, void *identity_cls, GNUNET_MESSENGER_MessageCallback msg_callback, void *msg_cls) are not documented: - parameter 'identity_cls' - parameter 'msg_cls' -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:629: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MESSENGER_update(struct GNUNET_MESSENGER_Handle *handle) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:629: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MESSENGER_update(struct GNUNET_MESSENGER_Handle *handle) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:641: warning: The following parameter of GNUNET_MESSENGER_update(struct GNUNET_MESSENGER_Handle *handle) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:645: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MESSENGER_disconnect(struct GNUNET_MESSENGER_Handle *handle) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:645: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MESSENGER_disconnect(struct GNUNET_MESSENGER_Handle *handle) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:649: warning: The following parameter of GNUNET_MESSENGER_disconnect(struct GNUNET_MESSENGER_Handle *handle) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:660: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MESSENGER_set_name(struct GNUNET_MESSENGER_Handle *handle, const char *name) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:660: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MESSENGER_set_name(struct GNUNET_MESSENGER_Handle *handle, const char *name) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:670: warning: The following parameter of GNUNET_MESSENGER_set_name(struct GNUNET_MESSENGER_Handle *handle, const char *name) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:682: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MESSENGER_open_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:682: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MESSENGER_open_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:699: warning: The following parameter of GNUNET_MESSENGER_open_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:704: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MESSENGER_enter_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:704: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MESSENGER_enter_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:721: warning: The following parameter of GNUNET_MESSENGER_enter_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key) is not documented: - parameter 'handle' -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:725: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MESSENGER_close_room(struct GNUNET_MESSENGER_Room *room) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:725: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MESSENGER_close_room(struct GNUNET_MESSENGER_Room *room) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:735: warning: The following parameter of GNUNET_MESSENGER_close_room(struct GNUNET_MESSENGER_Room *room) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:794: warning: found tag without matching -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:794: warning: found tag without matching -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:794: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MESSENGER_send_message(struct GNUNET_MESSENGER_Room *room, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_MESSENGER_Contact *contact) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:794: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MESSENGER_send_message(struct GNUNET_MESSENGER_Room *room, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_MESSENGER_Contact *contact) -/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:813: warning: The following parameter of GNUNET_MESSENGER_send_message(struct GNUNET_MESSENGER_Room *room, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_MESSENGER_Contact *contact) is not documented: - parameter 'room' -/home/william/Git/gnunet/src/include/gnunet_nc_lib.h:57: warning: end of comment block while expecting command -/home/william/Git/gnunet/src/include/gnunet_nc_lib.h:35: warning: found tag without matching -/home/william/Git/gnunet/src/include/gnunet_nc_lib.h:69: warning: end of comment block while expecting command -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:1031: warning: explicit link request to 'gnunet_mq_impl_send_continue' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:623: warning: argument 'an' of command @param is not found in the argument list of GNUNET_MQ_check_zero_termination(m) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:633: warning: The following parameter of GNUNET_MQ_check_zero_termination(m) is not documented: - parameter 'm' -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:647: warning: argument 'an' of command @param is not found in the argument list of GNUNET_MQ_check_boxed_message(m) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:659: warning: The following parameter of GNUNET_MQ_check_boxed_message(m) is not documented: - parameter 'm' -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:275: warning: explicit link request to 'GNUNET_MQ_PREF_CORKING_ALLOWED' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:131: warning: explicit link request to 'GNUNET_MQ_extract_nexted_mh' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:385: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_head(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:385: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_head(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:385: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_head(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:385: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_head(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:385: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_head(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:385: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_head(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:398: warning: The following parameters of GNUNET_MQ_dll_insert_head(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) are not documented: - parameter 'env_head' - parameter 'env_tail' - parameter 'env' -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:403: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_tail(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:403: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_tail(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:403: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_tail(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:403: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_tail(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:403: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_tail(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:403: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MQ_dll_insert_tail(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:416: warning: The following parameters of GNUNET_MQ_dll_insert_tail(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) are not documented: - parameter 'env_head' - parameter 'env_tail' - parameter 'env' -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:422: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MQ_dll_remove(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:422: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MQ_dll_remove(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:422: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MQ_dll_remove(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:422: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MQ_dll_remove(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:422: warning: argument 'in' of command @param is not found in the argument list of GNUNET_MQ_dll_remove(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:422: warning: argument 'out' of command @param is not found in the argument list of GNUNET_MQ_dll_remove(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) -/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:434: warning: The following parameters of GNUNET_MQ_dll_remove(struct GNUNET_MQ_Envelope **env_head, struct GNUNET_MQ_Envelope **env_tail, struct GNUNET_MQ_Envelope *env) are not documented: - parameter 'env_head' - parameter 'env_tail' - parameter 'env' -/home/william/Git/gnunet/src/include/gnunet_common.h:1739: warning: argument 'msg' from the argument list of GNUNET_copy_message has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_common.h:1496: warning: argument 'len' of command @param is not found in the argument list of GNUNET_array_concatenate(arr1, len1, arr2, len2) -/home/william/Git/gnunet/src/include/gnunet_common.h:1518: warning: The following parameter of GNUNET_array_concatenate(arr1, len1, arr2, len2) is not documented: - parameter 'len2' -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:125: warning: Found unknown command '\oaran' -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:74: warning: argument 'ptr' from the argument list of GNUNET_MY_query_param_fixed_size has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:145: warning: argument 'mc' from the argument list of GNUNET_MY_exec_prepared has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:145: warning: argument 'sh' from the argument list of GNUNET_MY_exec_prepared has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:145: warning: argument 'params' from the argument list of GNUNET_MY_exec_prepared has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:260: warning: Found unknown command '\spec' -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:261: warning: Found unknown command '\oaran' -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:260: warning: argument 'name' of command @param is not found in the argument list of GNUNET_MY_result_spec_fixed_size(void *ptr, size_t ptr_size) -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:260: warning: argument 'dst' of command @param is not found in the argument list of GNUNET_MY_result_spec_fixed_size(void *ptr, size_t ptr_size) -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:185: warning: The following parameter of GNUNET_MY_result_spec_fixed_size(void *ptr, size_t ptr_size) is not documented: - parameter 'ptr' -/home/william/Git/gnunet/src/my/my_result_helper.c:132: warning: argument 'sptr' of command @param is not found in the argument list of GNUNET_MY_result_spec_variable_size(void **dst, size_t *ptr_size) -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:185: warning: argument 'dst' from the argument list of GNUNET_MY_result_spec_variable_size has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:377: warning: argument 'name' of command @param is not found in the argument list of GNUNET_MY_result_spec_rsa_public_key(struct GNUNET_CRYPTO_RsaPublicKey **rsa) -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:406: warning: argument 'name' of command @param is not found in the argument list of GNUNET_MY_result_spec_absolute_time(struct GNUNET_TIME_Absolute *at) -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:470: warning: explicit link request to 'GNUNET_MY_exect_prepared()' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:473: warning: explicit link request to 'GNUNET_MY_exect_prepared()' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:477: warning: argument 'qp' from the argument list of GNUNET_MY_cleanup_query has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:477: warning: argument 'qbind' from the argument list of GNUNET_MY_cleanup_query has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:488: warning: argument 'rs' from the argument list of GNUNET_MY_cleanup_result has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_mysql_lib.h:107: warning: argument 'mc' from the argument list of GNUNET_MYSQL_statements_invalidate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_mysql_lib.h:119: warning: argument 'sh' from the argument list of GNUNET_MYSQL_statement_get_stmt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:355: warning: Found unknown command '\spec' -/home/william/Git/gnunet/src/include/gnunet_my_lib.h:356: warning: Found unknown command '\spec' -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:335: warning: argument 'cfg' from the argument list of GNUNET_NAT_register has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:335: warning: argument 'config_section' from the argument list of GNUNET_NAT_register has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:335: warning: argument 'proto' from the argument list of GNUNET_NAT_register has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:335: warning: argument 'num_addrs' from the argument list of GNUNET_NAT_register has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:335: warning: argument 'addrs' from the argument list of GNUNET_NAT_register has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:335: warning: argument 'addrlens' from the argument list of GNUNET_NAT_register has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:335: warning: argument 'address_callback' from the argument list of GNUNET_NAT_register has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:335: warning: argument 'reversal_callback' from the argument list of GNUNET_NAT_register has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:335: warning: argument 'callback_cls' from the argument list of GNUNET_NAT_register has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:391: warning: argument 'nh' from the argument list of GNUNET_NAT_unregister has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:460: warning: argument 'server' from the argument list of GNUNET_NAT_stun_make_request has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:460: warning: argument 'port' from the argument list of GNUNET_NAT_stun_make_request has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:460: warning: argument 'sock' from the argument list of GNUNET_NAT_stun_make_request has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:460: warning: argument 'cb' from the argument list of GNUNET_NAT_stun_make_request has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nat_service.h:460: warning: argument 'cb_cls' from the argument list of GNUNET_NAT_stun_make_request has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nse_service.h:99: warning: argument 'cfg' from the argument list of GNUNET_NSE_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nse_service.h:99: warning: argument 'func' from the argument list of GNUNET_NSE_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nse_service.h:99: warning: argument 'func_cls' from the argument list of GNUNET_NSE_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namecache_service.h:80: warning: argument 'cfg' from the argument list of GNUNET_NAMECACHE_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namecache_service.h:91: warning: argument 'h' from the argument list of GNUNET_NAMECACHE_disconnect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namecache_service.h:151: warning: argument 'h' from the argument list of GNUNET_NAMECACHE_lookup_block has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namecache_service.h:151: warning: argument 'derived_hash' from the argument list of GNUNET_NAMECACHE_lookup_block has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namecache_service.h:151: warning: argument 'proc' from the argument list of GNUNET_NAMECACHE_lookup_block has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namecache_service.h:151: warning: argument 'proc_cls' from the argument list of GNUNET_NAMECACHE_lookup_block has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namecache_service.h:166: warning: argument 'qe' from the argument list of GNUNET_NAMECACHE_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:81: warning: argument 'cfg' from the argument list of GNUNET_NAMESTORE_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:92: warning: argument 'h' from the argument list of GNUNET_NAMESTORE_disconnect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:254: warning: argument 'qe' from the argument list of GNUNET_NAMESTORE_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:283: warning: argument 'h' from the argument list of GNUNET_NAMESTORE_zone_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:283: warning: argument 'zone' from the argument list of GNUNET_NAMESTORE_zone_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:283: warning: argument 'error_cb' from the argument list of GNUNET_NAMESTORE_zone_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:283: warning: argument 'error_cb_cls' from the argument list of GNUNET_NAMESTORE_zone_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:283: warning: argument 'proc' from the argument list of GNUNET_NAMESTORE_zone_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:283: warning: argument 'proc_cls' from the argument list of GNUNET_NAMESTORE_zone_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:283: warning: argument 'finish_cb' from the argument list of GNUNET_NAMESTORE_zone_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:283: warning: argument 'finish_cb_cls' from the argument list of GNUNET_NAMESTORE_zone_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:315: warning: argument 'it' from the argument list of GNUNET_NAMESTORE_zone_iteration_stop has multiple @param documentation sections -/home/william/Git/gnunet/src/namestore/namestore_api_monitor.c:279: warning: argument 'cls' of command @param is not found in the argument list of GNUNET_NAMESTORE_zone_monitor_start(const struct GNUNET_CONFIGURATION_Handle *cfg, const struct GNUNET_IDENTITY_PrivateKey *zone, int iterate_first, GNUNET_SCHEDULER_TaskCallback error_cb, void *error_cb_cls, GNUNET_NAMESTORE_RecordMonitor monitor, void *monitor_cls, GNUNET_SCHEDULER_TaskCallback sync_cb, void *sync_cb_cls) -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:352: warning: argument 'cfg' from the argument list of GNUNET_NAMESTORE_zone_monitor_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:352: warning: argument 'zone' from the argument list of GNUNET_NAMESTORE_zone_monitor_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:352: warning: argument 'iterate_first' from the argument list of GNUNET_NAMESTORE_zone_monitor_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:352: warning: argument 'error_cb' from the argument list of GNUNET_NAMESTORE_zone_monitor_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:352: warning: argument 'error_cb_cls' from the argument list of GNUNET_NAMESTORE_zone_monitor_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:352: warning: argument 'monitor' from the argument list of GNUNET_NAMESTORE_zone_monitor_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:352: warning: argument 'monitor_cls' from the argument list of GNUNET_NAMESTORE_zone_monitor_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_namestore_service.h:352: warning: argument 'sync_cb' from the argument list of GNUNET_NAMESTORE_zone_monitor_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:193: warning: argument 'desc' from the argument list of GNUNET_NETWORK_socket_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:193: warning: argument 'address' from the argument list of GNUNET_NETWORK_socket_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:193: warning: argument 'address_len' from the argument list of GNUNET_NETWORK_socket_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:193: warning: argument 'desc' from the argument list of GNUNET_NETWORK_socket_getsockopt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:193: warning: argument 'level' from the argument list of GNUNET_NETWORK_socket_getsockopt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:193: warning: argument 'optname' from the argument list of GNUNET_NETWORK_socket_getsockopt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:193: warning: argument 'optval' from the argument list of GNUNET_NETWORK_socket_getsockopt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:193: warning: argument 'optlen' from the argument list of GNUNET_NETWORK_socket_getsockopt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:193: warning: argument 'desc' from the argument list of GNUNET_NETWORK_socket_listen has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:193: warning: argument 'backlog' from the argument list of GNUNET_NETWORK_socket_listen has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:262: warning: argument 'desc' from the argument list of GNUNET_NETWORK_socket_recvfrom has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:262: warning: argument 'buffer' from the argument list of GNUNET_NETWORK_socket_recvfrom has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:262: warning: argument 'length' from the argument list of GNUNET_NETWORK_socket_recvfrom has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:262: warning: argument 'src_addr' from the argument list of GNUNET_NETWORK_socket_recvfrom has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:262: warning: argument 'addrlen' from the argument list of GNUNET_NETWORK_socket_recvfrom has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:278: warning: argument 'desc' from the argument list of GNUNET_NETWORK_socket_recv has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:278: warning: argument 'buffer' from the argument list of GNUNET_NETWORK_socket_recv has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:278: warning: argument 'length' from the argument list of GNUNET_NETWORK_socket_recv has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:293: warning: argument 'rfds' from the argument list of GNUNET_NETWORK_socket_select has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:293: warning: argument 'wfds' from the argument list of GNUNET_NETWORK_socket_select has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:293: warning: argument 'efds' from the argument list of GNUNET_NETWORK_socket_select has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:293: warning: argument 'timeout' from the argument list of GNUNET_NETWORK_socket_select has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:308: warning: argument 'desc' from the argument list of GNUNET_NETWORK_socket_send has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:308: warning: argument 'buffer' from the argument list of GNUNET_NETWORK_socket_send has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:308: warning: argument 'length' from the argument list of GNUNET_NETWORK_socket_send has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:325: warning: argument 'desc' from the argument list of GNUNET_NETWORK_socket_sendto has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:325: warning: argument 'message' from the argument list of GNUNET_NETWORK_socket_sendto has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:325: warning: argument 'length' from the argument list of GNUNET_NETWORK_socket_sendto has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:325: warning: argument 'dest_addr' from the argument list of GNUNET_NETWORK_socket_sendto has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:325: warning: argument 'dest_len' from the argument list of GNUNET_NETWORK_socket_sendto has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:397: warning: argument 'fds' from the argument list of GNUNET_NETWORK_fdset_zero has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:419: warning: argument 'fds' from the argument list of GNUNET_NETWORK_fdset_isset has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:419: warning: argument 'desc' from the argument list of GNUNET_NETWORK_fdset_isset has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:430: warning: argument 'dst' from the argument list of GNUNET_NETWORK_fdset_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:430: warning: argument 'src' from the argument list of GNUNET_NETWORK_fdset_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:462: warning: argument 'desc' from the argument list of GNUNET_NETWORK_get_addr has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:483: warning: argument 'to' from the argument list of GNUNET_NETWORK_fdset_copy_native has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:483: warning: argument 'from' from the argument list of GNUNET_NETWORK_fdset_copy_native has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:483: warning: argument 'nfds' from the argument list of GNUNET_NETWORK_fdset_copy_native has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:507: warning: argument 'to' from the argument list of GNUNET_NETWORK_fdset_test_native has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:507: warning: argument 'nfd' from the argument list of GNUNET_NETWORK_fdset_test_native has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:530: warning: argument 'fds' from the argument list of GNUNET_NETWORK_fdset_handle_set_first has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_network_lib.h:530: warning: argument 'h' from the argument list of GNUNET_NETWORK_fdset_handle_set_first has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nt_lib.h:90: warning: explicit link request to 'GNUNET_ATS_interface_scanner_init()' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_nt_lib.h:81: warning: argument 'is' from the argument list of GNUNET_NT_scanner_get_type has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nt_lib.h:81: warning: argument 'addr' from the argument list of GNUNET_NT_scanner_get_type has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nt_lib.h:81: warning: argument 'addrlen' from the argument list of GNUNET_NT_scanner_get_type has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_nt_lib.h:119: warning: argument 'is' from the argument list of GNUNET_NT_scanner_done has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:330: warning: argument 'pd' from the argument list of GNUNET_OS_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:476: warning: argument 'std_inheritance' from the argument list of GNUNET_OS_start_process_vap has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:476: warning: argument 'pipe_stdin' from the argument list of GNUNET_OS_start_process_vap has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:476: warning: argument 'pipe_stdout' from the argument list of GNUNET_OS_start_process_vap has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:476: warning: argument 'pipe_stderr' from the argument list of GNUNET_OS_start_process_vap has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:476: warning: argument 'filename' from the argument list of GNUNET_OS_start_process_vap has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:476: warning: argument 'argv' from the argument list of GNUNET_OS_start_process_vap has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:496: warning: argument 'std_inheritance' from the argument list of GNUNET_OS_start_process has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:496: warning: argument 'pipe_stdin' from the argument list of GNUNET_OS_start_process has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:496: warning: argument 'pipe_stdout' from the argument list of GNUNET_OS_start_process has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:496: warning: argument 'filename' from the argument list of GNUNET_OS_start_process has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:515: warning: argument 'std_inheritance' from the argument list of GNUNET_OS_start_process_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:515: warning: argument 'pipe_stdin' from the argument list of GNUNET_OS_start_process_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:515: warning: argument 'pipe_stdout' from the argument list of GNUNET_OS_start_process_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:515: warning: argument 'pipe_stderr' from the argument list of GNUNET_OS_start_process_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:515: warning: argument 'filename' from the argument list of GNUNET_OS_start_process_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:515: warning: argument 'va' from the argument list of GNUNET_OS_start_process_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:533: warning: argument 'std_inheritance' from the argument list of GNUNET_OS_start_process_v has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:533: warning: argument 'lsocks' from the argument list of GNUNET_OS_start_process_v has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:533: warning: argument 'filename' from the argument list of GNUNET_OS_start_process_v has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:533: warning: argument 'argv' from the argument list of GNUNET_OS_start_process_v has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:584: warning: argument 'cmd' from the argument list of GNUNET_OS_command_stop has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:599: warning: argument 'proc' from the argument list of GNUNET_OS_command_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:599: warning: argument 'proc_cls' from the argument list of GNUNET_OS_command_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:599: warning: argument 'timeout' from the argument list of GNUNET_OS_command_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:599: warning: argument 'binary' from the argument list of GNUNET_OS_command_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:616: warning: argument 'proc' from the argument list of GNUNET_OS_process_status has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:616: warning: argument 'type' from the argument list of GNUNET_OS_process_status has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:616: warning: argument 'code' from the argument list of GNUNET_OS_process_status has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:632: warning: argument 'proc' from the argument list of GNUNET_OS_process_wait has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:645: warning: argument 'proc' from the argument list of GNUNET_OS_process_wait_status has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:645: warning: argument 'type' from the argument list of GNUNET_OS_process_wait_status has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:645: warning: argument 'code' from the argument list of GNUNET_OS_process_wait_status has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_os_lib.h:659: warning: argument 'cls' from the argument list of GNUNET_OS_install_parent_control_handler has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peerinfo_service.h:70: warning: argument 'cfg' from the argument list of GNUNET_PEERINFO_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peerinfo_service.h:105: warning: argument 'h' from the argument list of GNUNET_PEERINFO_add_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peerinfo_service.h:105: warning: argument 'hello' from the argument list of GNUNET_PEERINFO_add_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peerinfo_service.h:105: warning: argument 'cont' from the argument list of GNUNET_PEERINFO_add_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peerinfo_service.h:105: warning: argument 'cont_cls' from the argument list of GNUNET_PEERINFO_add_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/peerinfo/peerinfo_api.c:470: warning: argument 'timeout' of command @param is not found in the argument list of GNUNET_PEERINFO_iterate(struct GNUNET_PEERINFO_Handle *h, int include_friend_only, const struct GNUNET_PeerIdentity *peer, GNUNET_PEERINFO_Processor callback, void *callback_cls) -/home/william/Git/gnunet/src/include/gnunet_peerinfo_service.h:151: warning: argument 'h' from the argument list of GNUNET_PEERINFO_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peerinfo_service.h:151: warning: argument 'include_friend_only' from the argument list of GNUNET_PEERINFO_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peerinfo_service.h:151: warning: argument 'peer' from the argument list of GNUNET_PEERINFO_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peerinfo_service.h:151: warning: argument 'callback' from the argument list of GNUNET_PEERINFO_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peerinfo_service.h:151: warning: argument 'callback_cls' from the argument list of GNUNET_PEERINFO_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peerstore_service.h:254: warning: argument 'h' from the argument list of GNUNET_PEERSTORE_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peerstore_service.h:254: warning: argument 'sub_system' from the argument list of GNUNET_PEERSTORE_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peerstore_service.h:254: warning: argument 'peer' from the argument list of GNUNET_PEERSTORE_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peerstore_service.h:254: warning: argument 'key' from the argument list of GNUNET_PEERSTORE_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peerstore_service.h:254: warning: argument 'callback' from the argument list of GNUNET_PEERSTORE_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peerstore_service.h:254: warning: argument 'callback_cls' from the argument list of GNUNET_PEERSTORE_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peer_lib.h:96: warning: argument 'ids' from the argument list of GNUNET_PEER_decrement_rcs has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peer_lib.h:96: warning: argument 'count' from the argument list of GNUNET_PEER_decrement_rcs has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_peer_lib.h:118: warning: argument 'id' from the argument list of GNUNET_PEER_resolve2 has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_plugin_lib.h:73: warning: argument 'library_name' from the argument list of GNUNET_PLUGIN_test has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_plugin_lib.h:89: warning: argument 'library_name' from the argument list of GNUNET_PLUGIN_load has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_plugin_lib.h:89: warning: argument 'arg' from the argument list of GNUNET_PLUGIN_load has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_plugin_lib.h:122: warning: argument 'basename' from the argument list of GNUNET_PLUGIN_load_all has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_plugin_lib.h:122: warning: argument 'arg' from the argument list of GNUNET_PLUGIN_load_all has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_plugin_lib.h:122: warning: argument 'cb' from the argument list of GNUNET_PLUGIN_load_all has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_plugin_lib.h:122: warning: argument 'cb_cls' from the argument list of GNUNET_PLUGIN_load_all has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_plugin_lib.h:160: warning: argument 'library_name' from the argument list of GNUNET_PLUGIN_unload has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_plugin_lib.h:160: warning: argument 'arg' from the argument list of GNUNET_PLUGIN_unload has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_program_lib.h:80: warning: explicit link request to 'a' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_program_lib.h:107: warning: explicit link request to 'a' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_rest_lib.h:121: warning: argument 'url' from the argument list of GNUNET_REST_namespace_match has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_rest_lib.h:121: warning: argument 'namespace' from the argument list of GNUNET_REST_namespace_match has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_rest_lib.h:130: warning: argument 'data' from the argument list of GNUNET_REST_create_response has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_rps_service.h:96: warning: argument 'cfg' from the argument list of GNUNET_RPS_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_rps_service.h:106: warning: argument 'h' from the argument list of GNUNET_RPS_sub_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_rps_service.h:106: warning: argument 'shared_value' from the argument list of GNUNET_RPS_sub_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_rps_service.h:117: warning: argument 'h' from the argument list of GNUNET_RPS_sub_stop has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_rps_service.h:117: warning: argument 'shared_value' from the argument list of GNUNET_RPS_sub_stop has multiple @param documentation sections -/home/william/Git/gnunet/src/rps/rps_api.c:942: warning: argument 'h' of command @param is not found in the argument list of GNUNET_RPS_request_peers(struct GNUNET_RPS_Handle *rps_handle, uint32_t num_req_peers, GNUNET_RPS_NotifyReadyCB ready_cb, void *cls) -/home/william/Git/gnunet/src/rps/rps_api.c:942: warning: argument 'n' of command @param is not found in the argument list of GNUNET_RPS_request_peers(struct GNUNET_RPS_Handle *rps_handle, uint32_t num_req_peers, GNUNET_RPS_NotifyReadyCB ready_cb, void *cls) -/home/william/Git/gnunet/src/include/gnunet_rps_service.h:136: warning: argument 'ready_cb' from the argument list of GNUNET_RPS_request_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_rps_service.h:136: warning: argument 'cls' from the argument list of GNUNET_RPS_request_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_rps_service.h:172: warning: argument 'rh' from the argument list of GNUNET_RPS_request_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_rps_service.h:211: warning: argument 'num_req_peers' of command @param is not found in the argument list of GNUNET_RPS_view_request(struct GNUNET_RPS_Handle *rps_handle, uint32_t num_updates, GNUNET_RPS_NotifyReadyCB view_update_cb, void *cls) -/home/william/Git/gnunet/src/include/gnunet_rps_service.h:211: warning: argument 'ready_cb' of command @param is not found in the argument list of GNUNET_RPS_view_request(struct GNUNET_RPS_Handle *rps_handle, uint32_t num_updates, GNUNET_RPS_NotifyReadyCB view_update_cb, void *cls) -/home/william/Git/gnunet/src/include/gnunet_rps_service.h:221: warning: The following parameters of GNUNET_RPS_view_request(struct GNUNET_RPS_Handle *rps_handle, uint32_t num_updates, GNUNET_RPS_NotifyReadyCB view_update_cb, void *cls) are not documented: - parameter 'num_updates' - parameter 'view_update_cb' -/home/william/Git/gnunet/src/include/gnunet_rps_service.h:227: warning: argument 'ready_cb' of command @param is not found in the argument list of GNUNET_RPS_stream_request(struct GNUNET_RPS_Handle *rps_handle, GNUNET_RPS_NotifyReadyCB stream_input_cb, void *cls) -/home/william/Git/gnunet/src/include/gnunet_rps_service.h:235: warning: The following parameter of GNUNET_RPS_stream_request(struct GNUNET_RPS_Handle *rps_handle, GNUNET_RPS_NotifyReadyCB stream_input_cb, void *cls) is not documented: - parameter 'stream_input_cb' -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:347: warning: argument 'attr_name' from the argument list of GNUNET_RECLAIM_attribute_new has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:347: warning: argument 'credential' from the argument list of GNUNET_RECLAIM_attribute_new has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:347: warning: argument 'type' from the argument list of GNUNET_RECLAIM_attribute_new has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:347: warning: argument 'data' from the argument list of GNUNET_RECLAIM_attribute_new has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:347: warning: argument 'data_size' from the argument list of GNUNET_RECLAIM_attribute_new has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:355: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_attribute_list_serialize_get_size(const struct GNUNET_RECLAIM_AttributeList *al) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:362: warning: The following parameter of GNUNET_RECLAIM_attribute_list_serialize_get_size(const struct GNUNET_RECLAIM_AttributeList *al) is not documented: - parameter 'al' -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:366: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_attribute_list_destroy(struct GNUNET_RECLAIM_AttributeList *al) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:372: warning: The following parameter of GNUNET_RECLAIM_attribute_list_destroy(struct GNUNET_RECLAIM_AttributeList *al) is not documented: - parameter 'al' -/home/william/Git/gnunet/src/reclaim/reclaim_attribute.c:295: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_attribute_list_add(struct GNUNET_RECLAIM_AttributeList *al, const char *attr_name, const struct GNUNET_RECLAIM_Identifier *credential, uint32_t type, const void *data, size_t data_size) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:387: warning: argument 'attr_name' from the argument list of GNUNET_RECLAIM_attribute_list_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:387: warning: argument 'type' from the argument list of GNUNET_RECLAIM_attribute_list_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:387: warning: argument 'data' from the argument list of GNUNET_RECLAIM_attribute_list_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:387: warning: argument 'data_size' from the argument list of GNUNET_RECLAIM_attribute_list_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:387: warning: The following parameter of GNUNET_RECLAIM_attribute_list_add(struct GNUNET_RECLAIM_AttributeList *al, const char *attr_name, const struct GNUNET_RECLAIM_Identifier *credential, uint32_t type, const void *data, size_t data_size) is not documented: - parameter 'al' -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:396: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_attribute_list_serialize(const struct GNUNET_RECLAIM_AttributeList *al, char *result) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:404: warning: The following parameter of GNUNET_RECLAIM_attribute_list_serialize(const struct GNUNET_RECLAIM_AttributeList *al, char *result) is not documented: - parameter 'al' -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:452: warning: argument 'data' from the argument list of GNUNET_RECLAIM_attribute_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:452: warning: argument 'data_size' from the argument list of GNUNET_RECLAIM_attribute_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:456: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_attribute_list_dup(const struct GNUNET_RECLAIM_AttributeList *al) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:462: warning: The following parameter of GNUNET_RECLAIM_attribute_list_dup(const struct GNUNET_RECLAIM_AttributeList *al) is not documented: - parameter 'al' -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:515: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_credential_list_serialize_get_size(const struct GNUNET_RECLAIM_CredentialList *credentials) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:522: warning: The following parameter of GNUNET_RECLAIM_credential_list_serialize_get_size(const struct GNUNET_RECLAIM_CredentialList *credentials) is not documented: - parameter 'credentials' -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:526: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_credential_list_destroy(struct GNUNET_RECLAIM_CredentialList *al) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:526: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_credential_list_destroy(struct GNUNET_RECLAIM_CredentialList *al) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:532: warning: The following parameter of GNUNET_RECLAIM_credential_list_destroy(struct GNUNET_RECLAIM_CredentialList *al) is not documented: - parameter 'al' -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:536: warning: argument 'attr_name' of command @param is not found in the argument list of GNUNET_RECLAIM_credential_list_add(struct GNUNET_RECLAIM_CredentialList *attrs, const char *att_name, uint32_t type, const void *data, size_t data_size) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:545: warning: The following parameters of GNUNET_RECLAIM_credential_list_add(struct GNUNET_RECLAIM_CredentialList *attrs, const char *att_name, uint32_t type, const void *data, size_t data_size) are not documented: - parameter 'attrs' - parameter 'att_name' -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:553: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_credential_list_serialize(const struct GNUNET_RECLAIM_CredentialList *credentials, char *result) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:561: warning: The following parameter of GNUNET_RECLAIM_credential_list_serialize(const struct GNUNET_RECLAIM_CredentialList *credentials, char *result) is not documented: - parameter 'credentials' -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:574: warning: argument 'data' from the argument list of GNUNET_RECLAIM_credential_list_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:574: warning: argument 'data_size' from the argument list of GNUNET_RECLAIM_credential_list_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/reclaim/reclaim_credential.c:442: warning: argument 'attr' of command @param is not found in the argument list of GNUNET_RECLAIM_credential_serialize_get_size(const struct GNUNET_RECLAIM_Credential *credential) -/home/william/Git/gnunet/src/reclaim/reclaim_credential.c:457: warning: argument 'attr' of command @param is not found in the argument list of GNUNET_RECLAIM_credential_serialize(const struct GNUNET_RECLAIM_Credential *credential, char *result) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:595: warning: argument 'result' from the argument list of GNUNET_RECLAIM_credential_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/reclaim/reclaim_credential.c:255: warning: argument 'name' of command @param is not found in the argument list of GNUNET_RECLAIM_credential_new(const char *attr_name, uint32_t type, const void *data, size_t data_size) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:622: warning: argument 'type' from the argument list of GNUNET_RECLAIM_credential_new has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:622: warning: argument 'data' from the argument list of GNUNET_RECLAIM_credential_new has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:622: warning: argument 'data_size' from the argument list of GNUNET_RECLAIM_credential_new has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:674: warning: argument 'typename' of command @param is not found in the argument list of GNUNET_RECLAIM_credential_get_attributes(const struct GNUNET_RECLAIM_Credential *cred) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:681: warning: The following parameter of GNUNET_RECLAIM_credential_get_attributes(const struct GNUNET_RECLAIM_Credential *cred) is not documented: - parameter 'cred' -/home/william/Git/gnunet/src/reclaim/reclaim_credential.c:739: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_presentation_list_serialize_get_size(const struct GNUNET_RECLAIM_PresentationList *presentations) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:704: warning: argument 'presentations' of command @param is not found in the argument list of GNUNET_RECLAIM_presentation_list_destroy(struct GNUNET_RECLAIM_PresentationList *al) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:704: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_presentation_list_destroy(struct GNUNET_RECLAIM_PresentationList *al) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:710: warning: The following parameter of GNUNET_RECLAIM_presentation_list_destroy(struct GNUNET_RECLAIM_PresentationList *al) is not documented: - parameter 'al' -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:714: warning: argument 'attrs' of command @param is not found in the argument list of GNUNET_RECLAIM_presentation_list_serialize(const struct GNUNET_RECLAIM_PresentationList *presentations, char *result) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:722: warning: argument 'result' from the argument list of GNUNET_RECLAIM_presentation_list_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:735: warning: argument 'data' from the argument list of GNUNET_RECLAIM_presentation_list_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:735: warning: argument 'data_size' from the argument list of GNUNET_RECLAIM_presentation_list_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/reclaim/reclaim_credential.c:889: warning: argument 'attr' of command @param is not found in the argument list of GNUNET_RECLAIM_presentation_serialize_get_size(const struct GNUNET_RECLAIM_Presentation *presentation) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:748: warning: argument 'attr' of command @param is not found in the argument list of GNUNET_RECLAIM_presentation_serialize(const struct GNUNET_RECLAIM_Presentation *presentation, char *result) -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:756: warning: argument 'result' from the argument list of GNUNET_RECLAIM_presentation_serialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:770: warning: argument 'data' from the argument list of GNUNET_RECLAIM_presentation_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:770: warning: argument 'data_size' from the argument list of GNUNET_RECLAIM_presentation_deserialize has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:782: warning: argument 'type' from the argument list of GNUNET_RECLAIM_presentation_value_to_string has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:782: warning: argument 'data' from the argument list of GNUNET_RECLAIM_presentation_value_to_string has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:782: warning: argument 'data_size' from the argument list of GNUNET_RECLAIM_presentation_value_to_string has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:802: warning: argument 'type' from the argument list of GNUNET_RECLAIM_presentation_string_to_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:802: warning: argument 's' from the argument list of GNUNET_RECLAIM_presentation_string_to_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:802: warning: argument 'data' from the argument list of GNUNET_RECLAIM_presentation_string_to_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:802: warning: argument 'data_size' from the argument list of GNUNET_RECLAIM_presentation_string_to_value has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:815: warning: argument 'type' from the argument list of GNUNET_RECLAIM_presentation_number_to_typename has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:845: warning: argument 'cred' from the argument list of GNUNET_RECLAIM_credential_get_presentation has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_lib.h:845: warning: argument 'attrs' from the argument list of GNUNET_RECLAIM_credential_get_presentation has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:173: warning: argument 'cfg' from the argument list of GNUNET_RECLAIM_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:189: warning: argument 'h' from the argument list of GNUNET_RECLAIM_attribute_store has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:189: warning: argument 'pkey' from the argument list of GNUNET_RECLAIM_attribute_store has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:189: warning: argument 'attr' from the argument list of GNUNET_RECLAIM_attribute_store has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:189: warning: argument 'exp_interval' from the argument list of GNUNET_RECLAIM_attribute_store has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:189: warning: argument 'cont' from the argument list of GNUNET_RECLAIM_attribute_store has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:189: warning: argument 'cont_cls' from the argument list of GNUNET_RECLAIM_attribute_store has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:210: warning: argument 'h' from the argument list of GNUNET_RECLAIM_credential_store has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:210: warning: argument 'pkey' from the argument list of GNUNET_RECLAIM_credential_store has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:210: warning: argument 'attr' from the argument list of GNUNET_RECLAIM_credential_store has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:210: warning: argument 'exp_interval' from the argument list of GNUNET_RECLAIM_credential_store has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:210: warning: argument 'cont' from the argument list of GNUNET_RECLAIM_credential_store has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:210: warning: argument 'cont_cls' from the argument list of GNUNET_RECLAIM_credential_store has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:237: warning: argument 'cred' of command @param is not found in the argument list of GNUNET_RECLAIM_credential_delete(struct GNUNET_RECLAIM_Handle *h, const struct GNUNET_IDENTITY_PrivateKey *pkey, const struct GNUNET_RECLAIM_Credential *attr, GNUNET_RECLAIM_ContinuationWithStatus cont, void *cont_cls) -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:249: warning: argument 'h' from the argument list of GNUNET_RECLAIM_credential_delete has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:249: warning: argument 'pkey' from the argument list of GNUNET_RECLAIM_credential_delete has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:249: warning: argument 'cont' from the argument list of GNUNET_RECLAIM_credential_delete has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:249: warning: argument 'cont_cls' from the argument list of GNUNET_RECLAIM_credential_delete has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:296: warning: argument 'it' from the argument list of GNUNET_RECLAIM_get_attributes_next has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:348: warning: argument 'it' of command @param is not found in the argument list of GNUNET_RECLAIM_get_credentials_next(struct GNUNET_RECLAIM_CredentialIterator *ait) -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:348: warning: argument 'it' of command @param is not found in the argument list of GNUNET_RECLAIM_get_credentials_next(struct GNUNET_RECLAIM_CredentialIterator *ait) -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:355: warning: The following parameter of GNUNET_RECLAIM_get_credentials_next(struct GNUNET_RECLAIM_CredentialIterator *ait) is not documented: - parameter 'ait' -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:359: warning: argument 'it' of command @param is not found in the argument list of GNUNET_RECLAIM_get_credentials_stop(struct GNUNET_RECLAIM_CredentialIterator *ait) -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:367: warning: The following parameter of GNUNET_RECLAIM_get_credentials_stop(struct GNUNET_RECLAIM_CredentialIterator *ait) is not documented: - parameter 'ait' -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:386: warning: Found unknown command '\GNUNET_RECLAIM_ticket_consume' -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:385: warning: argument 'h' from the argument list of GNUNET_RECLAIM_ticket_issue has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:385: warning: argument 'iss' from the argument list of GNUNET_RECLAIM_ticket_issue has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:385: warning: argument 'rp' from the argument list of GNUNET_RECLAIM_ticket_issue has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:385: warning: argument 'attrs' from the argument list of GNUNET_RECLAIM_ticket_issue has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:385: warning: argument 'cb' from the argument list of GNUNET_RECLAIM_ticket_issue has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:385: warning: argument 'cb_cls' from the argument list of GNUNET_RECLAIM_ticket_issue has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:427: warning: argument 'h' from the argument list of GNUNET_RECLAIM_ticket_consume has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:427: warning: argument 'identity' from the argument list of GNUNET_RECLAIM_ticket_consume has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:427: warning: argument 'ticket' from the argument list of GNUNET_RECLAIM_ticket_consume has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:427: warning: argument 'cb' from the argument list of GNUNET_RECLAIM_ticket_consume has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:427: warning: argument 'cb_cls' from the argument list of GNUNET_RECLAIM_ticket_consume has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:452: warning: argument 'h' from the argument list of GNUNET_RECLAIM_ticket_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:452: warning: argument 'identity' from the argument list of GNUNET_RECLAIM_ticket_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:452: warning: argument 'error_cb' from the argument list of GNUNET_RECLAIM_ticket_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:452: warning: argument 'error_cb_cls' from the argument list of GNUNET_RECLAIM_ticket_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:452: warning: argument 'proc' from the argument list of GNUNET_RECLAIM_ticket_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:452: warning: argument 'proc_cls' from the argument list of GNUNET_RECLAIM_ticket_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:452: warning: argument 'finish_cb' from the argument list of GNUNET_RECLAIM_ticket_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:452: warning: argument 'finish_cb_cls' from the argument list of GNUNET_RECLAIM_ticket_iteration_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:487: warning: argument 'h' from the argument list of GNUNET_RECLAIM_disconnect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:499: warning: argument 'op' from the argument list of GNUNET_RECLAIM_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_regex_service.h:83: warning: argument 'cfg' from the argument list of GNUNET_REGEX_announce has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_regex_service.h:83: warning: argument 'regex' from the argument list of GNUNET_REGEX_announce has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_regex_service.h:83: warning: argument 'refresh_delay' from the argument list of GNUNET_REGEX_announce has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_regex_service.h:83: warning: argument 'compression' from the argument list of GNUNET_REGEX_announce has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_regex_service.h:95: warning: argument 'a' from the argument list of GNUNET_REGEX_announce_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_regex_service.h:130: warning: argument 'cfg' from the argument list of GNUNET_REGEX_search has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_regex_service.h:130: warning: argument 'string' from the argument list of GNUNET_REGEX_search has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_regex_service.h:130: warning: argument 'callback' from the argument list of GNUNET_REGEX_search has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_regex_service.h:130: warning: argument 'callback_cls' from the argument list of GNUNET_REGEX_search has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_regex_service.h:142: warning: argument 's' from the argument list of GNUNET_REGEX_search_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_resolver_service.h:111: warning: argument 'af' from the argument list of GNUNET_RESOLVER_hostname_resolve has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_resolver_service.h:111: warning: argument 'timeout' from the argument list of GNUNET_RESOLVER_hostname_resolve has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_resolver_service.h:111: warning: argument 'callback' from the argument list of GNUNET_RESOLVER_hostname_resolve has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_resolver_service.h:111: warning: argument 'cls' from the argument list of GNUNET_RESOLVER_hostname_resolve has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_resolver_service.h:149: warning: argument 'sa' from the argument list of GNUNET_RESOLVER_hostname_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_resolver_service.h:149: warning: argument 'salen' from the argument list of GNUNET_RESOLVER_hostname_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_resolver_service.h:149: warning: argument 'do_resolve' from the argument list of GNUNET_RESOLVER_hostname_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_resolver_service.h:149: warning: argument 'timeout' from the argument list of GNUNET_RESOLVER_hostname_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_resolver_service.h:149: warning: argument 'callback' from the argument list of GNUNET_RESOLVER_hostname_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_resolver_service.h:149: warning: argument 'cls' from the argument list of GNUNET_RESOLVER_hostname_get has multiple @param documentation sections -/home/william/Git/gnunet/src/revocation/revocation_api.c:286: warning: argument 'key' of command @param is not found in the argument list of GNUNET_REVOCATION_revoke(const struct GNUNET_CONFIGURATION_Handle *cfg, const struct GNUNET_REVOCATION_PowP *pow, GNUNET_REVOCATION_Callback func, void *func_cls) -/home/william/Git/gnunet/src/revocation/revocation_api.c:286: warning: argument 'sig' of command @param is not found in the argument list of GNUNET_REVOCATION_revoke(const struct GNUNET_CONFIGURATION_Handle *cfg, const struct GNUNET_REVOCATION_PowP *pow, GNUNET_REVOCATION_Callback func, void *func_cls) -/home/william/Git/gnunet/src/revocation/revocation_api.c:298: warning: explicit link request to 'GNUNET_REVOCATION_sign_revocation' could not be resolved -/home/william/Git/gnunet/src/revocation/revocation_api.c:286: warning: argument 'ts' of command @param is not found in the argument list of GNUNET_REVOCATION_revoke(const struct GNUNET_CONFIGURATION_Handle *cfg, const struct GNUNET_REVOCATION_PowP *pow, GNUNET_REVOCATION_Callback func, void *func_cls) -/home/william/Git/gnunet/src/include/gnunet_revocation_service.h:186: warning: argument 'cfg' from the argument list of GNUNET_REVOCATION_revoke has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_revocation_service.h:186: warning: argument 'pow' from the argument list of GNUNET_REVOCATION_revoke has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_revocation_service.h:186: warning: argument 'func' from the argument list of GNUNET_REVOCATION_revoke has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_revocation_service.h:186: warning: argument 'func_cls' from the argument list of GNUNET_REVOCATION_revoke has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_revocation_service.h:202: warning: argument 'matching_bits' of command @param is not found in the argument list of GNUNET_REVOCATION_check_pow(const struct GNUNET_REVOCATION_PowP *pow, unsigned int difficulty, struct GNUNET_TIME_Relative epoch_duration) -/home/william/Git/gnunet/src/include/gnunet_revocation_service.h:197: warning: The following parameter of GNUNET_REVOCATION_check_pow(const struct GNUNET_REVOCATION_PowP *pow, unsigned int difficulty, struct GNUNET_TIME_Relative epoch_duration) is not documented: - parameter 'difficulty' -/home/william/Git/gnunet/src/include/gnunet_revocation_service.h:221: warning: argument 'key' from the argument list of GNUNET_REVOCATION_pow_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_revocation_service.h:221: warning: argument 'pow' from the argument list of GNUNET_REVOCATION_pow_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_revocation_service.h:240: warning: argument 'epochs' of command @param is not found in the argument list of GNUNET_REVOCATION_pow_round(struct GNUNET_REVOCATION_PowCalculationHandle *pc) -/home/william/Git/gnunet/src/include/gnunet_revocation_service.h:240: warning: argument 'pow' of command @param is not found in the argument list of GNUNET_REVOCATION_pow_round(struct GNUNET_REVOCATION_PowCalculationHandle *pc) -/home/william/Git/gnunet/src/include/gnunet_revocation_service.h:240: warning: argument 'difficulty' of command @param is not found in the argument list of GNUNET_REVOCATION_pow_round(struct GNUNET_REVOCATION_PowCalculationHandle *pc) -/home/william/Git/gnunet/src/include/gnunet_revocation_service.h:235: warning: argument 'pc' from the argument list of GNUNET_REVOCATION_pow_round has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_revocation_service.h:258: warning: documented empty return type of GNUNET_REVOCATION_pow_stop -/home/william/Git/gnunet/src/include/gnunet_scalarproduct_service.h:158: warning: argument 'cfg' from the argument list of GNUNET_SCALARPRODUCT_start_computation has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scalarproduct_service.h:158: warning: argument 'session_key' from the argument list of GNUNET_SCALARPRODUCT_start_computation has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scalarproduct_service.h:158: warning: argument 'peer' from the argument list of GNUNET_SCALARPRODUCT_start_computation has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scalarproduct_service.h:158: warning: argument 'elements' from the argument list of GNUNET_SCALARPRODUCT_start_computation has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scalarproduct_service.h:158: warning: argument 'element_count' from the argument list of GNUNET_SCALARPRODUCT_start_computation has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scalarproduct_service.h:158: warning: argument 'cont' from the argument list of GNUNET_SCALARPRODUCT_start_computation has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scalarproduct_service.h:158: warning: argument 'cont_cls' from the argument list of GNUNET_SCALARPRODUCT_start_computation has multiple @param documentation sections -/home/william/Git/gnunet/src/scalarproduct/scalarproduct_api.c:213: warning: argument 'key' of command @param is not found in the argument list of GNUNET_SCALARPRODUCT_accept_computation(const struct GNUNET_CONFIGURATION_Handle *cfg, const struct GNUNET_HashCode *session_key, const struct GNUNET_SCALARPRODUCT_Element *elements, uint32_t element_count, GNUNET_SCALARPRODUCT_ContinuationWithStatus cont, void *cont_cls) -/home/william/Git/gnunet/src/include/gnunet_scalarproduct_service.h:180: warning: argument 'cfg' from the argument list of GNUNET_SCALARPRODUCT_accept_computation has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scalarproduct_service.h:180: warning: argument 'elements' from the argument list of GNUNET_SCALARPRODUCT_accept_computation has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scalarproduct_service.h:180: warning: argument 'element_count' from the argument list of GNUNET_SCALARPRODUCT_accept_computation has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scalarproduct_service.h:180: warning: argument 'cont' from the argument list of GNUNET_SCALARPRODUCT_accept_computation has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scalarproduct_service.h:180: warning: argument 'cont_cls' from the argument list of GNUNET_SCALARPRODUCT_accept_computation has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scheduler_lib.h:422: warning: argument 'task' from the argument list of GNUNET_SCHEDULER_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scheduler_lib.h:422: warning: argument 'task_cls' from the argument list of GNUNET_SCHEDULER_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scheduler_lib.h:464: warning: argument 'p' from the argument list of GNUNET_SCHEDULER_get_load has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scheduler_lib.h:576: warning: argument 'lifeness' from the argument list of GNUNET_SCHEDULER_add_now_with_lifeness has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scheduler_lib.h:576: warning: argument 'task' from the argument list of GNUNET_SCHEDULER_add_now_with_lifeness has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scheduler_lib.h:576: warning: argument 'task_cls' from the argument list of GNUNET_SCHEDULER_add_now_with_lifeness has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scheduler_lib.h:593: warning: argument 'delay' from the argument list of GNUNET_SCHEDULER_add_delayed has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scheduler_lib.h:593: warning: argument 'task' from the argument list of GNUNET_SCHEDULER_add_delayed has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scheduler_lib.h:593: warning: argument 'task_cls' from the argument list of GNUNET_SCHEDULER_add_delayed has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scheduler_lib.h:906: warning: argument 'new_select' from the argument list of GNUNET_SCHEDULER_set_select has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scheduler_lib.h:906: warning: argument 'new_select_cls' from the argument list of GNUNET_SCHEDULER_set_select has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_scheduler_lib.h:906: warning: documented empty return type of GNUNET_SCHEDULER_set_select -/home/william/Git/gnunet/src/include/gnunet_secretsharing_service.h:235: warning: argument 'message' of command @param is not found in the argument list of GNUNET_SECRETSHARING_encrypt(const struct GNUNET_SECRETSHARING_PublicKey *public_key, const struct GNUNET_SECRETSHARING_Plaintext *plaintext, struct GNUNET_SECRETSHARING_Ciphertext *result_ciphertext) -/home/william/Git/gnunet/src/include/gnunet_secretsharing_service.h:235: warning: argument 'message_size' of command @param is not found in the argument list of GNUNET_SECRETSHARING_encrypt(const struct GNUNET_SECRETSHARING_PublicKey *public_key, const struct GNUNET_SECRETSHARING_Plaintext *plaintext, struct GNUNET_SECRETSHARING_Ciphertext *result_ciphertext) -/home/william/Git/gnunet/src/include/gnunet_secretsharing_service.h:249: warning: The following parameter of GNUNET_SECRETSHARING_encrypt(const struct GNUNET_SECRETSHARING_PublicKey *public_key, const struct GNUNET_SECRETSHARING_Plaintext *plaintext, struct GNUNET_SECRETSHARING_Ciphertext *result_ciphertext) is not documented: - parameter 'plaintext' -/home/william/Git/gnunet/src/include/gnunet_secretsharing_service.h:274: warning: argument 'share' from the argument list of GNUNET_SECRETSHARING_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_secretsharing_service.h:274: warning: argument 'ciphertext' from the argument list of GNUNET_SECRETSHARING_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_secretsharing_service.h:274: warning: argument 'decrypt_cb' from the argument list of GNUNET_SECRETSHARING_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_secretsharing_service.h:274: warning: argument 'decrypt_cb_cls' from the argument list of GNUNET_SECRETSHARING_decrypt has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_mst_lib.h:64: warning: explicit link request to 'GNUNET_mst_destroy' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_mst_lib.h:107: warning: argument 'mst' from the argument list of GNUNET_MST_from_buffer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_mst_lib.h:107: warning: argument 'buf' from the argument list of GNUNET_MST_from_buffer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_mst_lib.h:107: warning: argument 'size' from the argument list of GNUNET_MST_from_buffer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_mst_lib.h:107: warning: argument 'purge' from the argument list of GNUNET_MST_from_buffer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_mst_lib.h:107: warning: argument 'one_shot' from the argument list of GNUNET_MST_from_buffer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_mst_lib.h:116: warning: argument 'buf' of command @param is not found in the argument list of GNUNET_MST_read(struct GNUNET_MessageStreamTokenizer *mst, struct GNUNET_NETWORK_Handle *sock, int purge, int one_shot) -/home/william/Git/gnunet/src/include/gnunet_mst_lib.h:116: warning: argument 'size' of command @param is not found in the argument list of GNUNET_MST_read(struct GNUNET_MessageStreamTokenizer *mst, struct GNUNET_NETWORK_Handle *sock, int purge, int one_shot) -/home/william/Git/gnunet/src/include/gnunet_mst_lib.h:129: warning: The following parameter of GNUNET_MST_read(struct GNUNET_MessageStreamTokenizer *mst, struct GNUNET_NETWORK_Handle *sock, int purge, int one_shot) is not documented: - parameter 'sock' -/home/william/Git/gnunet/src/include/gnunet_service_lib.h:401: warning: argument 'c' from the argument list of GNUNET_SERVICE_client_drop has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_service_lib.h:415: warning: explicit link request to 'GNUNET_SERVICE_stop_listening()' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_service_lib.h:255: warning: argument 'options' of command @param is not found in the argument list of GNUNET_SERVICE_MAIN(service_name, service_options, init_cb, connect_cb, disconnect_cb, cls,...) -/home/william/Git/gnunet/src/include/gnunet_service_lib.h:255: warning: argument 'service_init_cb' of command @param is not found in the argument list of GNUNET_SERVICE_MAIN(service_name, service_options, init_cb, connect_cb, disconnect_cb, cls,...) -/home/william/Git/gnunet/src/include/gnunet_service_lib.h:313: warning: The following parameters of GNUNET_SERVICE_MAIN(service_name, service_options, init_cb, connect_cb, disconnect_cb, cls,...) are not documented: - parameter 'service_options' - parameter 'init_cb' - parameter '...' -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:176: warning: explicit link request to 'GNUNET_SETI_STATUS_OK' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:221: warning: explicit link request to 'GNUNET_SETU_STATUS_OK' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_set_service.h:364: warning: argument 'set' from the argument list of GNUNET_SET_add_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:364: warning: argument 'element' from the argument list of GNUNET_SET_add_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:364: warning: argument 'cont' from the argument list of GNUNET_SET_add_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:364: warning: argument 'cont_cls' from the argument list of GNUNET_SET_add_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:384: warning: argument 'set' from the argument list of GNUNET_SET_remove_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:384: warning: argument 'element' from the argument list of GNUNET_SET_remove_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:384: warning: argument 'cont' from the argument list of GNUNET_SET_remove_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:384: warning: argument 'cont_cls' from the argument list of GNUNET_SET_remove_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:405: warning: argument 'set' from the argument list of GNUNET_SET_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:423: warning: argument 'other_peer' from the argument list of GNUNET_SET_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:423: warning: argument 'app_id' from the argument list of GNUNET_SET_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:423: warning: argument 'context_msg' from the argument list of GNUNET_SET_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:423: warning: argument 'result_mode' from the argument list of GNUNET_SET_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:423: warning: argument 'result_cb' from the argument list of GNUNET_SET_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:423: warning: argument 'result_cls' from the argument list of GNUNET_SET_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:423: warning: The following parameter of GNUNET_SET_prepare(const struct GNUNET_PeerIdentity *other_peer, const struct GNUNET_HashCode *app_id, const struct GNUNET_MessageHeader *context_msg, enum GNUNET_SET_ResultMode result_mode, struct GNUNET_SET_Option options[], GNUNET_SET_ResultIterator result_cb, void *result_cls) is not documented: - parameter 'options' -/home/william/Git/gnunet/src/include/gnunet_set_service.h:447: warning: argument 'cfg' from the argument list of GNUNET_SET_listen has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:447: warning: argument 'operation' from the argument list of GNUNET_SET_listen has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:447: warning: argument 'app_id' from the argument list of GNUNET_SET_listen has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:447: warning: argument 'listen_cb' from the argument list of GNUNET_SET_listen has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:447: warning: argument 'listen_cls' from the argument list of GNUNET_SET_listen has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:463: warning: argument 'lh' from the argument list of GNUNET_SET_listen_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:481: warning: argument 'request' from the argument list of GNUNET_SET_accept has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:481: warning: argument 'result_mode' from the argument list of GNUNET_SET_accept has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:481: warning: argument 'result_cb' from the argument list of GNUNET_SET_accept has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:481: warning: argument 'result_cls' from the argument list of GNUNET_SET_accept has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:481: warning: The following parameter of GNUNET_SET_accept(struct GNUNET_SET_Request *request, enum GNUNET_SET_ResultMode result_mode, struct GNUNET_SET_Option options[], GNUNET_SET_ResultIterator result_cb, void *result_cls) is not documented: - parameter 'options' -/home/william/Git/gnunet/src/include/gnunet_set_service.h:514: warning: argument 'oh' from the argument list of GNUNET_SET_operation_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:531: warning: argument 'set' from the argument list of GNUNET_SET_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:531: warning: argument 'iter' from the argument list of GNUNET_SET_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:531: warning: argument 'iter_cls' from the argument list of GNUNET_SET_iterate has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:566: warning: argument 'element' from the argument list of GNUNET_SET_element_hash has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_set_service.h:566: warning: argument 'ret_hash' from the argument list of GNUNET_SET_element_hash has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:218: warning: argument 'cfg' from the argument list of GNUNET_SETI_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:232: warning: argument 'set' from the argument list of GNUNET_SETI_add_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:232: warning: argument 'element' from the argument list of GNUNET_SETI_add_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:232: warning: argument 'cb' from the argument list of GNUNET_SETI_add_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:232: warning: argument 'cb_cls' from the argument list of GNUNET_SETI_add_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:245: warning: argument 'set' from the argument list of GNUNET_SETI_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:262: warning: argument 'other_peer' from the argument list of GNUNET_SETI_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:262: warning: argument 'app_id' from the argument list of GNUNET_SETI_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:262: warning: argument 'context_msg' from the argument list of GNUNET_SETI_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:262: warning: argument 'options' from the argument list of GNUNET_SETI_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:262: warning: argument 'result_cb' from the argument list of GNUNET_SETI_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:262: warning: argument 'result_cls' from the argument list of GNUNET_SETI_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:284: warning: argument 'cfg' from the argument list of GNUNET_SETI_listen has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:284: warning: argument 'app_id' from the argument list of GNUNET_SETI_listen has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:284: warning: argument 'listen_cb' from the argument list of GNUNET_SETI_listen has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:284: warning: argument 'listen_cls' from the argument list of GNUNET_SETI_listen has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:299: warning: argument 'lh' from the argument list of GNUNET_SETI_listen_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:316: warning: argument 'request' from the argument list of GNUNET_SETI_accept has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:316: warning: argument 'options' from the argument list of GNUNET_SETI_accept has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:316: warning: argument 'result_cb' from the argument list of GNUNET_SETI_accept has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:316: warning: argument 'result_cls' from the argument list of GNUNET_SETI_accept has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_seti_service.h:348: warning: argument 'oh' from the argument list of GNUNET_SETI_operation_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:277: warning: argument 'set' from the argument list of GNUNET_SETU_add_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:277: warning: argument 'element' from the argument list of GNUNET_SETU_add_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:277: warning: argument 'cb' from the argument list of GNUNET_SETU_add_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:277: warning: argument 'cb_cls' from the argument list of GNUNET_SETU_add_element has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:290: warning: argument 'set' from the argument list of GNUNET_SETU_destroy has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:307: warning: argument 'other_peer' from the argument list of GNUNET_SETU_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:307: warning: argument 'app_id' from the argument list of GNUNET_SETU_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:307: warning: argument 'context_msg' from the argument list of GNUNET_SETU_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:307: warning: argument 'result_cb' from the argument list of GNUNET_SETU_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:307: warning: argument 'result_cls' from the argument list of GNUNET_SETU_prepare has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:329: warning: argument 'cfg' from the argument list of GNUNET_SETU_listen has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:329: warning: argument 'app_id' from the argument list of GNUNET_SETU_listen has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:329: warning: argument 'listen_cb' from the argument list of GNUNET_SETU_listen has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:329: warning: argument 'listen_cls' from the argument list of GNUNET_SETU_listen has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:344: warning: argument 'lh' from the argument list of GNUNET_SETU_listen_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:347: warning: argument 'result_mode' of command @param is not found in the argument list of GNUNET_SETU_accept(struct GNUNET_SETU_Request *request, const struct GNUNET_SETU_Option options[], GNUNET_SETU_ResultIterator result_cb, void *result_cls) -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:361: warning: argument 'request' from the argument list of GNUNET_SETU_accept has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:361: warning: argument 'result_cb' from the argument list of GNUNET_SETU_accept has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:361: warning: argument 'result_cls' from the argument list of GNUNET_SETU_accept has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_setu_service.h:393: warning: argument 'oh' from the argument list of GNUNET_SETU_operation_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_statistics_service.h:174: warning: argument 'handle' from the argument list of GNUNET_STATISTICS_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_statistics_service.h:174: warning: argument 'subsystem' from the argument list of GNUNET_STATISTICS_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_statistics_service.h:174: warning: argument 'name' from the argument list of GNUNET_STATISTICS_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_statistics_service.h:174: warning: argument 'cont' from the argument list of GNUNET_STATISTICS_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_statistics_service.h:174: warning: argument 'proc' from the argument list of GNUNET_STATISTICS_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_statistics_service.h:174: warning: argument 'cls' from the argument list of GNUNET_STATISTICS_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_statistics_service.h:189: warning: argument 'gh' from the argument list of GNUNET_STATISTICS_get_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_statistics_service.h:202: warning: argument 'handle' from the argument list of GNUNET_STATISTICS_set has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_statistics_service.h:202: warning: argument 'name' from the argument list of GNUNET_STATISTICS_set has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_statistics_service.h:202: warning: argument 'value' from the argument list of GNUNET_STATISTICS_set has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_statistics_service.h:202: warning: argument 'make_persistent' from the argument list of GNUNET_STATISTICS_set has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_statistics_service.h:218: warning: argument 'handle' from the argument list of GNUNET_STATISTICS_update has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_statistics_service.h:218: warning: argument 'name' from the argument list of GNUNET_STATISTICS_update has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_statistics_service.h:218: warning: argument 'delta' from the argument list of GNUNET_STATISTICS_update has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_statistics_service.h:218: warning: argument 'make_persistent' from the argument list of GNUNET_STATISTICS_update has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_strings_lib.h:388: warning: argument 'data' of command @param is not found in the argument list of GNUNET_STRINGS_base64_encode(const void *in, size_t len, char **output) -/home/william/Git/gnunet/src/include/gnunet_strings_lib.h:396: warning: The following parameter of GNUNET_STRINGS_base64_encode(const void *in, size_t len, char **output) is not documented: - parameter 'in' -/home/william/Git/gnunet/src/include/gnunet_strings_lib.h:403: warning: argument 'output' of command @param is not found in the argument list of GNUNET_STRINGS_urlencode(const char *data, size_t len, char **out) -/home/william/Git/gnunet/src/include/gnunet_strings_lib.h:411: warning: The following parameter of GNUNET_STRINGS_urlencode(const char *data, size_t len, char **out) is not documented: - parameter 'out' -/home/william/Git/gnunet/src/include/gnunet_strings_lib.h:446: warning: argument 'output' of command @param is not found in the argument list of GNUNET_STRINGS_base64url_decode(const char *data, size_t len, void **out) -/home/william/Git/gnunet/src/include/gnunet_strings_lib.h:456: warning: The following parameter of GNUNET_STRINGS_base64url_decode(const char *data, size_t len, void **out) is not documented: - parameter 'out' -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:167: warning: explicit link request to 'GNUNET_TRANSPORT_PS_CONNECT_RECV_ATS' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:168: warning: explicit link request to 'GNUNET_TRANSPORT_PS_CONNECT_RECV_ACK' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:175: warning: explicit link request to 'GNUNET_TRANSPORT_PS_CONNECT_SENT' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:192: warning: explicit link request to 'GNUNET_TRANSPORT_PS_CONNECTED_SWITCHING_SYN_SENT' could not be resolved -/home/william/Git/gnunet/src/transport/transport_api2_communication.c:798: warning: argument 'mtu' of command @param is not found in the argument list of GNUNET_TRANSPORT_communicator_connect(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *config_section, const char *addr_prefix, enum GNUNET_TRANSPORT_CommunicatorCharacteristics cc, GNUNET_TRANSPORT_CommunicatorMqInit mq_init, void *mq_init_cls, GNUNET_TRANSPORT_CommunicatorNotify notify_cb, void *notify_cb_cls) -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:154: warning: argument 'cfg' from the argument list of GNUNET_TRANSPORT_communicator_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:154: warning: argument 'config_section' from the argument list of GNUNET_TRANSPORT_communicator_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:154: warning: argument 'addr_prefix' from the argument list of GNUNET_TRANSPORT_communicator_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:154: warning: argument 'cc' from the argument list of GNUNET_TRANSPORT_communicator_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:154: warning: argument 'mq_init' from the argument list of GNUNET_TRANSPORT_communicator_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:154: warning: argument 'mq_init_cls' from the argument list of GNUNET_TRANSPORT_communicator_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:154: warning: argument 'notify_cb' from the argument list of GNUNET_TRANSPORT_communicator_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:154: warning: argument 'notify_cb_cls' from the argument list of GNUNET_TRANSPORT_communicator_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport_api2_communication.c:876: warning: argument 'handle' of command @param is not found in the argument list of GNUNET_TRANSPORT_communicator_receive(struct GNUNET_TRANSPORT_CommunicatorHandle *ch, const struct GNUNET_PeerIdentity *sender, const struct GNUNET_MessageHeader *msg, struct GNUNET_TIME_Relative expected_addr_validity, GNUNET_TRANSPORT_MessageCompletedCallback cb, void *cb_cls) -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:212: warning: argument 'sender' from the argument list of GNUNET_TRANSPORT_communicator_receive has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:212: warning: argument 'msg' from the argument list of GNUNET_TRANSPORT_communicator_receive has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:212: warning: argument 'expected_addr_validity' from the argument list of GNUNET_TRANSPORT_communicator_receive has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:212: warning: argument 'cb' from the argument list of GNUNET_TRANSPORT_communicator_receive has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:212: warning: argument 'cb_cls' from the argument list of GNUNET_TRANSPORT_communicator_receive has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:252: warning: argument 'cc' of command @param is not found in the argument list of GNUNET_TRANSPORT_communicator_mq_add(struct GNUNET_TRANSPORT_CommunicatorHandle *ch, const struct GNUNET_PeerIdentity *peer, const char *address, uint32_t mtu, uint64_t q_len, uint32_t priority, enum GNUNET_NetworkType nt, enum GNUNET_TRANSPORT_ConnectionStatus cs, struct GNUNET_MQ_Handle *mq) -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:271: warning: argument 'ch' from the argument list of GNUNET_TRANSPORT_communicator_mq_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:271: warning: argument 'peer' from the argument list of GNUNET_TRANSPORT_communicator_mq_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:271: warning: argument 'address' from the argument list of GNUNET_TRANSPORT_communicator_mq_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:271: warning: argument 'mtu' from the argument list of GNUNET_TRANSPORT_communicator_mq_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:271: warning: argument 'q_len' from the argument list of GNUNET_TRANSPORT_communicator_mq_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:271: warning: argument 'priority' from the argument list of GNUNET_TRANSPORT_communicator_mq_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:271: warning: argument 'nt' from the argument list of GNUNET_TRANSPORT_communicator_mq_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:271: warning: argument 'cs' from the argument list of GNUNET_TRANSPORT_communicator_mq_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:271: warning: argument 'mq' from the argument list of GNUNET_TRANSPORT_communicator_mq_add has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:282: warning: argument 'qh' of command @param is not found in the argument list of GNUNET_TRANSPORT_communicator_mq_update(struct GNUNET_TRANSPORT_CommunicatorHandle *ch, const struct GNUNET_TRANSPORT_QueueHandle *u_qh, uint64_t q_len, uint32_t priority) -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:292: warning: The following parameter of GNUNET_TRANSPORT_communicator_mq_update(struct GNUNET_TRANSPORT_CommunicatorHandle *ch, const struct GNUNET_TRANSPORT_QueueHandle *u_qh, uint64_t q_len, uint32_t priority) is not documented: - parameter 'u_qh' -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:370: warning: argument 'ch' from the argument list of GNUNET_TRANSPORT_communicator_notify has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:370: warning: argument 'pid' from the argument list of GNUNET_TRANSPORT_communicator_notify has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:370: warning: argument 'comm' from the argument list of GNUNET_TRANSPORT_communicator_notify has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_communication_service.h:370: warning: argument 'header' from the argument list of GNUNET_TRANSPORT_communicator_notify has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_core_service.h:95: warning: argument 'neb' of command @param is not found in the argument list of GNUNET_TRANSPORT_core_connect(const struct GNUNET_CONFIGURATION_Handle *cfg, const struct GNUNET_PeerIdentity *self, const struct GNUNET_MQ_MessageHandler *handlers, void *cls, GNUNET_TRANSPORT_NotifyConnect nc, GNUNET_TRANSPORT_NotifyDisconnect nd) -/home/william/Git/gnunet/src/include/gnunet_transport_core_service.h:113: warning: argument 'handlers' from the argument list of GNUNET_TRANSPORT_core_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_core_service.h:127: warning: argument 'handle' from the argument list of GNUNET_TRANSPORT_core_disconnect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_hello_service.h:145: warning: argument 'cfg' from the argument list of GNUNET_TRANSPORT_hello_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_hello_service.h:145: warning: argument 'ac' from the argument list of GNUNET_TRANSPORT_hello_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_hello_service.h:145: warning: argument 'rec' from the argument list of GNUNET_TRANSPORT_hello_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_hello_service.h:145: warning: argument 'rec_cls' from the argument list of GNUNET_TRANSPORT_hello_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_manipulation_service.h:82: warning: argument 'handle' from the argument list of GNUNET_TRANSPORT_manipulation_disconnect has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport_api2_monitor.c:279: warning: argument 'pmc' of command @param is not found in the argument list of GNUNET_TRANSPORT_monitor_cancel(struct GNUNET_TRANSPORT_MonitorContext *mc) -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:93: warning: argument 'ohh' from the argument list of GNUNET_TRANSPORT_offer_hello_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:296: warning: argument 'state' from the argument list of GNUNET_TRANSPORT_ps2s has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:369: warning: argument 'cfg' from the argument list of GNUNET_TRANSPORT_monitor_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:369: warning: argument 'peer' from the argument list of GNUNET_TRANSPORT_monitor_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:369: warning: argument 'one_shot' from the argument list of GNUNET_TRANSPORT_monitor_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:369: warning: argument 'peer_callback' from the argument list of GNUNET_TRANSPORT_monitor_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:369: warning: argument 'peer_callback_cls' from the argument list of GNUNET_TRANSPORT_monitor_peers has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport_api_monitor_plugins.c:441: warning: explicit link request to 'GNUNET_TRANSPORT_SS_FINI' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:581: warning: argument 'pm' from the argument list of GNUNET_TRANSPORT_monitor_plugins_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/transport/transport_api_core.c:844: warning: argument 'rec' of command @param is not found in the argument list of GNUNET_TRANSPORT_core_connect(const struct GNUNET_CONFIGURATION_Handle *cfg, const struct GNUNET_PeerIdentity *self, const struct GNUNET_MQ_MessageHandler *handlers, void *cls, GNUNET_TRANSPORT_NotifyConnect nc, GNUNET_TRANSPORT_NotifyDisconnect nd, GNUNET_TRANSPORT_NotifyExcessBandwidth neb) -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:669: warning: argument 'cfg' from the argument list of GNUNET_TRANSPORT_core_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:669: warning: argument 'self' from the argument list of GNUNET_TRANSPORT_core_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:669: warning: argument 'handlers' from the argument list of GNUNET_TRANSPORT_core_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:669: warning: argument 'cls' from the argument list of GNUNET_TRANSPORT_core_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:669: warning: argument 'nc' from the argument list of GNUNET_TRANSPORT_core_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:669: warning: argument 'nd' from the argument list of GNUNET_TRANSPORT_core_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_service.h:669: warning: argument 'neb' from the argument list of GNUNET_TRANSPORT_core_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:777: warning: argument 'ip' from the argument list of GNUNET_TUN_initialize_ipv6_header has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:777: warning: argument 'protocol' from the argument list of GNUNET_TUN_initialize_ipv6_header has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:777: warning: argument 'payload_length' from the argument list of GNUNET_TUN_initialize_ipv6_header has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:777: warning: argument 'src' from the argument list of GNUNET_TUN_initialize_ipv6_header has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:777: warning: argument 'dst' from the argument list of GNUNET_TUN_initialize_ipv6_header has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:792: warning: argument 'ip' from the argument list of GNUNET_TUN_calculate_tcp4_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:792: warning: argument 'tcp' from the argument list of GNUNET_TUN_calculate_tcp4_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:792: warning: argument 'payload' from the argument list of GNUNET_TUN_calculate_tcp4_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:792: warning: argument 'payload_length' from the argument list of GNUNET_TUN_calculate_tcp4_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:806: warning: argument 'ip' from the argument list of GNUNET_TUN_calculate_tcp6_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:806: warning: argument 'tcp' from the argument list of GNUNET_TUN_calculate_tcp6_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:806: warning: argument 'payload' from the argument list of GNUNET_TUN_calculate_tcp6_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:806: warning: argument 'payload_length' from the argument list of GNUNET_TUN_calculate_tcp6_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:820: warning: argument 'ip' from the argument list of GNUNET_TUN_calculate_udp4_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:820: warning: argument 'udp' from the argument list of GNUNET_TUN_calculate_udp4_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:820: warning: argument 'payload' from the argument list of GNUNET_TUN_calculate_udp4_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:820: warning: argument 'payload_length' from the argument list of GNUNET_TUN_calculate_udp4_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:835: warning: argument 'ip' from the argument list of GNUNET_TUN_calculate_udp6_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:835: warning: argument 'udp' from the argument list of GNUNET_TUN_calculate_udp6_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:835: warning: argument 'payload' from the argument list of GNUNET_TUN_calculate_udp6_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:835: warning: argument 'payload_length' from the argument list of GNUNET_TUN_calculate_udp6_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:849: warning: argument 'icmp' from the argument list of GNUNET_TUN_calculate_icmp_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:849: warning: argument 'payload' from the argument list of GNUNET_TUN_calculate_icmp_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:849: warning: argument 'payload_length' from the argument list of GNUNET_TUN_calculate_icmp_checksum has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:863: warning: argument 'ip' from the argument list of GNUNET_TUN_ipv4toregexsearch has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:863: warning: argument 'port' from the argument list of GNUNET_TUN_ipv4toregexsearch has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:863: warning: argument 'rxstr' from the argument list of GNUNET_TUN_ipv4toregexsearch has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:877: warning: argument 'ipv6' from the argument list of GNUNET_TUN_ipv6toregexsearch has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:877: warning: argument 'port' from the argument list of GNUNET_TUN_ipv6toregexsearch has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:877: warning: argument 'rxstr' from the argument list of GNUNET_TUN_ipv6toregexsearch has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:892: warning: argument 'policy' from the argument list of GNUNET_TUN_ipv6policy2regex has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:905: warning: argument 'policy' from the argument list of GNUNET_TUN_ipv4policy2regex has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:917: warning: argument 'service_name' from the argument list of GNUNET_TUN_service_name_to_hash has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_tun_lib.h:917: warning: argument 'hc' from the argument list of GNUNET_TUN_service_name_to_hash has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_logger_service.h:71: warning: argument 'h' from the argument list of GNUNET_TESTBED_LOGGER_disconnect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_logger_service.h:109: warning: argument 'h' from the argument list of GNUNET_TESTBED_LOGGER_flush has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_logger_service.h:109: warning: argument 'cb' from the argument list of GNUNET_TESTBED_LOGGER_flush has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_logger_service.h:109: warning: argument 'cb_cls' from the argument list of GNUNET_TESTBED_LOGGER_flush has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:117: warning: argument 'id' from the argument list of GNUNET_TESTBED_host_create_with_id has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:117: warning: argument 'hostname' from the argument list of GNUNET_TESTBED_host_create_with_id has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:117: warning: argument 'username' from the argument list of GNUNET_TESTBED_host_create_with_id has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:117: warning: argument 'cfg' from the argument list of GNUNET_TESTBED_host_create_with_id has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:117: warning: argument 'port' from the argument list of GNUNET_TESTBED_host_create_with_id has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:138: warning: argument 'filename' from the argument list of GNUNET_TESTBED_hosts_load_from_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:138: warning: argument 'cfg' from the argument list of GNUNET_TESTBED_hosts_load_from_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:138: warning: argument 'hosts' from the argument list of GNUNET_TESTBED_hosts_load_from_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:479: warning: argument 'host' from the argument list of GNUNET_TESTBED_controller_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:479: warning: argument 'event_mask' from the argument list of GNUNET_TESTBED_controller_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:479: warning: argument 'cc' from the argument list of GNUNET_TESTBED_controller_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:479: warning: argument 'cc_cls' from the argument list of GNUNET_TESTBED_controller_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:529: warning: argument 'controller' from the argument list of GNUNET_TESTBED_register_host has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:529: warning: argument 'host' from the argument list of GNUNET_TESTBED_register_host has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:529: warning: argument 'cc' from the argument list of GNUNET_TESTBED_register_host has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:529: warning: argument 'cc_cls' from the argument list of GNUNET_TESTBED_register_host has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:545: warning: argument 'handle' from the argument list of GNUNET_TESTBED_cancel_registration has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:593: warning: argument 'op_cls' from the argument list of GNUNET_TESTBED_controller_link has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:593: warning: argument 'master' from the argument list of GNUNET_TESTBED_controller_link has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:593: warning: argument 'delegated_host' from the argument list of GNUNET_TESTBED_controller_link has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:593: warning: argument 'slave_host' from the argument list of GNUNET_TESTBED_controller_link has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:593: warning: argument 'is_subordinate' from the argument list of GNUNET_TESTBED_controller_link has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:616: warning: argument 'op_cls' from the argument list of GNUNET_TESTBED_get_slave_config has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:616: warning: argument 'master' from the argument list of GNUNET_TESTBED_get_slave_config has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:616: warning: argument 'slave_host' from the argument list of GNUNET_TESTBED_get_slave_config has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:666: warning: argument 'controller' from the argument list of GNUNET_TESTBED_peer_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:666: warning: argument 'host' from the argument list of GNUNET_TESTBED_peer_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:666: warning: argument 'cfg' from the argument list of GNUNET_TESTBED_peer_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:666: warning: argument 'cb' from the argument list of GNUNET_TESTBED_peer_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:666: warning: argument 'cls' from the argument list of GNUNET_TESTBED_peer_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:696: warning: argument 'op_cls' from the argument list of GNUNET_TESTBED_peer_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:696: warning: argument 'peer' from the argument list of GNUNET_TESTBED_peer_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:696: warning: argument 'pcc' from the argument list of GNUNET_TESTBED_peer_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:696: warning: argument 'pcc_cls' from the argument list of GNUNET_TESTBED_peer_start has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:715: warning: argument 'op_cls' from the argument list of GNUNET_TESTBED_peer_stop has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:715: warning: argument 'peer' from the argument list of GNUNET_TESTBED_peer_stop has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:715: warning: argument 'pcc' from the argument list of GNUNET_TESTBED_peer_stop has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:715: warning: argument 'pcc_cls' from the argument list of GNUNET_TESTBED_peer_stop has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:783: warning: argument 'peer' from the argument list of GNUNET_TESTBED_peer_get_information has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:783: warning: argument 'pit' from the argument list of GNUNET_TESTBED_peer_get_information has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:783: warning: argument 'cb' from the argument list of GNUNET_TESTBED_peer_get_information has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:783: warning: argument 'cb_cls' from the argument list of GNUNET_TESTBED_peer_get_information has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:799: warning: argument 'peer' from the argument list of GNUNET_TESTBED_peer_update_configuration has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:799: warning: argument 'cfg' from the argument list of GNUNET_TESTBED_peer_update_configuration has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:831: warning: argument 'op_cls' from the argument list of GNUNET_TESTBED_peer_manage_service has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:831: warning: argument 'peer' from the argument list of GNUNET_TESTBED_peer_manage_service has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:831: warning: argument 'service_name' from the argument list of GNUNET_TESTBED_peer_manage_service has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:831: warning: argument 'cb' from the argument list of GNUNET_TESTBED_peer_manage_service has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:831: warning: argument 'cb_cls' from the argument list of GNUNET_TESTBED_peer_manage_service has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:831: warning: argument 'start' from the argument list of GNUNET_TESTBED_peer_manage_service has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1041: warning: argument 'op_cls' from the argument list of GNUNET_TESTBED_underlay_configure_topology_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1041: warning: argument 'num_peers' from the argument list of GNUNET_TESTBED_underlay_configure_topology_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1041: warning: argument 'peers' from the argument list of GNUNET_TESTBED_underlay_configure_topology_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1041: warning: argument 'topo' from the argument list of GNUNET_TESTBED_underlay_configure_topology_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1041: warning: argument 'ap' from the argument list of GNUNET_TESTBED_underlay_configure_topology_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1063: warning: argument 'op_cls' from the argument list of GNUNET_TESTBED_underlay_configure_topology has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1063: warning: argument 'num_peers' from the argument list of GNUNET_TESTBED_underlay_configure_topology has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1063: warning: argument 'peers' from the argument list of GNUNET_TESTBED_underlay_configure_topology has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1063: warning: argument 'topo' from the argument list of GNUNET_TESTBED_underlay_configure_topology has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1086: warning: argument 'op_cls' from the argument list of GNUNET_TESTBED_overlay_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1086: warning: argument 'cb' from the argument list of GNUNET_TESTBED_overlay_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1086: warning: argument 'cb_cls' from the argument list of GNUNET_TESTBED_overlay_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1086: warning: argument 'p1' from the argument list of GNUNET_TESTBED_overlay_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1086: warning: argument 'p2' from the argument list of GNUNET_TESTBED_overlay_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1130: warning: argument 'op_cls' from the argument list of GNUNET_TESTBED_overlay_configure_topology_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1130: warning: argument 'num_peers' from the argument list of GNUNET_TESTBED_overlay_configure_topology_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1130: warning: argument 'peers' from the argument list of GNUNET_TESTBED_overlay_configure_topology_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1130: warning: argument 'max_connections' from the argument list of GNUNET_TESTBED_overlay_configure_topology_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1130: warning: argument 'comp_cb' from the argument list of GNUNET_TESTBED_overlay_configure_topology_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1130: warning: argument 'comp_cb_cls' from the argument list of GNUNET_TESTBED_overlay_configure_topology_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1130: warning: argument 'topo' from the argument list of GNUNET_TESTBED_overlay_configure_topology_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1130: warning: argument 'va' from the argument list of GNUNET_TESTBED_overlay_configure_topology_va has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1186: warning: argument 'controller' from the argument list of GNUNET_TESTBED_overlay_write_topology_to_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1186: warning: argument 'filename' from the argument list of GNUNET_TESTBED_overlay_write_topology_to_file has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1259: warning: argument 'op_cls' from the argument list of GNUNET_TESTBED_service_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1259: warning: argument 'peer' from the argument list of GNUNET_TESTBED_service_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1259: warning: argument 'service_name' from the argument list of GNUNET_TESTBED_service_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1259: warning: argument 'cb' from the argument list of GNUNET_TESTBED_service_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1259: warning: argument 'cb_cls' from the argument list of GNUNET_TESTBED_service_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1259: warning: argument 'ca' from the argument list of GNUNET_TESTBED_service_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1259: warning: argument 'da' from the argument list of GNUNET_TESTBED_service_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1259: warning: argument 'cada_cls' from the argument list of GNUNET_TESTBED_service_connect has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1331: warning: argument 'num_peers' from the argument list of GNUNET_TESTBED_get_statistics has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1331: warning: argument 'peers' from the argument list of GNUNET_TESTBED_get_statistics has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1331: warning: argument 'subsystem' from the argument list of GNUNET_TESTBED_get_statistics has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1331: warning: argument 'name' from the argument list of GNUNET_TESTBED_get_statistics has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1331: warning: argument 'proc' from the argument list of GNUNET_TESTBED_get_statistics has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1331: warning: argument 'cont' from the argument list of GNUNET_TESTBED_get_statistics has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1331: warning: argument 'cls' from the argument list of GNUNET_TESTBED_get_statistics has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1414: warning: argument 'host_filename' from the argument list of GNUNET_TESTBED_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1414: warning: argument 'cfg' from the argument list of GNUNET_TESTBED_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1414: warning: argument 'num_peers' from the argument list of GNUNET_TESTBED_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1414: warning: argument 'event_mask' from the argument list of GNUNET_TESTBED_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1414: warning: argument 'cc' from the argument list of GNUNET_TESTBED_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1414: warning: argument 'cc_cls' from the argument list of GNUNET_TESTBED_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1414: warning: argument 'test_master' from the argument list of GNUNET_TESTBED_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1414: warning: argument 'test_master_cls' from the argument list of GNUNET_TESTBED_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1463: warning: argument 'testname' from the argument list of GNUNET_TESTBED_test_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1463: warning: argument 'cfg_filename' from the argument list of GNUNET_TESTBED_test_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1463: warning: argument 'num_peers' from the argument list of GNUNET_TESTBED_test_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1463: warning: argument 'event_mask' from the argument list of GNUNET_TESTBED_test_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1463: warning: argument 'cc' from the argument list of GNUNET_TESTBED_test_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1463: warning: argument 'cc_cls' from the argument list of GNUNET_TESTBED_test_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1463: warning: argument 'test_master' from the argument list of GNUNET_TESTBED_test_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1463: warning: argument 'test_master_cls' from the argument list of GNUNET_TESTBED_test_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1535: warning: argument 'cb_cls' of command @param is not found in the argument list of GNUNET_TESTBED_barrier_init(struct GNUNET_TESTBED_Controller *controller, const char *name, unsigned int quorum, GNUNET_TESTBED_barrier_status_cb cb, void *cls) -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1550: warning: argument 'controller' from the argument list of GNUNET_TESTBED_barrier_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1550: warning: argument 'name' from the argument list of GNUNET_TESTBED_barrier_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1550: warning: argument 'quorum' from the argument list of GNUNET_TESTBED_barrier_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1550: warning: argument 'cb' from the argument list of GNUNET_TESTBED_barrier_init has multiple @param documentation sections -/home/william/Git/gnunet/src/testbed/testbed_api_barriers.c:163: warning: argument 'cls' of command @param is not found in the argument list of GNUNET_TESTBED_barrier_wait(const char *name, GNUNET_TESTBED_barrier_wait_cb cb, void *cb_cls) -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1600: warning: argument 'name' from the argument list of GNUNET_TESTBED_barrier_wait has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1600: warning: argument 'cb' from the argument list of GNUNET_TESTBED_barrier_wait has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testbed_service.h:1612: warning: argument 'h' from the argument list of GNUNET_TESTBED_barrier_wait_cancel has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:161: warning: argument 'testdir' from the argument list of GNUNET_TESTING_system_create_with_portrange has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:161: warning: argument 'trusted_ip' from the argument list of GNUNET_TESTING_system_create_with_portrange has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:161: warning: argument 'hostname' from the argument list of GNUNET_TESTING_system_create_with_portrange has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:161: warning: argument 'shared_services' from the argument list of GNUNET_TESTING_system_create_with_portrange has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:161: warning: argument 'lowport' from the argument list of GNUNET_TESTING_system_create_with_portrange has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:161: warning: argument 'highport' from the argument list of GNUNET_TESTING_system_create_with_portrange has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:201: warning: argument 'system' from the argument list of GNUNET_TESTING_hostkey_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:201: warning: argument 'key_number' from the argument list of GNUNET_TESTING_hostkey_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:201: warning: argument 'id' from the argument list of GNUNET_TESTING_hostkey_get has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:213: warning: argument 'system' from the argument list of GNUNET_TESTING_reserve_port has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:224: warning: argument 'system' from the argument list of GNUNET_TESTING_release_port has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:224: warning: argument 'port' from the argument list of GNUNET_TESTING_release_port has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:246: warning: argument 'system' from the argument list of GNUNET_TESTING_configuration_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:246: warning: argument 'cfg' from the argument list of GNUNET_TESTING_configuration_create has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:305: warning: argument 'peer' from the argument list of GNUNET_TESTING_peer_stop has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:367: warning: argument 'peer' from the argument list of GNUNET_TESTING_peer_stop_async has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:367: warning: argument 'cb' from the argument list of GNUNET_TESTING_peer_stop_async has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:367: warning: argument 'cb_cls' from the argument list of GNUNET_TESTING_peer_stop_async has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:416: warning: argument 'testdir' from the argument list of GNUNET_TESTING_peer_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:416: warning: argument 'cfgfilename' from the argument list of GNUNET_TESTING_peer_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:416: warning: argument 'tm' from the argument list of GNUNET_TESTING_peer_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:416: warning: argument 'tm_cls' from the argument list of GNUNET_TESTING_peer_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:444: warning: argument 'testdir' from the argument list of GNUNET_TESTING_service_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:444: warning: argument 'service_name' from the argument list of GNUNET_TESTING_service_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:444: warning: argument 'cfgfilename' from the argument list of GNUNET_TESTING_service_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:444: warning: argument 'tm' from the argument list of GNUNET_TESTING_service_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_testing_lib.h:444: warning: argument 'tm_cls' from the argument list of GNUNET_TESTING_service_run has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_time_lib.h:239: warning: argument 't' of command @param is not found in the argument list of GNUNET_TIME_absolute2s(struct GNUNET_TIME_Absolute ts) -/home/william/Git/gnunet/src/include/gnunet_time_lib.h:249: warning: The following parameter of GNUNET_TIME_absolute2s(struct GNUNET_TIME_Absolute ts) is not documented: - parameter 'ts' -/home/william/Git/gnunet/src/include/gnunet_transport_plugin.h:132: warning: explicit link request to 'GNUNET_ATS_address_get_type()' could not be resolved -/home/william/Git/gnunet/src/include/gnunet_vpn_service.h:101: warning: argument 'vh' from the argument list of GNUNET_VPN_redirect_to_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_vpn_service.h:101: warning: argument 'result_af' from the argument list of GNUNET_VPN_redirect_to_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_vpn_service.h:101: warning: argument 'protocol' from the argument list of GNUNET_VPN_redirect_to_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_vpn_service.h:101: warning: argument 'peer' from the argument list of GNUNET_VPN_redirect_to_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_vpn_service.h:101: warning: argument 'serv' from the argument list of GNUNET_VPN_redirect_to_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_vpn_service.h:101: warning: argument 'expiration_time' from the argument list of GNUNET_VPN_redirect_to_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_vpn_service.h:101: warning: argument 'cb' from the argument list of GNUNET_VPN_redirect_to_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_vpn_service.h:101: warning: argument 'cb_cls' from the argument list of GNUNET_VPN_redirect_to_peer has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_vpn_service.h:135: warning: argument 'vh' from the argument list of GNUNET_VPN_redirect_to_ip has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_vpn_service.h:135: warning: argument 'result_af' from the argument list of GNUNET_VPN_redirect_to_ip has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_vpn_service.h:135: warning: argument 'addr_af' from the argument list of GNUNET_VPN_redirect_to_ip has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_vpn_service.h:135: warning: argument 'addr' from the argument list of GNUNET_VPN_redirect_to_ip has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_vpn_service.h:135: warning: argument 'expiration_time' from the argument list of GNUNET_VPN_redirect_to_ip has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_vpn_service.h:135: warning: argument 'cb' from the argument list of GNUNET_VPN_redirect_to_ip has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_vpn_service.h:135: warning: argument 'cb_cls' from the argument list of GNUNET_VPN_redirect_to_ip has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_application_service.h:58: warning: argument 'cfg' from the argument list of GNUNET_TRANSPORT_application_init has multiple @param documentation sections -/home/william/Git/gnunet/src/include/gnunet_transport_application_service.h:68: warning: argument 'ch' from the argument list of GNUNET_TRANSPORT_application_done has multiple @param documentation sections -- cgit v1.2.3