aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorWillow Liquorice <willow@howhill.com>2022-08-09 22:22:43 +0100
committerMartin Schanzenbach <schanzen@gnunet.org>2022-08-21 08:18:22 +0200
commitd1e7d2af59e7b7c4a633c1853e43d3c35d3c9f88 (patch)
treeb888fb5a41a1be3131dccf9ade5da7c1eab0904c /doc
parentcc738d28d345bf1e7c4083fc052f4df3be1c2c74 (diff)
downloadgnunet-d1e7d2af59e7b7c4a633c1853e43d3c35d3c9f88.tar.gz
gnunet-d1e7d2af59e7b7c4a633c1853e43d3c35d3c9f88.zip
-Moved warnings file and warningfilter.py out of repo in preparation for cleanup
Diffstat (limited to 'doc')
-rwxr-xr-xdoc/doxygen/warningfilter.py67
-rw-r--r--doc/doxygen/warnings13889
2 files changed, 0 insertions, 13956 deletions
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 @@
1#!/usr/bin/env python3
2
3import argparse as ap
4import re
5import sys
6
7def sep_re(field, separator):
8 return rf"{field}(?:{separator}{field})*"
9
10fileclass = r"[\w-]"
11filename = rf"{fileclass}+"
12# filename = rf"(/{fileclass}+)+\.\w"
13filepath = rf"{sep_re(filename, '/')}\.(?:\w+)"
14main_match = rf"(?P<path>/{filepath}|\[generated\]):(?P<linenumber>\d+): warning:"
15type_name = rf"(?:const )?(?:unsigned (?:long )?|struct |enum )?(?:\w+)(?: \*?const)? \*{{0,3}}"
16var_def = rf"{type_name}\w+(?:\[(?:\(\d+/\d+\))?\])?"
17func_params = rf"\({sep_re(var_def, ', ')}(?:,\.\.\.)?\)"
18simple_name = r"\w+"
19func_name = simple_name
20verbose_name = rf"{sep_re(simple_name, ' ')}"
21command_re = "(?:</[^>]+>|\\\w+)"
22macro_params = rf"\({sep_re(simple_name, ', ')}(?:,\.\.\.)?\)"
23
24matches = {
25 "not an input @file": re.compile(rf"{main_match} the name '(?P<name>{filepath}|{simple_name})' supplied as the argument in the \\file statement is not an input file"),
26 "multiple @param docs": re.compile(rf"{main_match} argument '\w+' from the argument list of \w+ has multiple @param documentation sections"),
27 "undocumented param (message)": re.compile(rf"{main_match} The following parameters? of {func_name}(?:{func_params}|{macro_params}) (?:is|are) not documented:"),
28 "undocumented param (name)": re.compile(r" parameter '[\w.]+'"),
29 "explicit link not resolved": re.compile(rf"{main_match} explicit link request to '\w+(?:\(\))?' could not be resolved"),
30 "unknown command": re.compile(rf"{main_match} Found unknown command '\\\w+'"),
31 "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})"),
32 "eof inside group": re.compile(rf"{main_match} end of file while inside a group"),
33 "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+\)"),
34 "blank": re.compile(rf"^\s*$"),
35 "eof inside code block (line 1)": re.compile(rf"{main_match} reached end of file while inside a 'code' block!"),
36 "eof inside code block (line 2)": re.compile(rf"The command that should end the block seems to be missing!"),
37 "title mismatch": re.compile(rf"{main_match} group (?P<group_id>\w+): ignoring title \"(?P<new_title>{verbose_name})\" that does not match old title \"(?P<old_title>{verbose_name})\""),
38 "end of comment expecting command": re.compile(rf"{main_match} end of comment block while expecting command {command_re}"),
39 "no matching tag": re.compile(rf"{main_match} found </(?P<tag>[^>]+)> tag without matching <(?P=tag)>"),
40 "documented empty return type": re.compile(rf"{main_match} documented empty return type of {func_name}"),
41 "unsupported tag": re.compile(rf"{main_match} Unsupported xml/html tag <(?P<tag>[^>]+)> found"),
42 "expected whitespace after command": re.compile(rf"{main_match} expected whitespace after \\(?P<command>\w+) command"),
43 "illegal command": re.compile(rf"{main_match} Illegal command (?P<illegal_cmd>(?:@|\\)\w+) as part of a (?P<command>\\\w+) command"),
44 "undeclared symbol": re.compile(rf"{main_match} documented symbol '\w+' was not declared or defined\."),
45 "nameless member": re.compile(rf"{main_match} member with no name found."),
46 "end of empty list": re.compile(rf"{main_match} End of list marker found without any preceding list items"),
47# "": re.compile(rf"{main_match} "),
48}
49
50parser = ap.ArgumentParser()
51parser.add_argument("filename")
52args = parser.parse_args()
53
54counts = {**{k: 0 for k in matches.keys()},
55 **{"unsorted":0}}
56
57with open(args.filename, "r") as file:
58 for line in file.readlines():
59 for key, regex in matches.items():
60 if regex.match(line):
61 counts[key] += 1
62 break
63 else:
64 print(line.strip("\n"), file=sys.stderr)
65 counts["unsorted"] += 1
66
67print(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 @@
1sed 's/\(HAVE_DOT.*=\).*/\1 NO/' gnunet.doxy | doxygen -
2warning: doxygen no longer ships with the FreeSans font.
3You may want to clear or change DOT_FONTNAME.
4Otherwise you run the risk that the wrong font is being used for dot generated graphs.
5/home/william/Git/gnunet/src/include/gnunet_client_lib.h:108: warning: end of file while inside a group
6/home/william/Git/gnunet/src/include/gnunet_gns_service.h:241: warning: end of file while inside a group
7/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:1129: warning: end of file while inside a group
8/home/william/Git/gnunet/src/include/gnunet_mst_lib.h:174: warning: end of file while inside a group
9/home/william/Git/gnunet/src/include/gnunet_nc_lib.h:108: warning: end of file while inside a group
10/home/william/Git/gnunet/src/include/gnunet_service_lib.h:455: warning: end of file while inside a group
11/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)
12/home/william/Git/gnunet/src/include/gnunet_transport_core_service.h:183: warning: reached end of file while inside a 'code' block!
13The command that should end the block seems to be missing!
14
15/home/william/Git/gnunet/src/include/gnunet_transport_core_service.h:183: warning: end of file while inside a group
16/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)
17/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:909: warning: reached end of file while inside a 'code' block!
18The command that should end the block seems to be missing!
19
20/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:2609: warning: reached end of file while inside a 'code' block!
21The command that should end the block seems to be missing!
22
23/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)
24/home/william/Git/gnunet/src/transport/transport_api2_core.c:805: warning: reached end of file while inside a 'code' block!
25The command that should end the block seems to be missing!
26
27/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)
28/home/william/Git/gnunet/src/transport/transport_api_core.c:969: warning: reached end of file while inside a 'code' block!
29The command that should end the block seems to be missing!
30
31/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"
32
33/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"
34
35/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"
36
37/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"
38
39/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"
40
41/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"
42
43/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"
44
45/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"
46
47/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
48/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
49/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
50/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
51/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
52/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
53/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
54/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
55/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
56/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
57/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
58/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
59/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
60/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
61/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
62/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
63/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
64/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
65/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
66/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
67/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
68/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
69/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
70/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
71/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
72/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
73/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
74/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
75/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
76/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
77/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
78/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
79/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
80/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
81/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
82/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
83/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
84/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
85/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
86/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
87/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
88/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
89/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
90/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
91/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
92/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
93/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
94/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
95/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
96/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
97/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
98/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
99/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
100/home/william/Git/gnunet/contrib/web/log.php:84: warning: documented symbol 'if' was not declared or defined.
101/home/william/Git/gnunet/contrib/web/log.php:100: warning: documented symbol 'if' was not declared or defined.
102/home/william/Git/gnunet/doc/tutorial/examples/005.c:5: warning: member with no name found.
103/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
104/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
105/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
106/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
107/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_paths.c:310: warning: explicit link request to 'find_peer_at()' could not be resolved
108/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.c:227: warning: Found unknown command '\path_tails'
109/home/william/Git/gnunet/src/conversation/conversation.h:265: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_CONVERSATION_RING' could not be resolved
110/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
111/home/william/Git/gnunet/src/core/gnunet-service-core.c:380: warning: explicit link request to 'client_tokenizer_callback()' could not be resolved
112/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
113/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
114/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
115/home/william/Git/gnunet/src/dht/gnunet-dht-put.c:59: warning: explicit link request to 'GNUNET_DHT_DEMULTIPLEX_EVERYWHERE' could not be resolved
116/home/william/Git/gnunet/src/exit/exit.h:96: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_VPN_TCP_DATA' could not be resolved
117/home/william/Git/gnunet/src/exit/gnunet-daemon-exit.c:3513: warning: explicit link request to 'udp_services' could not be resolved
118/home/william/Git/gnunet/src/exit/gnunet-daemon-exit.c:3513: warning: explicit link request to 'tcp_services' could not be resolved
119/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:661: warning: explicit link request to 'GNUNET_GNSRECORD_PublicKey' could not be resolved
120/home/william/Git/gnunet/src/hello/hello-ng.c:39: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_ADDRESS' could not be resolved
121/home/william/Git/gnunet/src/hello/hello-uri.c:51: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_HELLO' could not be resolved
122/home/william/Git/gnunet/src/hello/hello-uri.c:136: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_HELLO' could not be resolved
123/home/william/Git/gnunet/src/hello/hello-uri.c:102: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_HELLO' could not be resolved
124/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:661: warning: explicit link request to 'GNUNET_GNSRECORD_PublicKey' could not be resolved
125/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:794: warning: found </i> tag without matching <i>
126/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:794: warning: found </i> tag without matching <i>
127/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
128/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
129/home/william/Git/gnunet/src/include/gnunet_my_lib.h:470: warning: explicit link request to 'GNUNET_MY_exect_prepared()' could not be resolved
130/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:4275: warning: explicit link request to 'view' could not be resolved
131/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:184: warning: end of comment block while expecting command </i>
132/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:184: warning: end of comment block while expecting command </i>
133/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:184: warning: end of comment block while expecting command </i>
134/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:184: warning: end of comment block while expecting command </i>
135/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_kind.h:153: warning: end of comment block while expecting command </i>
136/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_kind.h:153: warning: end of comment block while expecting command </i>
137/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:794: warning: found </i> tag without matching <i>
138/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:794: warning: found </i> tag without matching <i>
139/home/william/Git/gnunet/src/my/my_result_helper.c:533: warning: expected whitespace after \a command
140/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
141/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
142/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
143/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
144/home/william/Git/gnunet/src/nat/gnunet-nat.c:72: warning: explicit link request to 'bind_addr' could not be resolved
145/home/william/Git/gnunet/src/reclaim/did.h:38: warning: Unsupported xml/html tag <pubkey> found
146/home/william/Git/gnunet/src/reclaim/did.h:27: warning: Unsupported xml/html tag <pubkey> found
147/home/william/Git/gnunet/src/reclaim/did.h:27: warning: Unsupported xml/html tag <pubkey> found
148/home/william/Git/gnunet/src/reclaim/did.h:38: warning: Unsupported xml/html tag <pubkey> found
149/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim_tickets.c:1671: warning: Found unknown command '\GNUNET_GNSRECORD_TYPE_RECLAIM_TICKET'
150/home/william/Git/gnunet/src/reclaim/reclaim_api.c:1479: warning: explicit link request to 'GNUNET_RECLAIM_get_credential_start' could not be resolved
151/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
152/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
153/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:2566: warning: explicit link request to 'pull_map' could not be resolved
154/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:1469: warning: explicit link request to 'valid_peers' could not be resolved
155/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:2210: warning: explicit link request to 'view' could not be resolved
156/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:1665: warning: explicit link request to 'valid_peers' could not be resolved
157/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:2197: warning: explicit link request to 'view' could not be resolved
158/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:1639: warning: explicit link request to 'initialise_peers' could not be resolved
159/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:1572: warning: explicit link request to 'valid_peers' could not be resolved
160/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
161/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
162/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
163/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
164/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
165/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
166/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
167/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
168/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
169/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
170/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
171/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
172/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
173/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
174/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
175/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
176/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
177/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
178/home/william/Git/gnunet/src/testbed/testbed.h:739: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_UNDERLAYLINKMODELMSG' could not be resolved
179/home/william/Git/gnunet/src/testbed/testbed_api.c:333: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_ADDHOSTCONFIRM' could not be resolved
180/home/william/Git/gnunet/src/testbed/testbed_api.c:361: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_ADDHOSTCONFIRM' could not be resolved
181/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
182/home/william/Git/gnunet/src/testing/testing_api_loop.c:516: warning: explicit link request to 'EXIT_FAILURE' could not be resolved
183/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
184/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
185/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
186/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
187/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
188/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
189/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
190/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
191/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
192/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
193/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:1191: warning: explicit link request to 'receiver_heap' could not be resolved
194/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:1191: warning: explicit link request to 'sender_heap' could not be resolved
195/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:2142: warning: explicit link request to 'PMT_FRAGMENT_BOx' could not be resolved
196/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
197/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
198/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
199/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:3252: warning: Found unknown command '\dvh'
200/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
201/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:7555: warning: Found unknown command '\ea'
202/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
203/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
204/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
205/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
206/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
207/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
208/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
209/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
210/home/william/Git/gnunet/src/transport/plugin_transport_tcp.c:293: warning: explicit link request to 'LEGACY_SERVICE_shutdown()' could not be resolved
211/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
212/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
213/home/william/Git/gnunet/src/util/configuration.c:137: warning: Found unknown command '\inline'
214/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
215/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
216/home/william/Git/gnunet/src/zonemaster/gnunet-service-zonemaster.c:209: warning: explicit link request to 'put_interval' could not be resolved
217/home/william/Git/gnunet/src/abd/abd_serialization.c:143: warning: explicit link request to 'GNUNET_ABD_Credential' could not be resolved
218/home/william/Git/gnunet/src/abd/abd_serialization.c:172: warning: explicit link request to 'GNUNET_ABD_Credential' could not be resolved
219/home/william/Git/gnunet/src/abd/abd_serialization.c:264: warning: explicit link request to 'GNUNET_ABD_Credential' could not be resolved
220/home/william/Git/gnunet/src/abd/abd_serialization.c:296: warning: explicit link request to 'GNUNET_ABD_Credential' could not be resolved
221/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
222/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
223/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
224/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
225/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
226/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
227/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
228/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
229/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
230/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
231/home/william/Git/gnunet/src/abd/abd_serialization.c:270: warning: explicit link request to 'GNUNET_ABD_Credential' could not be resolved
232/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
233/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
234/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
235/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
236/home/william/Git/gnunet/src/abd/abd_serialization.c:304: warning: explicit link request to 'GNUNET_ABD_Credential' could not be resolved
237/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
238/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
239/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
240/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
241/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
242/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
243/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
244/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
245/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
246/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
247/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
248/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
249/home/william/Git/gnunet/src/abd/abd_serialization.c:143: warning: explicit link request to 'GNUNET_ABD_Credential' could not be resolved
250/home/william/Git/gnunet/src/abd/abd_serialization.c:172: warning: explicit link request to 'GNUNET_ABD_Credential' could not be resolved
251/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)
252/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)
253/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
254/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)
255/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:
256 parameter 'request'
257/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)
258/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:
259 parameter 'client'
260/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
261/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
262/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
263/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
264/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
265/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
266/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
267/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
268/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
269/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
270/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
271/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
272/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
273/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)
274/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
275/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)
276/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:
277 parameter 'msg'
278/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)
279/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
280/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
281/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
282/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
283/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
284/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
285/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)
286/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
287/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
288/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
289/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
290/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)
291/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)
292/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
293/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)
294/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
295/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
296/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
297/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
298/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)
299/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
300/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)
301/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:
302 parameter 'cls'
303/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)
304/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)
305/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:
306 parameter 'cls'
307/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)
308/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)
309/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)
310/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:
311 parameter 'cls'
312/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)
313/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:
314 parameter 'cls'
315/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)
316/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:
317 parameter 'cls'
318/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)
319/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:
320 parameter 'cls'
321/home/william/Git/gnunet/src/cadet/cadet_api_drop_message.c:30: warning: End of list marker found without any preceding list items
322/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)
323/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:
324 parameter 'msg'
325/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
326/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
327/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
328/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)
329/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)
330/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:
331 parameter 'channel'
332 parameter 'ping'
333/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)
334/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:
335 parameter 'port'
336/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)
337/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:
338 parameter 'service'
339/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
340/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
341/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
342/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
343/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
344/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.c:1201: warning: Found unknown command '\e1'
345/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.c:1201: warning: Found unknown command '\e2'
346/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.c:1706: warning: Found unknown command '\e1'
347/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.c:1706: warning: Found unknown command '\e2'
348/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
349/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
350/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)
351/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
352/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
353/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
354/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
355/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
356/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
357/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
358/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)
359/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)
360/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
361/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
362/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
363/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
364/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
365/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
366/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
367/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
368/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
369/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
370/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
371/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
372/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
373/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
374/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
375/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)
376/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:
377 parameter 'cid'
378/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:
379 parameter 'cid'
380/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:
381 parameter 'cid'
382/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.c:982: warning: explicit link request to 'GCC_is_ready()' could not be resolved
383/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)
384/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
385/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
386/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
387/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
388/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
389/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
390/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:
391 parameter 'cid'
392/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.c:982: warning: explicit link request to 'GCC_is_ready()' could not be resolved
393/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
394/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.c:993: warning: explicit link request to 'GCC_is_ready()' could not be resolved
395/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
396/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
397/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
398/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)
399/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)
400/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
401/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)
402/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)
403/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
404/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
405/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:
406 parameter 'priority'
407/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)
408/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:
409 parameter 'ready'
410/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:
411 parameter 'mq'
412/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:
413 parameter 'peer_cls'
414/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)
415/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:
416 parameter 'id'
417/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_paths.c:310: warning: explicit link request to 'find_peer_at()' could not be resolved
418/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_paths.c:471: warning: documented empty return type of GCPP_try_path_from_dht
419/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
420/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
421/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
422/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
423/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_paths.h:46: warning: documented empty return type of GCPP_try_path_from_dht
424/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)
425/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
426/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
427/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
428/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
429/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
430/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)
431/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
432/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
433/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
434/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
435/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
436/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
437/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
438/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
439/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
440/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
441/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
442/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
443/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
444/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
445/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
446/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
447/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
448/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
449/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
450/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)
451/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)
452/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)
453/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:
454 parameter 'msg'
455/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)
456/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)
457/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:
458 parameter 'ax'
459/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)
460/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)
461/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:
462 parameter 't'
463 parameter 'p'
464/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)
465/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)
466/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:
467 parameter 'ctn'
468/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)
469/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
470/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
471/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
472/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)
473/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)
474/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:
475 parameter 't'
476 parameter 'p'
477/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
478/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
479/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)
480/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
481/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
482/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
483/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
484/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:
485 parameter 'ctn'
486/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)
487/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
488/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
489/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
490/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
491/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)
492/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)
493/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:
494 parameter 'hang'
495/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
496/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
497/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)
498/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:
499 parameter 'am'
500/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)
501/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:
502 parameter 'am'
503/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:
504 parameter 'cls'
505/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:
506 parameter 'cls'
507/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:
508 parameter 'cls'
509/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)
510/home/william/Git/gnunet/src/core/gnunet-service-core.c:380: warning: explicit link request to 'client_tokenizer_callback()' could not be resolved
511/home/william/Git/gnunet/src/core/gnunet-service-core_kx.c:491: warning: Illegal command @return as part of a \a command
512/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:
513 parameter 'mq'
514/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)
515/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:
516 parameter 'cls'
517/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)
518/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:
519 parameter 'kxinfo'
520/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
521/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
522/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
523/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)
524/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:
525 parameter 'kxinfo'
526/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)
527/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
528/home/william/Git/gnunet/src/core/gnunet-service-core_sessions.c:477: warning: explicit link request to 'GSC_SESSIONS_dequeue()' could not be resolved
529/home/william/Git/gnunet/src/core/gnunet-service-core_sessions.c:478: warning: explicit link request to 'GSC_CLIENTS_failed()' could not be resolved
530/home/william/Git/gnunet/src/core/gnunet-service-core_sessions.c:483: warning: explicit link request to 'GSC_SESSIONS_dequeue()' could not be resolved
531/home/william/Git/gnunet/src/core/gnunet-service-core_sessions.c:484: warning: explicit link request to 'GSC_CLIENTS_failed()' could not be resolved
532/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
533/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
534/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
535/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
536/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
537/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
538/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
539/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
540/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
541/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
542/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
543/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
544/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
545/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)
546/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:
547 parameter 'num_results'
548/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)
549/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:
550 parameter 'num_results'
551/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)
552/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:
553 parameter 'zSql'
554/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)
555/home/william/Git/gnunet/src/datastore/datastore_api.c:284: warning: The following parameter of delay_warning(void *cls) is not documented:
556 parameter 'cls'
557/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)
558/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:
559 parameter 'msg'
560/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)
561/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:
562 parameter 'msg'
563/home/william/Git/gnunet/src/datastore/gnunet-service-datastore.c:727: warning: explicit link request to 'GNUNET_SYSERROR' could not be resolved
564/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)
565/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:
566 parameter 'dm'
567/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)
568/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:
569 parameter 'dm'
570/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)
571/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:
572 parameter 'msg'
573/home/william/Git/gnunet/src/datastore/gnunet-service-datastore.c:989: warning: explicit link request to 'GNUNET_SYSERROR' could not be resolved
574/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)
575/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:
576 parameter 'dm'
577/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)
578/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)
579/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:
580 parameter 'dm'
581/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:
582 parameter 'estimate'
583/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:
584 parameter 'estimate'
585/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:
586 parameter 'estimate'
587/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)
588/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:
589 parameter 'num_results'
590/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:
591 parameter 'estimate'
592/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:
593 parameter 'estimate'
594/home/william/Git/gnunet/src/dht/gnunet-dht-put.c:59: warning: explicit link request to 'GNUNET_DHT_DEMULTIPLEX_EVERYWHERE' could not be resolved
595/home/william/Git/gnunet/src/dht/gnunet-dht-put.c:59: warning: explicit link request to 'GNUNET_DHT_DEMULTIPLEX_EVERYWHERE' could not be resolved
596/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
597/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
598/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
599/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
600/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
601/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
602/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
603/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)
604/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:
605 parameter 'get'
606/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)
607/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:
608 parameter 'get'
609/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)
610/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:
611 parameter 'seen'
612/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)
613/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:
614 parameter 'seen'
615/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)
616/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:
617 parameter 'dht_stop_msg'
618/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)
619/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)
620/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
621/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.h:153: warning: Found unknown command '\para'
622/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:
623 parameter 'pid'
624/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)
625/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)
626/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:
627 parameter 'put'
628/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)
629/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:
630 parameter 'put'
631/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)
632/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:
633 parameter 'query_hash'
634/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)
635/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:
636 parameter 'query_hash'
637/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)
638/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:
639 parameter 'prm'
640/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)
641/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:
642 parameter 'prm'
643/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)
644/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:
645 parameter 'hello'
646/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)
647/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)
648/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.h:153: warning: Found unknown command '\para'
649/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:
650 parameter 'pid'
651/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)
652/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)
653/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)
654/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)
655/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)
656/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
657/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
658/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
659/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
660/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
661/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
662/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
663/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)
664/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:
665 parameter 'cls'
666/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)
667/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)
668/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:
669 parameter 'ph'
670/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:
671 parameter 'mq'
672/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)
673/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:
674 parameter 'err_msg'
675/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)
676/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)
677/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)
678/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:
679 parameter 'ph'
680/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)
681/home/william/Git/gnunet/src/dns/dns_api.c:202: warning: argument 'cls' from the argument list of reconnect has multiple @param documentation sections
682/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)
683/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:
684 parameter 'req'
685/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)
686/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)
687/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:
688 parameter 'cls'
689/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)
690/home/william/Git/gnunet/src/exit/gnunet-daemon-exit.c:3513: warning: explicit link request to 'udp_services' could not be resolved
691/home/william/Git/gnunet/src/exit/gnunet-daemon-exit.c:3513: warning: explicit link request to 'tcp_services' could not be resolved
692/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)
693/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:
694 parameter 'data'
695/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)
696/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:
697 parameter 'data'
698/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)
699/home/william/Git/gnunet/src/exit/gnunet-daemon-exit.c:3513: warning: explicit link request to 'udp_services' could not be resolved
700/home/william/Git/gnunet/src/exit/gnunet-daemon-exit.c:3513: warning: explicit link request to 'tcp_services' could not be resolved
701/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
702/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
703/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
704/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
705/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
706/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
707/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
708/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
709/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
710/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
711/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
712/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
713/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
714/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
715/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
716/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
717/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
718/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
719/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
720/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
721/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
722/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
723/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
724/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
725/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
726/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
727/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)
728/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:
729 parameter 'cm'
730/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)
731/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:
732 parameter 'cm'
733/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)
734/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
735/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
736/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
737/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
738/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
739/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
740/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
741/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
742/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
743/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
744/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
745/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
746/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
747/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
748/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
749/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
750/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
751/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
752/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
753/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
754/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
755/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
756/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
757/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)
758/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:
759 parameter 'cm'
760/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)
761/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:
762 parameter 'cm'
763/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)
764/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
765/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
766/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
767/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
768/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
769/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
770/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
771/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
772/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
773/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
774/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
775/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
776/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
777/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
778/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
779/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
780/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
781/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
782/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
783/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
784/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
785/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
786/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
787/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
788/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
789/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
790/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
791/home/william/Git/gnunet/src/fs/gnunet-service-fs.c:381: warning: explicit link request to 'GSF_pending_request_cancel()' could not be resolved
792/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)
793/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:
794 parameter 'put'
795/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)
796/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:
797 parameter 'ism'
798/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)
799/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:
800 parameter 'um'
801/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)
802/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)
803/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)
804/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
805/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
806/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
807/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
808/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)
809/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)
810/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
811/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
812/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
813/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
814/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
815/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
816/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
817/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
818/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
819/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
820/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
821/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
822/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
823/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
824/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
825/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
826/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
827/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
828/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
829/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
830/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
831/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
832/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
833/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
834/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
835/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
836/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
837/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
838/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
839/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
840/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
841/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
842/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
843/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
844/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
845/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
846/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
847/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
848/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
849/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
850/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
851/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
852/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
853/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
854/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
855/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
856/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
857/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
858/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
859/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
860/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
861/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)
862/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:
863 parameter 'mrp'
864/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
865/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
866/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)
867/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
868/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)
869/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:
870 parameter 'cls'
871/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)
872/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)
873/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:
874 parameter 'lookup_msg'
875/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)
876/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:
877 parameter 'lookup_msg'
878/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:
879 parameter 'ltr'
880/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)
881/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)
882/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)
883/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:
884 parameter 'priv'
885 parameter 'ego_name'
886/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
887/home/william/Git/gnunet/src/gns/gnunet-gns-proxy.c:1777: warning: explicit link request to 'MHD_YES' could not be resolved
888/home/william/Git/gnunet/src/gns/gnunet-gns-proxy.c:1825: warning: explicit link request to 'MHD_YES' could not be resolved
889/home/william/Git/gnunet/src/gns/gnunet-gns-proxy.c:1826: warning: explicit link request to 'MHD_NO' could not be resolved
890/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)
891/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:
892 parameter 'cnc'
893/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
894/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)
895/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)
896/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)
897/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:
898 parameter 'sh_msg'
899/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)
900/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:
901 parameter 'service'
902/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
903/home/william/Git/gnunet/src/gns/gnunet-service-gns_resolver.c:735: warning: explicit link request to 'LSD0001' could not be resolved
904/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)
905/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
906/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
907/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
908/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
909/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
910/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
911/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
912/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
913/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
914/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
915/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
916/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
917/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
918/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
919/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
920/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
921/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)
922/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)
923/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)
924/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:
925 parameter 'cls'
926/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)
927/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)
928/home/william/Git/gnunet/src/gns/plugin_rest_gns.c:165: warning: The following parameter of cleanup_handle(void *cls) is not documented:
929 parameter 'cls'
930/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)
931/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)
932/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)
933/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)
934/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:
935 parameter 'rest_handle'
936/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)
937/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)
938/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:
939 parameter 'ctr'
940 parameter 'key'
941 parameter 'exp'
942/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)
943/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:
944 parameter 'key'
945 parameter 'exp'
946/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)
947/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)
948/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:
949 parameter 'ctr'
950 parameter 'key'
951 parameter 'exp'
952/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)
953/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:
954 parameter 'key'
955 parameter 'exp'
956/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:661: warning: explicit link request to 'GNUNET_GNSRECORD_PublicKey' could not be resolved
957/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)
958/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)
959/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)
960/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)
961/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:
962 parameter 'rd'
963 parameter 'rd_count'
964 parameter 'label'
965/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)
966/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)
967/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)
968/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)
969/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:
970 parameter 'rd'
971 parameter 'rd_count'
972 parameter 'label'
973/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)
974/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)
975/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)
976/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:
977 parameter 'data'
978 parameter 'rd'
979/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)
980/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)
981/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)
982/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:
983 parameter 'gnsrecord_info'
984 parameter 'data'
985/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:
986 parameter 'internal_cls'
987/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)
988/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
989/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:
990 parameter 'internal_cls'
991/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)
992/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_server.c:290: warning: explicit link request to 'MHD_NO' could not be resolved
993/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_server.c:295: warning: explicit link request to 'MHD_YES' could not be resolved
994/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_server.c:295: warning: explicit link request to 'MHD_NO' could not be resolved
995/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
996/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
997/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
998/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
999/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_server.c:341: warning: explicit link request to 'MHD_RequestCompletedCallback' could not be resolved
1000/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
1001/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_server.c:344: warning: explicit link request to 'MHD_YES' could not be resolved
1002/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_server.c:345: warning: explicit link request to 'MHD_NO' could not be resolved
1003/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)
1004/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)
1005/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)
1006/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:
1007 parameter 'mq'
1008/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)
1009/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)
1010/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:
1011 parameter 'gdm'
1012/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)
1013/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)
1014/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:
1015 parameter 'sdm'
1016/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)
1017/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)
1018/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:
1019 parameter 'crm'
1020/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)
1021/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)
1022/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:
1023 parameter 'rm'
1024/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)
1025/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)
1026/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:
1027 parameter 'dm'
1028/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)
1029/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:
1030 parameter 'service'
1031/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)
1032/home/william/Git/gnunet/src/identity/plugin_rest_identity.c:279: warning: The following parameter of cleanup_handle(void *cls) is not documented:
1033 parameter 'cls'
1034/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)
1035/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:
1036 parameter 'pk'
1037/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)
1038/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)
1039/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)
1040/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)
1041/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:
1042 parameter 'rest_handle'
1043/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:661: warning: explicit link request to 'GNUNET_GNSRECORD_PublicKey' could not be resolved
1044/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)
1045/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:
1046 parameter 'error_line'
1047/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)
1048/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:
1049 parameter 't'
1050/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
1051/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)
1052/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:
1053 parameter 'json'
1054/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:794: warning: found </i> tag without matching <i>
1055/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:794: warning: found </i> tag without matching <i>
1056/home/william/Git/gnunet/src/include/gnunet_mhd_compat.h:25: warning: explicit link request to 'MHD_VERSION' could not be resolved
1057/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:601: warning: end of comment block while expecting command </code>
1058/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
1059[generated]:5: warning: found </tt> tag without matching <tt>
1060[generated]:39: warning: end of comment block while expecting command </code>
1061/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
1062/home/william/Git/gnunet/src/include/gnunet_my_lib.h:470: warning: explicit link request to 'GNUNET_MY_exect_prepared()' could not be resolved
1063/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:119: warning: Found unknown command '\oaran'
1064/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:
1065 parameter 'ptr_size'
1066/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)
1067/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:
1068 parameter 't'
1069/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
1070/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
1071/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
1072/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
1073/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
1074/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
1075/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)
1076/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
1077/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:896: warning: Found unknown command '\es'
1078/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:925: warning: Found unknown command '\es'
1079/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
1080/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
1081/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
1082/home/william/Git/gnunet/src/include/gnunet_sq_lib.h:92: warning: Found unknown command '\oaran'
1083/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:
1084 parameter 'ptr_size'
1085/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)
1086/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)
1087/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
1088/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:
1089 parameter 'stmt'
1090/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
1091/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
1092/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
1093/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:
1094 parameter 'testdir'
1095/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
1096/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
1097/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)
1098/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)
1099/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)
1100/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)
1101/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
1102/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)
1103/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
1104/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
1105/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)
1106/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:
1107 parameter 'command'
1108/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)
1109/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:
1110 parameter 'command'
1111/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
1112/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
1113/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
1114/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
1115/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)
1116/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:
1117 parameter 'error_line'
1118/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)
1119/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:
1120 parameter 'json'
1121/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)
1122/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:
1123 parameter 't'
1124/home/william/Git/gnunet/src/json/json_mhd.c:253: warning: explicit link request to 'GNUNET_JSON_post_parser_callback()' could not be resolved
1125/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)
1126/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)
1127/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:
1128 parameter 'cls'
1129/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)
1130/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)
1131/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:110: warning: The following parameter of shutdown_hook(void *cls) is not documented:
1132 parameter 'cls'
1133/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)
1134/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)
1135/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:190: warning: The following parameter of listen_stdio(void *cls) is not documented:
1136 parameter 'cls'
1137/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)
1138/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)
1139/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:150: warning: The following parameter of read_stdio(void *cls) is not documented:
1140 parameter 'cls'
1141/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)
1142/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)
1143/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:211: warning: The following parameter of idle(void *cls) is not documented:
1144 parameter 'cls'
1145/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)
1146/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)
1147/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)
1148/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)
1149/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:
1150 parameter 'cls'
1151 parameter 'handle'
1152/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)
1153/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)
1154/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:
1155 parameter 'cls'
1156/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:314: warning: explicit link request to 'EXIT_SUCCESS' could not be resolved
1157/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:314: warning: explicit link request to 'EXIT_FAILURE' could not be resolved
1158/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)
1159/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)
1160/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)
1161/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)
1162/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:
1163 parameter 'cls'
1164 parameter 'service'
1165/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:184: warning: end of comment block while expecting command </i>
1166/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:184: warning: end of comment block while expecting command </i>
1167/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)
1168/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)
1169/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:
1170 parameter 'store'
1171/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)
1172/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)
1173/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:
1174 parameter 'store'
1175/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)
1176/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)
1177/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)
1178/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)
1179/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:
1180 parameter 'store'
1181 parameter 'handle'
1182/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)
1183/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)
1184/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)
1185/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)
1186/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:
1187 parameter 'store'
1188 parameter 'handle'
1189/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)
1190/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)
1191/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:
1192 parameter 'store'
1193/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)
1194/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)
1195/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:
1196 parameter 'store'
1197/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)
1198/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)
1199/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:
1200 parameter 'store'
1201/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:184: warning: end of comment block while expecting command </i>
1202/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:184: warning: end of comment block while expecting command </i>
1203/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)
1204/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)
1205/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:
1206 parameter 'store'
1207/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)
1208/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)
1209/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:
1210 parameter 'store'
1211/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:184: warning: end of comment block while expecting command </i>
1212/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:184: warning: end of comment block while expecting command </i>
1213/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)
1214/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)
1215/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:
1216 parameter 'store'
1217/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)
1218/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)
1219/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:
1220 parameter 'store'
1221/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)
1222/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)
1223/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)
1224/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)
1225/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:
1226 parameter 'store'
1227 parameter 'handle'
1228/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)
1229/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)
1230/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)
1231/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)
1232/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:
1233 parameter 'store'
1234 parameter 'handle'
1235/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)
1236/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)
1237/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:
1238 parameter 'store'
1239/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)
1240/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)
1241/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:
1242 parameter 'store'
1243/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)
1244/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)
1245/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:
1246 parameter 'store'
1247/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:184: warning: end of comment block while expecting command </i>
1248/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:184: warning: end of comment block while expecting command </i>
1249/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)
1250/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)
1251/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:
1252 parameter 'store'
1253/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)
1254/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)
1255/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:
1256 parameter 'store'
1257/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)
1258/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)
1259/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)
1260/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)
1261/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:
1262 parameter 'service'
1263 parameter 'mq'
1264/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)
1265/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)
1266/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:
1267 parameter 'handle'
1268/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)
1269/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)
1270/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:
1271 parameter 'handle'
1272/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)
1273/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)
1274/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:
1275 parameter 'handle'
1276/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)
1277/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)
1278/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:
1279 parameter 'handle'
1280/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)
1281/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)
1282/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:
1283 parameter 'handle'
1284/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)
1285/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)
1286/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:
1287 parameter 'handle'
1288/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)
1289/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)
1290/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:
1291 parameter 'handle'
1292/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)
1293/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)
1294/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:
1295 parameter 'handle'
1296/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)
1297/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)
1298/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:
1299 parameter 'handle'
1300/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)
1301/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)
1302/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:
1303 parameter 'handle'
1304/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)
1305/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)
1306/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:
1307 parameter 'handle'
1308/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)
1309/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)
1310/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)
1311/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)
1312/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:
1313 parameter 'service'
1314 parameter 'mq'
1315/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)
1316/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)
1317/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:
1318 parameter 'handle'
1319/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)
1320/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)
1321/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:
1322 parameter 'handle'
1323/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)
1324/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)
1325/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:
1326 parameter 'handle'
1327/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)
1328/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)
1329/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:
1330 parameter 'handle'
1331/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)
1332/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)
1333/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:
1334 parameter 'handle'
1335/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)
1336/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)
1337/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:
1338 parameter 'handle'
1339/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)
1340/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)
1341/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:
1342 parameter 'handle'
1343/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)
1344/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)
1345/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:
1346 parameter 'handle'
1347/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)
1348/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)
1349/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:
1350 parameter 'handle'
1351/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)
1352/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)
1353/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:
1354 parameter 'handle'
1355/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)
1356/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)
1357/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:
1358 parameter 'handle'
1359/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)
1360/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)
1361/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:
1362 parameter 'handles'
1363/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)
1364/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)
1365/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)
1366/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)
1367/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:
1368 parameter 'handles'
1369 parameter 'handle'
1370/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)
1371/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)
1372/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)
1373/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)
1374/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:
1375 parameter 'handles'
1376 parameter 'handle'
1377/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)
1378/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)
1379/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:
1380 parameter 'handles'
1381/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)
1382/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)
1383/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)
1384/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)
1385/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:
1386 parameter 'handles'
1387 parameter 'handle'
1388/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)
1389/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)
1390/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)
1391/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)
1392/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:
1393 parameter 'handles'
1394 parameter 'handle'
1395/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)
1396/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)
1397/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:
1398 parameter 'messages'
1399/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)
1400/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)
1401/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:
1402 parameter 'messages'
1403/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)
1404/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)
1405/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:
1406 parameter 'messages'
1407/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)
1408/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)
1409/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:
1410 parameter 'messages'
1411/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)
1412/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)
1413/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:
1414 parameter 'messages'
1415/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)
1416/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)
1417/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:
1418 parameter 'messages'
1419/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)
1420/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)
1421/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:
1422 parameter 'messages'
1423/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)
1424/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)
1425/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:
1426 parameter 'messages'
1427/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)
1428/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)
1429/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:
1430 parameter 'store'
1431/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)
1432/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)
1433/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:
1434 parameter 'member'
1435/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)
1436/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)
1437/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:
1438 parameter 'member'
1439/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)
1440/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)
1441/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:
1442 parameter 'member'
1443/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)
1444/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)
1445/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)
1446/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)
1447/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:
1448 parameter 'member'
1449 parameter 'session'
1450/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)
1451/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)
1452/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)
1453/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)
1454/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:
1455 parameter 'member'
1456 parameter 'session'
1457/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)
1458/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)
1459/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)
1460/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)
1461/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:
1462 parameter 'member'
1463 parameter 'cls'
1464/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)
1465/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)
1466/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:
1467 parameter 'store'
1468/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)
1469/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)
1470/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:
1471 parameter 'member'
1472/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)
1473/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)
1474/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:
1475 parameter 'member'
1476/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)
1477/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)
1478/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:
1479 parameter 'member'
1480/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)
1481/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)
1482/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)
1483/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)
1484/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:
1485 parameter 'member'
1486 parameter 'session'
1487/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)
1488/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)
1489/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)
1490/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)
1491/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:
1492 parameter 'member'
1493 parameter 'session'
1494/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)
1495/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)
1496/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)
1497/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)
1498/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:
1499 parameter 'member'
1500 parameter 'cls'
1501/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)
1502/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)
1503/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:
1504 parameter 'member'
1505/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)
1506/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)
1507/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:
1508 parameter 'session'
1509/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)
1510/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)
1511/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:
1512 parameter 'session'
1513/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)
1514/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)
1515/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:
1516 parameter 'session'
1517/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)
1518/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)
1519/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:
1520 parameter 'session'
1521/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)
1522/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)
1523/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:
1524 parameter 'session'
1525/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)
1526/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)
1527/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:
1528 parameter 'session'
1529/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)
1530/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)
1531/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:
1532 parameter 'session'
1533/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)
1534/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)
1535/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:
1536 parameter 'member'
1537/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)
1538/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)
1539/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:
1540 parameter 'session'
1541/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)
1542/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)
1543/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:
1544 parameter 'session'
1545/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)
1546/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)
1547/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:
1548 parameter 'session'
1549/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)
1550/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)
1551/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:
1552 parameter 'session'
1553/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)
1554/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)
1555/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:
1556 parameter 'session'
1557/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)
1558/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)
1559/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:
1560 parameter 'session'
1561/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)
1562/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)
1563/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:
1564 parameter 'session'
1565/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)
1566/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)
1567/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:
1568 parameter 'store'
1569/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)
1570/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)
1571/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:
1572 parameter 'store'
1573/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)
1574/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)
1575/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:
1576 parameter 'store'
1577/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)
1578/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)
1579/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:
1580 parameter 'store'
1581/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)
1582/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)
1583/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)
1584/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)
1585/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:
1586 parameter 'store'
1587 parameter 'cls'
1588/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)
1589/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)
1590/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:
1591 parameter 'store'
1592/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)
1593/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)
1594/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:
1595 parameter 'store'
1596/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)
1597/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)
1598/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:
1599 parameter 'store'
1600/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)
1601/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)
1602/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:
1603 parameter 'store'
1604/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)
1605/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)
1606/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)
1607/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)
1608/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:
1609 parameter 'store'
1610 parameter 'cls'
1611/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)
1612/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)
1613/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)
1614/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)
1615/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:
1616 parameter 'room'
1617 parameter 'session'
1618/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)
1619/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)
1620/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)
1621/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)
1622/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:
1623 parameter 'room'
1624 parameter 'session'
1625/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)
1626/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)
1627/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)
1628/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)
1629/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:
1630 parameter 'room'
1631 parameter 'session'
1632/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)
1633/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)
1634/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)
1635/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)
1636/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:
1637 parameter 'room'
1638 parameter 'session'
1639/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)
1640/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)
1641/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)
1642/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)
1643/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:
1644 parameter 'room'
1645 parameter 'session'
1646/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)
1647/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)
1648/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)
1649/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)
1650/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:
1651 parameter 'room'
1652 parameter 'session'
1653/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)
1654/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)
1655/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)
1656/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)
1657/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:
1658 parameter 'room'
1659 parameter 'session'
1660/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)
1661/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)
1662/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)
1663/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)
1664/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:
1665 parameter 'room'
1666 parameter 'session'
1667/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)
1668/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)
1669/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)
1670/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)
1671/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:
1672 parameter 'room'
1673 parameter 'session'
1674/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)
1675/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)
1676/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)
1677/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)
1678/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:
1679 parameter 'room'
1680 parameter 'session'
1681/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)
1682/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)
1683/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)
1684/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)
1685/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:
1686 parameter 'room'
1687 parameter 'session'
1688/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)
1689/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)
1690/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)
1691/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)
1692/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:
1693 parameter 'room'
1694 parameter 'session'
1695/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)
1696/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)
1697/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)
1698/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)
1699/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:
1700 parameter 'room'
1701 parameter 'session'
1702/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)
1703/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)
1704/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)
1705/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)
1706/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:
1707 parameter 'room'
1708 parameter 'session'
1709/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)
1710/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)
1711/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)
1712/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)
1713/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:
1714 parameter 'room'
1715 parameter 'session'
1716/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)
1717/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)
1718/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)
1719/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)
1720/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:
1721 parameter 'room'
1722 parameter 'session'
1723/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_kind.h:153: warning: end of comment block while expecting command </i>
1724/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)
1725/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_kind.h:153: warning: end of comment block while expecting command </i>
1726/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_kind.h:153: warning: end of comment block while expecting command </i>
1727/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)
1728/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_kind.h:153: warning: end of comment block while expecting command </i>
1729/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)
1730/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)
1731/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)
1732/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)
1733/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:
1734 parameter 'room'
1735 parameter 'tunnel'
1736/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)
1737/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)
1738/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)
1739/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)
1740/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:
1741 parameter 'room'
1742 parameter 'tunnel'
1743/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)
1744/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)
1745/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)
1746/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)
1747/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:
1748 parameter 'room'
1749 parameter 'tunnel'
1750/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)
1751/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)
1752/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)
1753/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)
1754/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:
1755 parameter 'room'
1756 parameter 'tunnel'
1757/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)
1758/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)
1759/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)
1760/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)
1761/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:
1762 parameter 'room'
1763 parameter 'tunnel'
1764/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)
1765/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)
1766/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)
1767/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)
1768/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:
1769 parameter 'room'
1770 parameter 'tunnel'
1771/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)
1772/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)
1773/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)
1774/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)
1775/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:
1776 parameter 'room'
1777 parameter 'handle'
1778/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)
1779/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)
1780/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)
1781/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)
1782/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:
1783 parameter 'room'
1784 parameter 'handle'
1785/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)
1786/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)
1787/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)
1788/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)
1789/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:
1790 parameter 'room'
1791 parameter 'handle'
1792/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)
1793/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)
1794/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)
1795/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)
1796/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:
1797 parameter 'room'
1798 parameter 'handle'
1799/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)
1800/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)
1801/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)
1802/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)
1803/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:
1804 parameter 'room'
1805 parameter 'handle'
1806/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)
1807/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)
1808/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)
1809/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)
1810/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:
1811 parameter 'room'
1812 parameter 'handle'
1813/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)
1814/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)
1815/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)
1816/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)
1817/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:
1818 parameter 'room'
1819 parameter 'handle'
1820/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)
1821/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)
1822/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)
1823/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)
1824/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:
1825 parameter 'room'
1826 parameter 'handle'
1827/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)
1828/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)
1829/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:
1830 parameter 'store'
1831/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)
1832/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)
1833/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:
1834 parameter 'store'
1835/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)
1836/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)
1837/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:
1838 parameter 'store'
1839/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)
1840/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)
1841/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)
1842/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)
1843/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:
1844 parameter 'store'
1845 parameter 'message'
1846/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)
1847/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)
1848/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:
1849 parameter 'store'
1850/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)
1851/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)
1852/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:
1853 parameter 'store'
1854/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)
1855/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)
1856/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:
1857 parameter 'store'
1858/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)
1859/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)
1860/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:
1861 parameter 'store'
1862/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)
1863/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)
1864/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)
1865/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)
1866/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:
1867 parameter 'store'
1868 parameter 'message'
1869/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)
1870/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)
1871/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:
1872 parameter 'store'
1873/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)
1874/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)
1875/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:
1876 parameter 'op'
1877/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)
1878/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)
1879/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:
1880 parameter 'store'
1881/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)
1882/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)
1883/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)
1884/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)
1885/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:
1886 parameter 'op'
1887 parameter 'store'
1888/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)
1889/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)
1890/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:
1891 parameter 'op'
1892/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)
1893/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)
1894/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:
1895 parameter 'store'
1896/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)
1897/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)
1898/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)
1899/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)
1900/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:
1901 parameter 'op'
1902 parameter 'store'
1903/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)
1904/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)
1905/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:
1906 parameter 'room'
1907/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)
1908/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)
1909/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:
1910 parameter 'store'
1911/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)
1912/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)
1913/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:
1914 parameter 'store'
1915/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)
1916/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)
1917/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:
1918 parameter 'store'
1919/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)
1920/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)
1921/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:
1922 parameter 'room'
1923/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)
1924/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)
1925/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:
1926 parameter 'store'
1927/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)
1928/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)
1929/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:
1930 parameter 'store'
1931/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)
1932/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)
1933/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:
1934 parameter 'store'
1935/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)
1936/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)
1937/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:
1938 parameter 'handle'
1939/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)
1940/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)
1941/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:
1942 parameter 'room'
1943/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)
1944/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)
1945/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:
1946 parameter 'room'
1947/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)
1948/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)
1949/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:
1950 parameter 'room'
1951/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)
1952/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)
1953/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:
1954 parameter 'room'
1955/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)
1956/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)
1957/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)
1958/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)
1959/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:
1960 parameter 'room'
1961 parameter 'handle'
1962/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)
1963/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)
1964/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)
1965/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)
1966/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:
1967 parameter 'room'
1968 parameter 'handle'
1969/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)
1970/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)
1971/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:
1972 parameter 'message'
1973/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)
1974/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)
1975/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)
1976/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)
1977/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)
1978/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)
1979/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:
1980 parameter 'room'
1981 parameter 'handle'
1982 parameter 'message'
1983/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)
1984/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)
1985/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)
1986/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)
1987/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)
1988/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)
1989/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:
1990 parameter 'room'
1991 parameter 'tunnel'
1992 parameter 'message'
1993/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)
1994/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)
1995/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)
1996/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)
1997/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:
1998 parameter 'room'
1999 parameter 'tunnel'
2000/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)
2001/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)
2002/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)
2003/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)
2004/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:
2005 parameter 'room'
2006 parameter 'handle'
2007/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)
2008/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)
2009/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)
2010/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)
2011/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:
2012 parameter 'room'
2013 parameter 'session'
2014/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)
2015/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)
2016/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:
2017 parameter 'room'
2018/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:310: warning: explicit link request to 'NULL' could not be resolved
2019/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)
2020/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)
2021/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:
2022 parameter 'room'
2023 parameter 'session'
2024/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)
2025/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)
2026/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:
2027 parameter 'room'
2028/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)
2029/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)
2030/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:
2031 parameter 'room'
2032/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)
2033/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)
2034/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:
2035 parameter 'handle'
2036/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)
2037/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)
2038/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:
2039 parameter 'room'
2040/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)
2041/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)
2042/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:
2043 parameter 'room'
2044/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)
2045/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)
2046/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:
2047 parameter 'room'
2048/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)
2049/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)
2050/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:
2051 parameter 'room'
2052/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)
2053/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)
2054/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)
2055/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)
2056/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:
2057 parameter 'room'
2058 parameter 'handle'
2059/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)
2060/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)
2061/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)
2062/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)
2063/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:
2064 parameter 'room'
2065 parameter 'handle'
2066/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)
2067/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)
2068/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:
2069 parameter 'message'
2070/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)
2071/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)
2072/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)
2073/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)
2074/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)
2075/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)
2076/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:
2077 parameter 'room'
2078 parameter 'handle'
2079 parameter 'message'
2080/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)
2081/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)
2082/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)
2083/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)
2084/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)
2085/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)
2086/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:
2087 parameter 'room'
2088 parameter 'tunnel'
2089 parameter 'message'
2090/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)
2091/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)
2092/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)
2093/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)
2094/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:
2095 parameter 'room'
2096 parameter 'tunnel'
2097/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)
2098/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)
2099/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)
2100/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)
2101/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:
2102 parameter 'room'
2103 parameter 'handle'
2104/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)
2105/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)
2106/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)
2107/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)
2108/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:
2109 parameter 'room'
2110 parameter 'session'
2111/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)
2112/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)
2113/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:
2114 parameter 'room'
2115/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:310: warning: explicit link request to 'NULL' could not be resolved
2116/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)
2117/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)
2118/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:
2119 parameter 'room'
2120 parameter 'session'
2121/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)
2122/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)
2123/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:
2124 parameter 'room'
2125/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)
2126/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)
2127/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:
2128 parameter 'room'
2129/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)
2130/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)
2131/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:
2132 parameter 'service_handle'
2133/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)
2134/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)
2135/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:
2136 parameter 'service'
2137/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)
2138/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)
2139/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:
2140 parameter 'service'
2141/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)
2142/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)
2143/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:
2144 parameter 'service'
2145/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)
2146/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)
2147/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)
2148/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)
2149/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:
2150 parameter 'service'
2151 parameter 'mq'
2152/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)
2153/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)
2154/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)
2155/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)
2156/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:
2157 parameter 'service'
2158 parameter 'handle'
2159/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)
2160/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)
2161/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)
2162/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)
2163/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:
2164 parameter 'service'
2165 parameter 'handle'
2166/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)
2167/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)
2168/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)
2169/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)
2170/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:
2171 parameter 'service'
2172 parameter 'handle'
2173/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)
2174/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)
2175/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)
2176/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)
2177/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:
2178 parameter 'service'
2179 parameter 'handle'
2180/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)
2181/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)
2182/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)
2183/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)
2184/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:
2185 parameter 'service'
2186 parameter 'room'
2187/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)
2188/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)
2189/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:
2190 parameter 'service_handle'
2191/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)
2192/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)
2193/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:
2194 parameter 'service'
2195/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)
2196/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)
2197/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:
2198 parameter 'service'
2199/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)
2200/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)
2201/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:
2202 parameter 'service'
2203/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)
2204/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)
2205/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)
2206/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)
2207/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:
2208 parameter 'service'
2209 parameter 'mq'
2210/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)
2211/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)
2212/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)
2213/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)
2214/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:
2215 parameter 'service'
2216 parameter 'handle'
2217/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)
2218/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)
2219/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)
2220/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)
2221/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:
2222 parameter 'service'
2223 parameter 'handle'
2224/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)
2225/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)
2226/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)
2227/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)
2228/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:
2229 parameter 'service'
2230 parameter 'handle'
2231/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)
2232/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)
2233/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)
2234/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)
2235/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:
2236 parameter 'service'
2237 parameter 'handle'
2238/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)
2239/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)
2240/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)
2241/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)
2242/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:
2243 parameter 'service'
2244 parameter 'room'
2245/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)
2246/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)
2247/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:
2248 parameter 'room'
2249/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)
2250/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)
2251/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:
2252 parameter 'tunnel'
2253/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)
2254/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)
2255/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)
2256/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)
2257/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:
2258 parameter 'tunnel'
2259 parameter 'channel'
2260/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)
2261/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)
2262/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:
2263 parameter 'tunnel'
2264/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)
2265/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)
2266/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:
2267 parameter 'tunnel'
2268/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)
2269/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)
2270/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)
2271/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)
2272/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:
2273 parameter 'tunnel'
2274 parameter 'env'
2275/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)
2276/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)
2277/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)
2278/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)
2279/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)
2280/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)
2281/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:
2282 parameter 'tunnel'
2283 parameter 'handle'
2284 parameter 'message'
2285/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)
2286/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)
2287/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:
2288 parameter 'tunnel'
2289/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)
2290/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)
2291/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:
2292 parameter 'tunnel'
2293/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)
2294/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)
2295/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:
2296 parameter 'room'
2297/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)
2298/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)
2299/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:
2300 parameter 'tunnel'
2301/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)
2302/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)
2303/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)
2304/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)
2305/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:
2306 parameter 'tunnel'
2307 parameter 'channel'
2308/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)
2309/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)
2310/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:
2311 parameter 'tunnel'
2312/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)
2313/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)
2314/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:
2315 parameter 'tunnel'
2316/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)
2317/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)
2318/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)
2319/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)
2320/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:
2321 parameter 'tunnel'
2322 parameter 'env'
2323/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)
2324/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)
2325/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)
2326/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)
2327/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)
2328/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)
2329/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:
2330 parameter 'tunnel'
2331 parameter 'handle'
2332 parameter 'message'
2333/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)
2334/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)
2335/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:
2336 parameter 'tunnel'
2337/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)
2338/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)
2339/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:
2340 parameter 'tunnel'
2341/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:794: warning: found </i> tag without matching <i>
2342/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:794: warning: found </i> tag without matching <i>
2343/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)
2344/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)
2345/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:
2346 parameter 'contact'
2347/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)
2348/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)
2349/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:
2350 parameter 'contact'
2351/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)
2352/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)
2353/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:
2354 parameter 'contact'
2355/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)
2356/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)
2357/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:
2358 parameter 'contact'
2359/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)
2360/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:
2361 parameter 'context'
2362/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)
2363/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)
2364/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:
2365 parameter 'contact'
2366/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)
2367/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)
2368/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:
2369 parameter 'contact'
2370/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)
2371/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)
2372/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:
2373 parameter 'contact'
2374/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)
2375/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)
2376/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:
2377 parameter 'contact'
2378/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)
2379/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:
2380 parameter 'context'
2381/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)
2382/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)
2383/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:
2384 parameter 'store'
2385/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)
2386/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)
2387/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:
2388 parameter 'store'
2389/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)
2390/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)
2391/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:
2392 parameter 'store'
2393/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)
2394/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)
2395/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)
2396/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)
2397/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:
2398 parameter 'store'
2399 parameter 'contact'
2400/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)
2401/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)
2402/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)
2403/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)
2404/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:
2405 parameter 'store'
2406 parameter 'contact'
2407/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)
2408/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)
2409/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:
2410 parameter 'store'
2411/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)
2412/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)
2413/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:
2414 parameter 'store'
2415/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)
2416/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)
2417/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:
2418 parameter 'store'
2419/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)
2420/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)
2421/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)
2422/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)
2423/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:
2424 parameter 'store'
2425 parameter 'contact'
2426/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)
2427/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)
2428/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)
2429/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)
2430/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:
2431 parameter 'store'
2432 parameter 'contact'
2433/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)
2434/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)
2435/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:
2436 parameter 'identity_callback'
2437 parameter 'identity_cls'
2438 parameter 'msg_cls'
2439/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)
2440/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)
2441/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:
2442 parameter 'handle'
2443/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)
2444/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)
2445/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:
2446 parameter 'handle'
2447/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)
2448/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)
2449/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:
2450 parameter 'handle'
2451/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)
2452/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)
2453/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:
2454 parameter 'handle'
2455/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)
2456/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)
2457/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:
2458 parameter 'handle'
2459/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)
2460/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)
2461/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:
2462 parameter 'handle'
2463/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)
2464/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)
2465/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:
2466 parameter 'handle'
2467/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)
2468/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)
2469/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:
2470 parameter 'handle'
2471/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)
2472/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)
2473/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:
2474 parameter 'identity_callback'
2475 parameter 'identity_cls'
2476 parameter 'msg_cls'
2477/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)
2478/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)
2479/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:
2480 parameter 'handle'
2481/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)
2482/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)
2483/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:
2484 parameter 'handle'
2485/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)
2486/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)
2487/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:
2488 parameter 'handle'
2489/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)
2490/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)
2491/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:
2492 parameter 'handle'
2493/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)
2494/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)
2495/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:
2496 parameter 'handle'
2497/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)
2498/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)
2499/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:
2500 parameter 'handle'
2501/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)
2502/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)
2503/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:
2504 parameter 'handle'
2505/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)
2506/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)
2507/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:
2508 parameter 'handle'
2509/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)
2510/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)
2511/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:
2512 parameter 'tunnels'
2513/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)
2514/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)
2515/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:
2516 parameter 'tunnels'
2517/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)
2518/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)
2519/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:
2520 parameter 'tunnels'
2521/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)
2522/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)
2523/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:
2524 parameter 'tunnels'
2525/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)
2526/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)
2527/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)
2528/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)
2529/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:
2530 parameter 'tunnels'
2531 parameter 'element'
2532/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)
2533/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:
2534 parameter 'tunnels'
2535/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)
2536/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:
2537 parameter 'tunnels'
2538/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)
2539/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)
2540/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:
2541 parameter 'tunnels'
2542/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)
2543/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)
2544/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:
2545 parameter 'tunnels'
2546/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)
2547/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)
2548/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:
2549 parameter 'tunnels'
2550/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)
2551/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)
2552/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:
2553 parameter 'tunnels'
2554/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)
2555/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)
2556/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)
2557/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)
2558/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:
2559 parameter 'tunnels'
2560 parameter 'element'
2561/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)
2562/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:
2563 parameter 'tunnels'
2564/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)
2565/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:
2566 parameter 'tunnels'
2567/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)
2568/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)
2569/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:
2570 parameter 'message'
2571/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)
2572/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)
2573/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:
2574 parameter 'message'
2575/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)
2576/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)
2577/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:
2578 parameter 'message'
2579/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)
2580/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)
2581/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:
2582 parameter 'message'
2583/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)
2584/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)
2585/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:
2586 parameter 'message'
2587/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)
2588/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)
2589/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:
2590 parameter 'message'
2591/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)
2592/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)
2593/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:
2594 parameter 'message'
2595/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)
2596/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)
2597/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:
2598 parameter 'message'
2599/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)
2600/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)
2601/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:
2602 parameter 'message'
2603/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)
2604/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)
2605/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:
2606 parameter 'message'
2607/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)
2608/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)
2609/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:
2610 parameter 'handle'
2611/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)
2612/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)
2613/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:
2614 parameter 'room'
2615/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)
2616/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)
2617/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)
2618/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)
2619/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:
2620 parameter 'room'
2621 parameter 'sender'
2622/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)
2623/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)
2624/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)
2625/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)
2626/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:
2627 parameter 'room'
2628 parameter 'cls'
2629/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)
2630/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)
2631/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:
2632 parameter 'handle'
2633/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)
2634/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)
2635/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:
2636 parameter 'room'
2637/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)
2638/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)
2639/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)
2640/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)
2641/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:
2642 parameter 'room'
2643 parameter 'sender'
2644/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)
2645/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)
2646/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)
2647/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)
2648/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:
2649 parameter 'room'
2650 parameter 'cls'
2651/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)
2652/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)
2653/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:
2654 parameter 'channel'
2655/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)
2656/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)
2657/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:
2658 parameter 'channel'
2659/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)
2660/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:
2661 parameter 'cb_cls'
2662/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)
2663/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:
2664 parameter 'cb_cls'
2665/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)
2666/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:
2667 parameter 'cb_cls'
2668/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)
2669/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:
2670 parameter 'cb_cls'
2671/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)
2672/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:
2673 parameter 'qp'
2674/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)
2675/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:
2676 parameter 'qp'
2677/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)
2678/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:
2679 parameter 'qp'
2680/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)
2681/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:
2682 parameter 'qp'
2683/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)
2684/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:
2685 parameter 'qp'
2686/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)
2687/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:
2688 parameter 'qp'
2689/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)
2690/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:
2691 parameter 'qp'
2692/home/william/Git/gnunet/src/my/my_result_helper.c:533: warning: expected whitespace after \a command
2693/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)
2694/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:
2695 parameter 'results'
2696/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)
2697/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:
2698 parameter 'rs'
2699/home/william/Git/gnunet/src/my/my_result_helper.c:533: warning: expected whitespace after \a command
2700/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
2701/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
2702/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)
2703/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)
2704/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:
2705 parameter 'ln_msg'
2706/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)
2707/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)
2708/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:
2709 parameter 'cls'
2710 parameter 'key'
2711 parameter 'value'
2712/home/william/Git/gnunet/src/namestore/gnunet-namestore-fcfsd.c:1139: warning: Found unknown command '\parsm'
2713/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:
2714 parameter 'argv'
2715/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)
2716/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)
2717/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)
2718/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:
2719 parameter 'rs'
2720/home/william/Git/gnunet/src/namestore/gnunet-service-namestore.c:469: warning: explicit link request to 'GNUNET_GNSRECORD_TYPE_NICK' could not be resolved
2721/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)
2722/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)
2723/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)
2724/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:
2725 parameter 'nc'
2726 parameter 'emsg'
2727/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)
2728/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:
2729 parameter 'private_key'
2730/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)
2731/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:
2732 parameter 'zis_msg'
2733/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)
2734/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)
2735/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:
2736 parameter 'req'
2737/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)
2738/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)
2739/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:
2740 parameter 'cls'
2741/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)
2742/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)
2743/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:
2744 parameter 'cls'
2745/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)
2746/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)
2747/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:
2748 parameter 'res'
2749 parameter 'num_results'
2750/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)
2751/home/william/Git/gnunet/src/namestore/plugin_rest_namestore.c:286: warning: The following parameter of cleanup_handle(void *cls) is not documented:
2752 parameter 'cls'
2753/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)
2754/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)
2755/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:
2756 parameter 'cls'
2757 parameter 'zone_key'
2758 parameter 'rname'
2759 parameter 'rd_len'
2760 parameter 'rd'
2761/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)
2762/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)
2763/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)
2764/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)
2765/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:
2766 parameter 'rest_handle'
2767/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)
2768/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:
2769 parameter 'tm'
2770/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
2771/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
2772/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
2773/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
2774/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)
2775/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)
2776/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:
2777 parameter 'ret'
2778/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)
2779/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:
2780 parameter 'ret'
2781/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)
2782/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)
2783/home/william/Git/gnunet/src/nat/gnunet-nat.c:72: warning: explicit link request to 'bind_addr' could not be resolved
2784/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)
2785/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)
2786/home/william/Git/gnunet/src/nat/gnunet-nat.c:72: warning: explicit link request to 'bind_addr' could not be resolved
2787/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)
2788/home/william/Git/gnunet/src/nat/gnunet-service-nat.c:1307: warning: The following parameter of dyndns_lookup(void *cls) is not documented:
2789 parameter 'cls'
2790/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
2791/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
2792/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
2793/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
2794/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
2795/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
2796/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
2797/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
2798/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
2799/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
2800/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
2801/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
2802/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
2803/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
2804/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
2805/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
2806/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)
2807/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
2808/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:
2809 parameter 'mq'
2810/home/william/Git/gnunet/src/nse/gnunet-service-nse.c:1201: warning: Found unknown command '\parma'
2811/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:
2812 parameter 'internal_cls'
2813/home/william/Git/gnunet/src/nse/nse_api.c:132: warning: argument 'cls' from the argument list of reconnect has multiple @param documentation sections
2814/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
2815/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)
2816/home/william/Git/gnunet/src/peerinfo-tool/plugin_rest_peerinfo.c:279: warning: The following parameter of cleanup_handle(void *cls) is not documented:
2817 parameter 'cls'
2818/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)
2819/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)
2820/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)
2821/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)
2822/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:
2823 parameter 'rest_handle'
2824/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:
2825 parameter 'app_cls'
2826/home/william/Git/gnunet/src/peerstore/peerstore_api.c:808: warning: argument 'cls' from the argument list of reconnect has multiple @param documentation sections
2827/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
2828/home/william/Git/gnunet/src/peerstore/plugin_peerstore_sqlite.c:126: warning: explicit link request to 'GNUNE_SYSERR' could not be resolved
2829/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:896: warning: Found unknown command '\es'
2830/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:925: warning: Found unknown command '\es'
2831/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)
2832/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:
2833 parameter 'value'
2834/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
2835/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
2836/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
2837/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:119: warning: Found unknown command '\oaran'
2838/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:
2839 parameter 'ptr_size'
2840/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)
2841/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:
2842 parameter 't'
2843/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)
2844/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:
2845 parameter 'row'
2846/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)
2847/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:
2848 parameter 'row'
2849/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)
2850/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:
2851 parameter 'row'
2852/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)
2853/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:
2854 parameter 'row'
2855/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)
2856/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:
2857 parameter 'row'
2858/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)
2859/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:
2860 parameter 'row'
2861/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)
2862/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:
2863 parameter 'row'
2864/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)
2865/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:
2866 parameter 'row'
2867/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)
2868/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:
2869 parameter 'row'
2870/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)
2871/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:
2872 parameter 'row'
2873/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)
2874/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:
2875 parameter 'row'
2876/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)
2877/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:
2878 parameter 'row'
2879/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)
2880/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:
2881 parameter 'row'
2882/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)
2883/home/william/Git/gnunet/src/reclaim/did.h:27: warning: Unsupported xml/html tag <pubkey> found
2884/home/william/Git/gnunet/src/reclaim/did.h:38: warning: Unsupported xml/html tag <pubkey> found
2885/home/william/Git/gnunet/src/reclaim/did.h:27: warning: Unsupported xml/html tag <pubkey> found
2886/home/william/Git/gnunet/src/reclaim/did.h:38: warning: Unsupported xml/html tag <pubkey> found
2887/home/william/Git/gnunet/src/reclaim/did.h:27: warning: Unsupported xml/html tag <pubkey> found
2888/home/william/Git/gnunet/src/reclaim/did.h:38: warning: Unsupported xml/html tag <pubkey> found
2889/home/william/Git/gnunet/src/reclaim/did.h:27: warning: Unsupported xml/html tag <pubkey> found
2890/home/william/Git/gnunet/src/reclaim/did.h:38: warning: Unsupported xml/html tag <pubkey> found
2891/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)
2892/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:
2893 parameter 'ash'
2894/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:
2895 parameter 'presentations'
2896/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim.c:723: warning: Found unknown command '\cls'
2897/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim.c:724: warning: Found unknown command '\im'
2898/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:
2899 parameter 'presentations'
2900/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim.c:937: warning: Found unknown command '\cm'
2901/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:
2902 parameter 'cm'
2903/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
2904/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim.c:1686: warning: Found unknown command '\cls'
2905/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim.c:1687: warning: Found unknown command '\dam'
2906/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim.c:1777: warning: Found unknown command '\cls'
2907/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim.c:1778: warning: Found unknown command '\dam'
2908/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim_tickets.c:1671: warning: Found unknown command '\GNUNET_GNSRECORD_TYPE_RECLAIM_TICKET'
2909/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)
2910/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:
2911 parameter 'rd_count'
2912/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
2913/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)
2914/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:
2915 parameter 'rd_count'
2916/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)
2917/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:
2918 parameter 'rd_count'
2919/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)
2920/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:
2921 parameter 'rd_count'
2922/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim_tickets.c:1671: warning: Found unknown command '\GNUNET_GNSRECORD_TYPE_RECLAIM_TICKET'
2923/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)
2924/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:
2925 parameter 'attr'
2926/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)
2927/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:
2928 parameter 'cred'
2929/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)
2930/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)
2931/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:
2932 parameter 'nonce'
2933/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)
2934/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:
2935 parameter 'nonce_str'
2936/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)
2937/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:
2938 parameter 'code_verifier'
2939 parameter 'opts'
2940/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:
2941 parameter 'nonce'
2942/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)
2943/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)
2944/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)
2945/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
2946/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
2947/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
2948/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
2949/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
2950/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:
2951 parameter 'nonce_str'
2952/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)
2953/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)
2954/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)
2955/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)
2956/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
2957/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
2958/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
2959/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
2960/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:
2961 parameter 'code_verifier'
2962 parameter 'opts'
2963/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
2964/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
2965/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
2966/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
2967/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
2968/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)
2969/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:
2970 parameter 'data'
2971 parameter 'data_size'
2972/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)
2973/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:
2974 parameter 'data'
2975 parameter 'data_size'
2976/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)
2977/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:
2978 parameter 'data'
2979 parameter 'data_size'
2980 parameter 'exp'
2981/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:
2982 parameter 'exp'
2983/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:
2984 parameter 'exp'
2985/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)
2986/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:
2987 parameter 'data'
2988 parameter 'data_size'
2989/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)
2990/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:
2991 parameter 'data'
2992 parameter 'data_size'
2993/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)
2994/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:
2995 parameter 'data'
2996 parameter 'data_size'
2997 parameter 'exp'
2998/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:
2999 parameter 'exp'
3000/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:
3001 parameter 'exp'
3002/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)
3003/home/william/Git/gnunet/src/reclaim/plugin_rest_pabc.c:141: warning: The following parameter of cleanup_handle(void *cls) is not documented:
3004 parameter 'cls'
3005/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)
3006/home/william/Git/gnunet/src/reclaim/plugin_rest_reclaim.c:274: warning: The following parameter of cleanup_handle(void *cls) is not documented:
3007 parameter 'cls'
3008/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
3009/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
3010/home/william/Git/gnunet/src/reclaim/reclaim_api.c:1479: warning: explicit link request to 'GNUNET_RECLAIM_get_credential_start' could not be resolved
3011/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
3012/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
3013/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)
3014/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:
3015 parameter 'al'
3016/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)
3017/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:
3018 parameter 'al'
3019/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
3020/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
3021/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
3022/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
3023/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
3024/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
3025/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
3026/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
3027/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
3028/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)
3029/home/william/Git/gnunet/src/regex/gnunet-service-regex.c:126: warning: Found unknown command '\am'
3030/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)
3031/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:
3032 parameter 'sm'
3033/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)
3034/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:
3035 parameter 'sm'
3036/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)
3037/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:
3038 parameter 'cls'
3039/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)
3040/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
3041/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
3042/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
3043/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
3044/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
3045/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
3046/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
3047/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
3048/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
3049/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
3050/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
3051/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
3052/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
3053/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
3054/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
3055/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
3056/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
3057/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
3058/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
3059/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
3060/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
3061/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
3062/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
3063/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
3064/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
3065/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
3066/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
3067/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
3068/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
3069/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
3070/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
3071/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
3072/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
3073/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
3074/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
3075/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
3076/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)
3077/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)
3078/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:
3079 parameter 'resp'
3080/home/william/Git/gnunet/src/rest/gnunet-rest-server.c:450: warning: explicit link request to 'MHD_YES' could not be resolved
3081/home/william/Git/gnunet/src/rest/gnunet-rest-server.c:451: warning: explicit link request to 'MHD_NO' could not be resolved
3082/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)
3083/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:
3084 parameter 'cnc'
3085/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)
3086/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)
3087/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)
3088/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:
3089 parameter 'con_handle'
3090 parameter 'url'
3091 parameter 'cls'
3092/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)
3093/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:
3094 parameter 'con_handle'
3095 parameter 'url'
3096 parameter 'cls'
3097/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)
3098/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:
3099 parameter 'con_handle'
3100 parameter 'url'
3101 parameter 'cls'
3102/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)
3103/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)
3104/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)
3105/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)
3106/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:
3107 parameter 'conndata_handle'
3108/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)
3109/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:
3110 parameter 'con_handle'
3111 parameter 'url'
3112 parameter 'cls'
3113/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)
3114/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:
3115 parameter 'con_handle'
3116 parameter 'url'
3117 parameter 'cls'
3118/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)
3119/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)
3120/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)
3121/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)
3122/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:
3123 parameter 'conndata_handle'
3124/home/william/Git/gnunet/src/revocation/gnunet-service-revocation.c:481: warning: explicit link request to 'GNUNET_SETU_STATUS_OK' could not be resolved
3125/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:
3126 parameter 'mq'
3127/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)
3128/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:
3129 parameter 'service'
3130/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)
3131/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:680: warning: explicit link request to 'churn_test_cb' could not be resolved
3132/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:680: warning: explicit link request to 'mal_cb' could not be resolved
3133/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:680: warning: explicit link request to 'single_req_cb' could not be resolved
3134/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:681: warning: explicit link request to 'delay_req_cb' could not be resolved
3135/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:681: warning: explicit link request to 'seed_big_cb' could not be resolved
3136/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:681: warning: explicit link request to 'single_peer_seed_cb' could not be resolved
3137/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:681: warning: explicit link request to 'seed_cb' could not be resolved
3138/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:681: warning: explicit link request to 'req_cancel_cb' could not be resolved
3139/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)
3140/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)
3141/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:
3142 parameter 'recv_peer'
3143 parameter 'probability'
3144 parameter 'num_observed'
3145/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)
3146/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:
3147 parameter 'b'
3148/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)
3149/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)
3150/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:
3151 parameter 'cls'
3152 parameter 'args'
3153 parameter 'cfgfile'
3154 parameter 'cfg'
3155/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:
3156 parameter 'cls'
3157/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)
3158/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:
3159 parameter 'cls'
3160 parameter 'num_peers'
3161/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:4275: warning: explicit link request to 'view' could not be resolved
3162/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:1469: warning: explicit link request to 'valid_peers' could not be resolved
3163/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:1572: warning: explicit link request to 'valid_peers' could not be resolved
3164/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:1639: warning: explicit link request to 'initialise_peers' could not be resolved
3165/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:1665: warning: explicit link request to 'valid_peers' could not be resolved
3166/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:2197: warning: explicit link request to 'view' could not be resolved
3167/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:2210: warning: explicit link request to 'view' could not be resolved
3168/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:2566: warning: explicit link request to 'pull_map' could not be resolved
3169/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:4275: warning: explicit link request to 'view' could not be resolved
3170/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:868: warning: explicit link request to 'valid_peers' could not be resolved
3171/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)
3172/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:
3173 parameter 'channel_ctx'
3174/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:1469: warning: explicit link request to 'valid_peers' could not be resolved
3175/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:1572: warning: explicit link request to 'valid_peers' could not be resolved
3176/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:1639: warning: explicit link request to 'initialise_peers' could not be resolved
3177/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:1665: warning: explicit link request to 'valid_peers' could not be resolved
3178/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:2197: warning: explicit link request to 'view' could not be resolved
3179/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:2210: warning: explicit link request to 'view' could not be resolved
3180/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)
3181/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)
3182/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:
3183 parameter 'num_peers'
3184 parameter 'peers'
3185/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:
3186 parameter 'sub'
3187/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:2566: warning: explicit link request to 'pull_map' could not be resolved
3188/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:
3189 parameter 'mq'
3190/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)
3191/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:
3192 parameter 'msg'
3193/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)
3194/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:
3195 parameter 'msg'
3196/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)
3197/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:
3198 parameter 'msg'
3199/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)
3200/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:
3201 parameter 'err_msg'
3202/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)
3203/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:
3204 parameter 'client'
3205/home/william/Git/gnunet/src/rps/gnunet-service-rps_custommap.c:323: warning: documented empty return type of CustomPeerMap_clear
3206/home/william/Git/gnunet/src/rps/gnunet-service-rps_custommap.h:149: warning: documented empty return type of CustomPeerMap_clear
3207/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
3208/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
3209/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
3210/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
3211/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
3212/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
3213/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)
3214/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
3215/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
3216/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
3217/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
3218/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)
3219/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:
3220 parameter 'sampler_elem'
3221/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)
3222/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:
3223 parameter 'sampler_elem'
3224/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
3225/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
3226/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
3227/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
3228/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)
3229/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:
3230 parameter 'deficiency_factor'
3231/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)
3232/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)
3233/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:
3234 parameter 'req_single_info_handle'
3235/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
3236/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
3237/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)
3238/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:
3239 parameter 'deficiency_factor'
3240/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
3241/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
3242/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)
3243/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
3244/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
3245/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
3246/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
3247/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)
3248/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)
3249/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:
3250 parameter 'req_single_info_handle'
3251/home/william/Git/gnunet/src/rps/rps-test_util.c:115: warning: explicit link request to 'GNUNET_CONTAINER_HashMapIterator' could not be resolved
3252/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)
3253/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)
3254/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:
3255 parameter 'cls'
3256/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:
3257 parameter 'cls'
3258/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:
3259 parameter 'cls'
3260/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)
3261/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)
3262/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
3263/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)
3264/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:
3265 parameter 's'
3266/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)
3267/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)
3268/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:
3269 parameter 's'
3270/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)
3271/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
3272/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)
3273/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:
3274 parameter 'msg'
3275/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
3276/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)
3277/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:
3278 parameter 's'
3279/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)
3280/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:
3281 parameter 's'
3282/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)
3283/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:
3284 parameter 'session'
3285/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
3286/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)
3287/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:
3288 parameter 'message'
3289/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)
3290/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:
3291 parameter 'ppub'
3292/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)
3293/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)
3294/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:
3295 parameter 'msg'
3296/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)
3297/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)
3298/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:
3299 parameter 'msg'
3300/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)
3301/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:
3302 parameter 'idm'
3303/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)
3304/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:
3305 parameter 'msg'
3306/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)
3307/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:
3308 parameter 'idm'
3309/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
3310/home/william/Git/gnunet/src/set/gnunet-service-set_union.c:90: warning: explicit link request to 'PHASE_EXPECT_ELEMENTS' could not be resolved
3311/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
3312/home/william/Git/gnunet/src/setu/gnunet-service-setu.c:127: warning: explicit link request to 'PHASE_EXPECT_ELEMENTS' could not be resolved
3313/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
3314/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
3315/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
3316/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
3317/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)
3318/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:
3319 parameter 'counter_max_length'
3320/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)
3321/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:
3322 parameter 'counter_max_length'
3323/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)
3324/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:
3325 parameter 'counter_max_length'
3326/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)
3327/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:
3328 parameter 'counter_max_length'
3329/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
3330/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
3331/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
3332/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
3333/home/william/Git/gnunet/src/set/ibf.h:176: warning: argument 'size' from the argument list of ibf_create has multiple @param documentation sections
3334/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
3335/home/william/Git/gnunet/src/set/ibf.h:224: warning: argument 'ibf' from the argument list of ibf_decode has multiple @param documentation sections
3336/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
3337/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
3338/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)
3339/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
3340/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
3341/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
3342/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
3343/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:
3344 parameter 'counter_max_length'
3345/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)
3346/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
3347/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
3348/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
3349/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
3350/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:
3351 parameter 'counter_max_length'
3352/home/william/Git/gnunet/src/setu/ibf.h:193: warning: argument 'size' from the argument list of ibf_create has multiple @param documentation sections
3353/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
3354/home/william/Git/gnunet/src/setu/ibf.h:241: warning: argument 'ibf' from the argument list of ibf_decode has multiple @param documentation sections
3355/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
3356/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
3357/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)
3358/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:
3359 parameter 'counter_max_length'
3360/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)
3361/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:
3362 parameter 'counter_max_length'
3363/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)
3364/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:
3365 parameter 'msg'
3366/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)
3367/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:
3368 parameter 'msg'
3369/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)
3370/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:
3371 parameter 'msg'
3372/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)
3373/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:
3374 parameter 'idm'
3375/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)
3376/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)
3377/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:
3378 parameter 'msg'
3379/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)
3380/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)
3381/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)
3382/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:
3383 parameter 'msg'
3384/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
3385/home/william/Git/gnunet/src/set/gnunet-service-set_union.c:90: warning: explicit link request to 'PHASE_EXPECT_ELEMENTS' could not be resolved
3386/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
3387/home/william/Git/gnunet/src/setu/gnunet-service-setu.c:127: warning: explicit link request to 'PHASE_EXPECT_ELEMENTS' could not be resolved
3388/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)
3389/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)
3390/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)
3391/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)
3392/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)
3393/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:
3394 parameter 'ibf_size'
3395/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:
3396 parameter 'number_buckets_per_element'
3397 parameter 'ibf_bucket_number_factor'
3398/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)
3399/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)
3400/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:
3401 parameter 'msg'
3402/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)
3403/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:
3404 parameter 'se_ibf_total_size'
3405 parameter 'number_se_send'
3406/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:
3407 parameter 'number_se_received'
3408 parameter 'se_ibf_total_size'
3409/home/william/Git/gnunet/src/setu/gnunet-service-setu_strata_estimator.c:352: warning: documented empty return type of strata_estimator_difference
3410/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
3411/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
3412/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:
3413 parameter 'se_ibf_total_size'
3414 parameter 'number_se_send'
3415/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:
3416 parameter 'number_se_received'
3417 parameter 'se_ibf_total_size'
3418/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
3419/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
3420/home/william/Git/gnunet/src/setu/gnunet-service-setu_strata_estimator.h:147: warning: documented empty return type of strata_estimator_difference
3421/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
3422/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
3423/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)
3424/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)
3425/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:
3426 parameter 'msg'
3427/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)
3428/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:
3429 parameter 'stmt'
3430/home/william/Git/gnunet/src/sq/sq_query_helper.c:61: warning: Found unknown command '\oaran'
3431/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:
3432 parameter 'ptr_size'
3433/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)
3434/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:
3435 parameter 'ce'
3436/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)
3437/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:
3438 parameter 'se'
3439/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)
3440/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:
3441 parameter 'msg'
3442/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)
3443/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:
3444 parameter 'msg'
3445/home/william/Git/gnunet/src/statistics/gnunet-statistics.c:200: warning: explicit link request to 'GNUNET_CONTAINER_HashMapIterator' could not be resolved
3446/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
3447/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)
3448/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:
3449 parameter 'smsg'
3450/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)
3451/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:
3452 parameter 'wvm'
3453/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)
3454/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:
3455 parameter 'config'
3456/home/william/Git/gnunet/src/testbed/gnunet-helper-testbed.c:278: warning: explicit link request to 'GNUNET_mst_destroy()' could not be resolved
3457/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
3458/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
3459/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
3460/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)
3461/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:
3462 parameter 'msg'
3463/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)
3464/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:
3465 parameter 'msg'
3466/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
3467/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
3468/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
3469/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
3470/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
3471/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
3472/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
3473/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
3474/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
3475/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
3476/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
3477/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)
3478/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
3479/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
3480/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
3481/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)
3482/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
3483/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
3484/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
3485/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
3486/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
3487/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
3488/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
3489/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)
3490/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
3491/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
3492/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
3493/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
3494/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
3495/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
3496/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
3497/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
3498/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
3499/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
3500/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)
3501/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:
3502 parameter 'msg'
3503/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)
3504/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:
3505 parameter 'msg'
3506/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:
3507 parameter 'app_ctx'
3508/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
3509/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
3510/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
3511/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
3512/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:
3513 parameter 'cfg'
3514/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
3515/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:
3516 parameter 'cfg'
3517/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:
3518 parameter 'cfg'
3519/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:
3520 parameter 'cfg'
3521/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
3522/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
3523/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
3524/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
3525/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
3526/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
3527/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
3528/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
3529/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
3530/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
3531/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
3532/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
3533/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
3534/home/william/Git/gnunet/src/testbed/testbed_api.c:333: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_ADDHOSTCONFIRM' could not be resolved
3535/home/william/Git/gnunet/src/testbed/testbed_api.c:361: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_ADDHOSTCONFIRM' could not be resolved
3536/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
3537/home/william/Git/gnunet/src/testbed/testbed_api.c:333: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_ADDHOSTCONFIRM' could not be resolved
3538/home/william/Git/gnunet/src/testbed/testbed_api.c:361: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_ADDHOSTCONFIRM' could not be resolved
3539/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)
3540/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:
3541 parameter 'cls'
3542/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)
3543/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:
3544 parameter 'cls'
3545/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)
3546/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:
3547 parameter 'cls'
3548/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)
3549/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:
3550 parameter 'cls'
3551/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)
3552/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:
3553 parameter 'cls'
3554/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)
3555/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:
3556 parameter 'cls'
3557/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)
3558/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:
3559 parameter 'cls'
3560/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)
3561/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:
3562 parameter 'cls'
3563/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)
3564/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:
3565 parameter 'cls'
3566/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
3567/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)
3568/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:
3569 parameter 'cls'
3570/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)
3571/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:
3572 parameter 'cls'
3573/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)
3574/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:
3575 parameter 'cls'
3576/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)
3577/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:
3578 parameter 'cls'
3579/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
3580/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
3581/home/william/Git/gnunet/src/testbed/testbed_api.c:2054: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_PEERCONFIG' could not be resolved
3582/home/william/Git/gnunet/src/testbed/testbed_api.c:2055: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_SLAVECONFIG' could not be resolved
3583/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
3584/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
3585/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
3586/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
3587/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
3588/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
3589/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
3590/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
3591/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)
3592/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
3593/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
3594/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
3595/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
3596/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
3597/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
3598/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
3599/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
3600/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
3601/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
3602/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
3603/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
3604/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
3605/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
3606/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
3607/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
3608/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
3609/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
3610/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
3611/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
3612/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
3613/home/william/Git/gnunet/src/testing/gnunet-cmds-helper.c:323: warning: explicit link request to 'GNUNET_mst_destroy()' could not be resolved
3614/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)
3615/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:
3616 parameter 'config'
3617/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)
3618/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)
3619/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)
3620/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:
3621 parameter 'read_file'
3622/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)
3623/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)
3624/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)
3625/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
3626/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:
3627 parameter 'testdir'
3628/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
3629/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)
3630/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:
3631 parameter 'command'
3632/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)
3633/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:
3634 parameter 'command'
3635/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
3636/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)
3637/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)
3638/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)
3639/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)
3640/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)
3641/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)
3642/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:
3643 parameter 'challenge'
3644/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:
3645 parameter 'port'
3646/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:
3647 parameter 'port'
3648/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:
3649 parameter 'port'
3650/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)
3651/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)
3652/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)
3653/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:1191: warning: explicit link request to 'receiver_heap' could not be resolved
3654/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:1191: warning: explicit link request to 'sender_heap' could not be resolved
3655/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)
3656/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)])
3657/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)])
3658/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:1191: warning: explicit link request to 'receiver_heap' could not be resolved
3659/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:1191: warning: explicit link request to 'sender_heap' could not be resolved
3660/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)
3661/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)
3662/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)
3663/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:
3664 parameter 'sender'
3665/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)
3666/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)
3667/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)
3668/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:
3669 parameter 'add_to_receiver'
3670/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:
3671 parameter 'sender'
3672/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)
3673/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:
3674 parameter 'ephemeral'
3675/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)
3676/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)
3677/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)
3678/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)
3679/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)
3680/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:
3681 parameter 'peer'
3682 parameter 'un'
3683 parameter 'un_len'
3684/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)
3685/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:
3686 parameter 'target'
3687/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
3688/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:3252: warning: Found unknown command '\dvh'
3689/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
3690/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:7555: warning: Found unknown command '\ea'
3691/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:3252: warning: Found unknown command '\dvh'
3692/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
3693/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:
3694 parameter 'delay'
3695/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)
3696/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)
3697/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)
3698/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)
3699/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)
3700/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)
3701/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)
3702/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)
3703/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:
3704 parameter 'pub_ephemeral'
3705/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)
3706/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)
3707/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
3708/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)
3709/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
3710/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)
3711/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)
3712/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:
3713 parameter 'dv'
3714 parameter 'without_fc'
3715/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)
3716/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:
3717 parameter 'vl'
3718/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)
3719/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)
3720/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)
3721/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)
3722/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:6340: warning: explicit link request to 'GNUNET_Ok' could not be resolved
3723/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
3724/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:7555: warning: Found unknown command '\ea'
3725/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)
3726/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)
3727/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)
3728/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:
3729 parameter 'hdr'
3730 parameter 'enc_payload'
3731 parameter 'enc_payload_size'
3732/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)
3733/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:
3734 parameter 'im'
3735/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:
3736 parameter 'cls'
3737/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)
3738/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)
3739/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
3740/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)
3741/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)
3742/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)
3743/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:
3744 parameter 'tm'
3745/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
3746/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
3747/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
3748/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
3749/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
3750/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
3751/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)
3752/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
3753/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
3754/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
3755/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
3756/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
3757/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)
3758/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:
3759 parameter 'tm'
3760/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)
3761/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)
3762/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)
3763/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:
3764 parameter 'tm'
3765/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
3766/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
3767/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
3768/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
3769/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
3770/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
3771/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)
3772/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)
3773/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
3774/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)
3775/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:
3776 parameter 'size'
3777/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)
3778/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
3779/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
3780/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
3781/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
3782/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
3783/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
3784/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
3785/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
3786/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
3787/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
3788/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
3789/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)
3790/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:
3791 parameter 'size'
3792/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
3793/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
3794/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
3795/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
3796/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
3797/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
3798/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)
3799/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
3800/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
3801/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
3802/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
3803/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
3804/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
3805/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
3806/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
3807/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)
3808/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)
3809/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)
3810/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)
3811/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)
3812/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)
3813/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)
3814/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
3815/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
3816/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
3817/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
3818/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
3819/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
3820/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
3821/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
3822/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
3823/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
3824/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
3825/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
3826/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)
3827/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)
3828/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)
3829/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
3830/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
3831/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
3832/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
3833/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
3834/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
3835/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
3836/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
3837/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
3838/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
3839/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
3840/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
3841/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
3842/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
3843/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
3844/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
3845/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
3846/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
3847/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
3848/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
3849/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
3850/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
3851/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
3852/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
3853/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
3854/home/william/Git/gnunet/src/transport/plugin_transport_http_server.c:1741: warning: explicit link request to 'MHD_YES' could not be resolved
3855/home/william/Git/gnunet/src/transport/plugin_transport_http_server.c:1741: warning: explicit link request to 'MHD_NO' could not be resolved
3856/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
3857/home/william/Git/gnunet/src/transport/plugin_transport_http_server.c:2027: warning: explicit link request to 'MHD_YES' could not be resolved
3858/home/william/Git/gnunet/src/transport/plugin_transport_http_server.c:2027: warning: explicit link request to 'MHD_NO' could not be resolved
3859/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)
3860/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)
3861/home/william/Git/gnunet/src/transport/plugin_transport_tcp.c:293: warning: explicit link request to 'LEGACY_SERVICE_shutdown()' could not be resolved
3862/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)
3863/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
3864/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
3865/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
3866/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
3867/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
3868/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
3869/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
3870/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
3871/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
3872/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
3873/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
3874/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
3875/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
3876/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
3877/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)
3878/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)
3879/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)
3880/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)
3881/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)
3882/home/william/Git/gnunet/src/transport/tcp_connection_legacy.c:300: warning: explicit link request to 'GNUNET_connection_destroy()' could not be resolved
3883/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)
3884/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)
3885/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)
3886/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:
3887 parameter 'no'
3888 parameter 'node_ip'
3889/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)
3890/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)
3891/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:
3892 parameter 'create_label'
3893 parameter 'topology'
3894/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)
3895/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)
3896/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)
3897/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
3898/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
3899/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
3900/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:
3901 parameter 'create_label'
3902 parameter 'topology'
3903/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)
3904/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:
3905 parameter 'topology'
3906/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)
3907/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:
3908 parameter 'bc_msg'
3909/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)
3910/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:
3911 parameter 'msg'
3912/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)
3913/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:
3914 parameter 'inc_msg'
3915/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)
3916/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)
3917/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:
3918 parameter 'tc_h'
3919/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)
3920/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:
3921 parameter 'proc'
3922/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)
3923/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:
3924 parameter 'tc_h'
3925 parameter 'binary_name'
3926/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)
3927/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:1013: warning: expected whitespace after \a command
3928/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:
3929 parameter 'binary_name'
3930 parameter 'cfg_filename'
3931 parameter 'peer_id'
3932 parameter 'queue_create_reply_cb'
3933 parameter 'add_queue_cb'
3934 parameter 'incoming_message_cb'
3935 parameter 'bc_cb'
3936/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)
3937/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:
3938 parameter 'tc_h'
3939/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)
3940/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)
3941/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)
3942/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:1025: warning: expected whitespace after \a command
3943/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
3944/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
3945/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
3946/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:
3947 parameter 'binary_name'
3948 parameter 'cfg_filename'
3949 parameter 'peer_id'
3950 parameter 'bc_cb'
3951/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)
3952/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:
3953 parameter 'tc_h'
3954/home/william/Git/gnunet/src/transport/transport-testing-main.c:255: warning: Found unknown command '\my_nc'
3955/home/william/Git/gnunet/src/transport/transport-testing-main2.c:255: warning: Found unknown command '\my_nc'
3956/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)
3957/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)
3958/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
3959/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
3960/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
3961/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
3962/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
3963/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
3964/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
3965/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
3966/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
3967/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
3968/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
3969/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
3970/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)
3971/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
3972/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
3973/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
3974/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
3975/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)
3976/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
3977/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
3978/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
3979/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
3980/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
3981/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
3982/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
3983/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
3984/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
3985/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
3986/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)
3987/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)
3988/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
3989/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
3990/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
3991/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
3992/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
3993/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
3994/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
3995/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
3996/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
3997/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
3998/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
3999/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
4000/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)
4001/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
4002/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
4003/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
4004/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
4005/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)
4006/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
4007/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
4008/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
4009/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
4010/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
4011/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
4012/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
4013/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
4014/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
4015/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)
4016/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:
4017 parameter 'mc'
4018/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)
4019/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:
4020 parameter 'atsm'
4021/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)
4022/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:
4023 parameter 'atsm'
4024/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)
4025/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:
4026 parameter 'topology'
4027/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)
4028/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)
4029/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:
4030 parameter 'create_label'
4031 parameter 'topology'
4032/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)
4033/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
4034/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:
4035 parameter 'create_label'
4036 parameter 'topology'
4037/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)
4038/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)
4039/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)
4040/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:
4041 parameter 'no'
4042 parameter 'node_ip'
4043/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)
4044/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:
4045 parameter 'qm'
4046/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)
4047/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:
4048 parameter 'pir_msg'
4049/home/william/Git/gnunet/src/transport/transport_api_monitor_plugins.c:213: warning: Found unknown command '\paramm'
4050/home/william/Git/gnunet/src/transport/transport_api_monitor_plugins.c:214: warning: explicit link request to 'GNUNET_Ok' could not be resolved
4051/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:
4052 parameter 'tpmm'
4053/home/william/Git/gnunet/src/transport/transport_api_monitor_plugins.c:245: warning: Found unknown command '\paramm'
4054/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:
4055 parameter 'tpmm'
4056/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)
4057/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:
4058 parameter 'me'
4059/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)
4060/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:
4061 parameter 'r_dash'
4062 parameter 'msg'
4063 parameter 'msg_len'
4064/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)
4065/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:
4066 parameter 'pkey'
4067/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)
4068/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:
4069 parameter 'buffer'
4070/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)
4071/home/william/Git/gnunet/src/util/dnsstub.c:430: warning: argument 'cls' from the argument list of read_response has multiple @param documentation sections
4072/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)
4073/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)
4074/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:
4075 parameter 'num'
4076/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)
4077/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)
4078/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:
4079 parameter 'config'
4080/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)
4081/home/william/Git/gnunet/src/util/gnunet-service-resolver.c:314: warning: Found unknown command '\server_addrs'
4082/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)
4083/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)
4084/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
4085/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
4086/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)
4087/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)
4088/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)
4089/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)
4090/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)
4091/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:
4092 parameter 'read_nh'
4093 parameter 'write_nh'
4094 parameter 'read_fh'
4095 parameter 'write_fh'
4096/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)
4097/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:
4098 parameter 'csock'
4099/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)
4100/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)
4101/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)
4102/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:
4103 parameter 'ih'
4104 parameter 'want'
4105/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)
4106/home/william/Git/gnunet/src/util/socks.c:203: warning: documented empty return type of SOCKS5_handshake_done
4107/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)
4108/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)
4109/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)
4110/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:
4111 parameter 'cls'
4112 parameter 'buf'
4113 parameter 'available'
4114 parameter 'addr'
4115 parameter 'addrlen'
4116 parameter 'errCode'
4117/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)
4118/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:
4119 parameter 'host'
4120/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
4121/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)
4122/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:
4123 parameter 'i2v'
4124/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)
4125/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:
4126 parameter 'i2v'
4127/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)
4128/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:
4129 parameter 'expire'
4130/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)
4131/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:
4132 parameter 'service'
4133/home/william/Git/gnunet/src/zonemaster/gnunet-service-zonemaster.c:209: warning: explicit link request to 'put_interval' could not be resolved
4134/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)
4135/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:
4136 parameter 'expire'
4137/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)
4138/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:
4139 parameter 'service'
4140/home/william/Git/gnunet/src/zonemaster/gnunet-service-zonemaster.c:209: warning: explicit link request to 'put_interval' could not be resolved
4141/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
4142/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
4143/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
4144/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
4145/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
4146/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
4147/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
4148/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
4149/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
4150/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
4151/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:
4152 parameter 'direction'
4153 parameter 'proc2'
4154 parameter 'proc2_cls'
4155/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:
4156 parameter 'direction'
4157 parameter 'proc2'
4158 parameter 'proc2_cls'
4159/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)
4160/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
4161/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
4162/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:
4163 parameter 'sub_attr'
4164/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
4165/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
4166/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
4167/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
4168/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
4169/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)
4170/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)
4171/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
4172/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
4173/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
4174/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
4175/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
4176/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
4177/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
4178/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
4179/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
4180/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
4181/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
4182/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
4183/home/william/Git/gnunet/src/include/gnunet_ats_service.h:345: warning: Found unknown command '\ar'
4184/home/william/Git/gnunet/src/include/gnunet_ats_service.h:358: warning: Found unknown command '\ar'
4185/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
4186/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
4187/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
4188/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
4189/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
4190/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
4191/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
4192/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
4193/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
4194/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
4195/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
4196/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
4197/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
4198/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
4199/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
4200/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
4201/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
4202/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
4203/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
4204/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
4205/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
4206/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
4207/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
4208/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
4209/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
4210/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
4211/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
4212/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
4213/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
4214/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
4215/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
4216/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
4217/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
4218/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
4219/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
4220/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
4221/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
4222/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
4223/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
4224/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
4225/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
4226/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
4227/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
4228/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
4229/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
4230/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
4231/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
4232/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
4233/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
4234/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)
4235/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:
4236 parameter 'cls'
4237/home/william/Git/gnunet/src/include/gnunet_block_group_lib.h:94: warning: Found unknown command '\bg'
4238/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)
4239/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:
4240 parameter 'bg'
4241/home/william/Git/gnunet/src/include/gnunet_block_lib.h:277: warning: Found unknown command '\bg2'
4242/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
4243/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
4244/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
4245/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
4246/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
4247/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
4248/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
4249/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
4250/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
4251/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
4252/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
4253/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
4254/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
4255/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
4256/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
4257/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
4258/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)
4259/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
4260/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
4261/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
4262/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
4263/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
4264/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)
4265/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:
4266 parameter 'cm'
4267/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
4268/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
4269/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
4270/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
4271/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
4272/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
4273/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
4274/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
4275/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)
4276/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
4277/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
4278/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
4279/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
4280/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
4281/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
4282/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
4283/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
4284/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
4285/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
4286/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
4287/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
4288/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
4289/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
4290/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
4291/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
4292/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
4293/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
4294/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
4295/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
4296/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
4297/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
4298/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)
4299/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:
4300 parameter 'p'
4301/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)
4302/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:
4303 parameter 'p'
4304/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)
4305/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:
4306 parameter 'p'
4307/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)
4308/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:
4309 parameter 'p'
4310/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
4311/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
4312/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
4313/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
4314/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
4315/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
4316/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)
4317/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:
4318 parameter 'len2'
4319/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
4320/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
4321/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
4322/home/william/Git/gnunet/src/include/gnunet_configuration_lib.h:174: warning: Found unknown command '\INLINE'
4323/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
4324/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
4325/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
4326/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
4327/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
4328/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
4329/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
4330/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
4331/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
4332/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
4333/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
4334/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
4335/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)
4336/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
4337/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
4338/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
4339/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
4340/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
4341/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
4342/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
4343/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
4344/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
4345/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
4346/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
4347/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
4348/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
4349/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
4350/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
4351/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
4352/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
4353/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
4354/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
4355/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
4356/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
4357/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
4358/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
4359/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
4360/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
4361/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
4362/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
4363/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
4364/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
4365/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
4366/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
4367/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
4368/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
4369/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
4370/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
4371/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
4372/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
4373/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
4374/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
4375/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
4376/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
4377/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
4378/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
4379/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
4380/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
4381/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
4382/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
4383/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
4384/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
4385/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
4386/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
4387/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
4388/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
4389/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
4390/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
4391/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
4392/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
4393/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
4394/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
4395/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
4396/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
4397/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
4398/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
4399/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
4400/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
4401/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
4402/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
4403/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
4404/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
4405/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
4406/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
4407/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
4408/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
4409/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
4410/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
4411/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
4412/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
4413/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
4414/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
4415/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
4416/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
4417/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
4418/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
4419/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
4420/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
4421/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
4422/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
4423/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
4424/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
4425/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
4426/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
4427/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
4428/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
4429/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
4430/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
4431/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
4432/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
4433/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
4434/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
4435/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
4436/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
4437/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
4438/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
4439/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
4440/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
4441/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
4442/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
4443/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
4444/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
4445/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
4446/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
4447/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
4448/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
4449/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
4450/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
4451/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
4452/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
4453/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
4454/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
4455/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
4456/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
4457/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
4458/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
4459/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
4460/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
4461/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
4462/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
4463/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
4464/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
4465/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
4466/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
4467/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
4468/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
4469/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
4470/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
4471/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
4472/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
4473/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
4474/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
4475/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
4476/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
4477/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
4478/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
4479/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
4480/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
4481/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
4482/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
4483/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
4484/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
4485/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
4486/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
4487/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
4488/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
4489/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
4490/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
4491/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
4492/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
4493/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
4494/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
4495/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
4496/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
4497/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
4498/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
4499/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
4500/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
4501/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
4502/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
4503/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
4504/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
4505/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
4506/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
4507/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
4508/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
4509/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
4510/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
4511/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
4512/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
4513/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
4514/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
4515/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
4516/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
4517/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
4518/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
4519/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
4520/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
4521/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
4522/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
4523/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
4524/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
4525/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
4526/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
4527/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
4528/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
4529/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
4530/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
4531/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
4532/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
4533/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
4534/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
4535/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
4536/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
4537/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
4538/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
4539/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
4540/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
4541/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
4542/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
4543/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
4544/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
4545/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
4546/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
4547/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
4548/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
4549/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
4550/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
4551/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
4552/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
4553/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
4554/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
4555/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
4556/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
4557/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
4558/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
4559/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
4560/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
4561/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
4562/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
4563/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
4564/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
4565/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
4566/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
4567/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
4568/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
4569/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
4570/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
4571/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
4572/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
4573/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
4574/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
4575/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
4576/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
4577/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
4578/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
4579/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
4580/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
4581/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
4582/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
4583/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
4584/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
4585/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
4586/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
4587/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
4588/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
4589/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
4590/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
4591/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
4592/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
4593/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
4594/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
4595/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
4596/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
4597/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
4598/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
4599/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
4600/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)
4601/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:
4602 parameter 'pub'
4603/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)
4604/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:
4605 parameter 'pub'
4606/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)
4607/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:
4608 parameter 'pub'
4609/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
4610/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
4611/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
4612/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
4613/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
4614/home/william/Git/gnunet/src/util/crypto_random.c:243: warning: explicit link request to 'GNUNET_RANDOM_QUALITY_STRONG' could not be resolved
4615/home/william/Git/gnunet/src/util/crypto_random.c:244: warning: explicit link request to 'GNUNET_RANDOM_QUALITY_WEAK' could not be resolved
4616/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
4617/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
4618/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
4619/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
4620/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
4621/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
4622/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
4623/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
4624/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
4625/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
4626/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
4627/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
4628/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
4629/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
4630/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
4631/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
4632/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
4633/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
4634/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1823: warning: explicit link request to 'GNUNET_CRRYPTO_ecdh_eddsa' could not be resolved
4635/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1839: warning: explicit link request to 'GNUNET_CRRYPTO_ecdh_ecdsa' could not be resolved
4636/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1855: warning: explicit link request to 'GNUNET_CRRYPTO_eddsa_ecdh' could not be resolved
4637/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1870: warning: explicit link request to 'GNUNET_CRRYPTO_ecdsa_ecdh' could not be resolved
4638/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)
4639/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
4640/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
4641/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
4642/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
4643/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
4644/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
4645/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
4646/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
4647/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
4648/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
4649/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
4650/home/william/Git/gnunet/src/include/gnunet_curl_lib.h:231: warning: Found unknown command '\eh'
4651/home/william/Git/gnunet/src/include/gnunet_curl_lib.h:253: warning: Found unknown command '\eh'
4652/home/william/Git/gnunet/src/include/gnunet_curl_lib.h:311: warning: Found unknown command '\eh'
4653/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)
4654/home/william/Git/gnunet/src/include/gnunet_curl_lib.h:334: warning: Found unknown command '\eh'
4655/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:
4656 parameter 'rp'
4657 parameter 'rc'
4658/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)
4659/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:
4660 parameter 'xor_distance'
4661/home/william/Git/gnunet/src/include/gnunet_datastore_plugin.h:139: warning: explicit link request to 'GNUNET_SYSERROR' could not be resolved
4662/home/william/Git/gnunet/src/include/gnunet_datastore_plugin.h:239: warning: explicit link request to 'GNUNET_SYSERROR' could not be resolved
4663/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
4664/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
4665/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
4666/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
4667/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
4668/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
4669/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
4670/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
4671/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
4672/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
4673/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
4674/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
4675/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
4676/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
4677/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
4678/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
4679/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
4680/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
4681/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
4682/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
4683/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
4684/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
4685/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
4686/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
4687/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
4688/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
4689/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
4690/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
4691/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
4692/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
4693/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
4694/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
4695/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
4696/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
4697/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
4698/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
4699/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
4700/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
4701/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
4702/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
4703/home/william/Git/gnunet/src/include/gnunet_dht_service.h:297: warning: explicit link request to 'GNUNET_BLOCK_evaluate' could not be resolved
4704/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)
4705/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:
4706 parameter 'glob_pattern'
4707/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
4708/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
4709/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
4710/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
4711/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
4712/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
4713/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
4714/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
4715/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
4716/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)
4717/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
4718/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
4719/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
4720/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
4721/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
4722/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
4723/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
4724/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
4725/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
4726/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
4727/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
4728/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
4729/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
4730/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
4731/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
4732/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
4733/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
4734/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
4735/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
4736/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
4737/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
4738/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
4739/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
4740/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
4741/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
4742/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
4743/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)
4744/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:
4745 parameter 'meta'
4746/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
4747/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
4748/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
4749/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
4750/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
4751/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
4752/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
4753/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
4754/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
4755/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
4756/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
4757/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
4758/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
4759/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
4760/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
4761/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
4762/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
4763/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
4764/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
4765/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
4766/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
4767/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
4768/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
4769/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
4770/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
4771/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
4772/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
4773/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
4774/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
4775/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
4776/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
4777/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
4778/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
4779/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
4780/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
4781/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
4782/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
4783/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
4784/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
4785/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
4786/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
4787/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
4788/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
4789/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
4790/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
4791/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
4792/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
4793/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
4794/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
4795/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
4796/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
4797/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
4798/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
4799/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
4800/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
4801/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
4802/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
4803/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
4804/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
4805/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
4806/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
4807/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
4808/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
4809/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
4810/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
4811/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
4812/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
4813/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
4814/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
4815/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
4816/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
4817/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
4818/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
4819/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
4820/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
4821/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
4822/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
4823/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
4824/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
4825/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
4826/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
4827/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
4828/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
4829/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
4830/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
4831/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
4832/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
4833/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
4834/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
4835/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
4836/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
4837/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
4838/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
4839/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
4840/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)
4841/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)
4842/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
4843/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
4844/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
4845/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
4846/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
4847/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
4848/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
4849/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
4850/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
4851/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
4852/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
4853/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
4854/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
4855/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
4856/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:661: warning: explicit link request to 'GNUNET_GNSRECORD_PublicKey' could not be resolved
4857/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)
4858/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:
4859 parameter 'rd'
4860 parameter 'rd_count'
4861 parameter 'name'
4862/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:
4863 parameter 'rd_count'
4864/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
4865/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
4866/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
4867/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
4868/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
4869/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
4870/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
4871/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
4872/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
4873/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
4874/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
4875/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
4876/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
4877/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
4878/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
4879/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
4880/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
4881/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
4882/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
4883/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
4884/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
4885/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
4886/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
4887/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
4888/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
4889/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)
4890/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:
4891 parameter 'block'
4892/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
4893/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
4894/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
4895/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
4896/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
4897/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
4898/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
4899/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:661: warning: explicit link request to 'GNUNET_GNSRECORD_PublicKey' could not be resolved
4900/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)
4901/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:
4902 parameter 'rd_count_public'
4903/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)
4904/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:
4905 parameter 'rd_count_public'
4906/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
4907/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
4908/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
4909/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
4910/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
4911/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
4912/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
4913/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
4914/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
4915/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
4916/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
4917/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
4918/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
4919/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
4920/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
4921/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
4922/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
4923/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
4924/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
4925/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
4926/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
4927/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
4928/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
4929/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
4930/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
4931/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)
4932/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)
4933/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)
4934/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)
4935/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
4936/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
4937/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
4938/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
4939/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
4940/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
4941/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)
4942/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)
4943/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
4944/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
4945/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
4946/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
4947/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
4948/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
4949/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
4950/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
4951/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
4952/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
4953/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
4954/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
4955/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
4956/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
4957/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
4958/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
4959/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
4960/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
4961/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
4962/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)
4963/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
4964/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
4965/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
4966/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)
4967/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
4968/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
4969/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
4970/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
4971/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
4972/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)
4973/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
4974/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
4975/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
4976/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
4977/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)
4978/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
4979/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
4980/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
4981/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)
4982/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:
4983 parameter 'type'
4984/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)
4985/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
4986/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
4987/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
4988/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
4989/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:794: warning: found </i> tag without matching <i>
4990/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:794: warning: found </i> tag without matching <i>
4991/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)
4992/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)
4993/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)
4994/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)
4995/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:
4996 parameter 'identity_cls'
4997 parameter 'msg_cls'
4998/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)
4999/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)
5000/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:
5001 parameter 'handle'
5002/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)
5003/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)
5004/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:
5005 parameter 'handle'
5006/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)
5007/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)
5008/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:
5009 parameter 'handle'
5010/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)
5011/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)
5012/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:
5013 parameter 'handle'
5014/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)
5015/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)
5016/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:
5017 parameter 'handle'
5018/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)
5019/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)
5020/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:
5021 parameter 'room'
5022/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:794: warning: found </i> tag without matching <i>
5023/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:794: warning: found </i> tag without matching <i>
5024/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)
5025/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)
5026/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:
5027 parameter 'room'
5028/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
5029[generated]:27: warning: end of comment block while expecting command </code>
5030[generated]:5: warning: found </tt> tag without matching <tt>
5031[generated]:39: warning: end of comment block while expecting command </code>
5032/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
5033/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)
5034/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:
5035 parameter 'm'
5036/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)
5037/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:
5038 parameter 'm'
5039/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
5040/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
5041/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)
5042/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)
5043/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)
5044/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)
5045/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)
5046/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)
5047/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:
5048 parameter 'env_head'
5049 parameter 'env_tail'
5050 parameter 'env'
5051/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)
5052/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)
5053/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)
5054/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)
5055/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)
5056/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)
5057/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:
5058 parameter 'env_head'
5059 parameter 'env_tail'
5060 parameter 'env'
5061/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)
5062/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)
5063/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)
5064/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)
5065/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)
5066/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)
5067/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:
5068 parameter 'env_head'
5069 parameter 'env_tail'
5070 parameter 'env'
5071/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
5072/home/william/Git/gnunet/src/include/gnunet_mst_lib.h:64: warning: explicit link request to 'GNUNET_mst_destroy' could not be resolved
5073/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
5074/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
5075/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
5076/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
5077/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
5078/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)
5079/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)
5080/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:
5081 parameter 'sock'
5082/home/william/Git/gnunet/src/include/gnunet_my_lib.h:470: warning: explicit link request to 'GNUNET_MY_exect_prepared()' could not be resolved
5083/home/william/Git/gnunet/src/include/gnunet_my_lib.h:355: warning: Found unknown command '\spec'
5084/home/william/Git/gnunet/src/include/gnunet_my_lib.h:356: warning: Found unknown command '\spec'
5085/home/william/Git/gnunet/src/include/gnunet_my_lib.h:125: warning: Found unknown command '\oaran'
5086/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
5087/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
5088/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
5089/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
5090/home/william/Git/gnunet/src/include/gnunet_my_lib.h:260: warning: Found unknown command '\spec'
5091/home/william/Git/gnunet/src/include/gnunet_my_lib.h:261: warning: Found unknown command '\oaran'
5092/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)
5093/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)
5094/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:
5095 parameter 'ptr'
5096/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)
5097/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
5098/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)
5099/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)
5100/home/william/Git/gnunet/src/include/gnunet_my_lib.h:470: warning: explicit link request to 'GNUNET_MY_exect_prepared()' could not be resolved
5101/home/william/Git/gnunet/src/include/gnunet_my_lib.h:473: warning: explicit link request to 'GNUNET_MY_exect_prepared()' could not be resolved
5102/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
5103/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
5104/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
5105/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
5106/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
5107/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
5108/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
5109/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
5110/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
5111/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
5112/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
5113/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
5114/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
5115/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
5116/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
5117/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
5118/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
5119/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
5120/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
5121/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
5122/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
5123/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
5124/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
5125/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
5126/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)
5127/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
5128/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
5129/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
5130/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
5131/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
5132/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
5133/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
5134/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
5135/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
5136/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
5137/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
5138/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
5139/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
5140/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
5141/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
5142/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
5143/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
5144/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
5145/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
5146/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
5147/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
5148/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
5149/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
5150/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
5151/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
5152/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
5153/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
5154/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
5155/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
5156/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
5157/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
5158/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
5159/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
5160/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
5161/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
5162/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
5163/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
5164/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
5165/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
5166/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
5167/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
5168/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
5169/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
5170/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
5171/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
5172/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
5173/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
5174/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
5175/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
5176/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
5177/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
5178/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
5179/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
5180/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
5181/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
5182/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
5183/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
5184/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
5185/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
5186/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
5187/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
5188/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
5189/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
5190/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
5191/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
5192/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
5193/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
5194/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
5195/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
5196/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
5197/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
5198/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
5199/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
5200/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
5201/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
5202/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
5203/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
5204/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
5205/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
5206/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
5207/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
5208/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
5209/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
5210/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
5211/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
5212/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
5213/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
5214/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
5215/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
5216/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
5217/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
5218/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
5219/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
5220/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
5221/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
5222/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
5223/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
5224/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
5225/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
5226/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
5227/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
5228/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
5229/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
5230/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
5231/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
5232/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
5233/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
5234/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
5235/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
5236/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
5237/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
5238/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
5239/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
5240/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
5241/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
5242/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
5243/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)
5244/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
5245/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
5246/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
5247/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
5248/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
5249/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
5250/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
5251/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
5252/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
5253/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
5254/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
5255/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
5256/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
5257/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
5258/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
5259/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
5260/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
5261/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
5262/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
5263/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
5264/home/william/Git/gnunet/src/include/gnunet_program_lib.h:80: warning: explicit link request to 'a' could not be resolved
5265/home/william/Git/gnunet/src/include/gnunet_program_lib.h:107: warning: explicit link request to 'a' could not be resolved
5266/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
5267/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
5268/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
5269/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
5270/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
5271/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)
5272/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:
5273 parameter 'al'
5274/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)
5275/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:
5276 parameter 'al'
5277/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)
5278/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
5279/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
5280/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
5281/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
5282/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:
5283 parameter 'al'
5284/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)
5285/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:
5286 parameter 'al'
5287/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
5288/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
5289/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)
5290/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:
5291 parameter 'al'
5292/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)
5293/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:
5294 parameter 'credentials'
5295/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)
5296/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)
5297/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:
5298 parameter 'al'
5299/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)
5300/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:
5301 parameter 'attrs'
5302 parameter 'att_name'
5303/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)
5304/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:
5305 parameter 'credentials'
5306/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
5307/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
5308/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)
5309/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)
5310/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
5311/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)
5312/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
5313/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
5314/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
5315/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)
5316/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:
5317 parameter 'cred'
5318/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)
5319/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)
5320/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)
5321/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:
5322 parameter 'al'
5323/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)
5324/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
5325/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
5326/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
5327/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)
5328/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)
5329/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
5330/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
5331/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
5332/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
5333/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
5334/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
5335/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
5336/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
5337/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
5338/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
5339/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
5340/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
5341/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
5342/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
5343/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
5344/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
5345/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
5346/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
5347/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
5348/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
5349/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
5350/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
5351/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
5352/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
5353/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
5354/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
5355/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)
5356/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
5357/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
5358/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
5359/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
5360/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
5361/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)
5362/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)
5363/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:
5364 parameter 'ait'
5365/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)
5366/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:
5367 parameter 'ait'
5368/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:386: warning: Found unknown command '\GNUNET_RECLAIM_ticket_consume'
5369/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
5370/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
5371/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
5372/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
5373/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
5374/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
5375/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
5376/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
5377/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
5378/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
5379/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
5380/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
5381/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
5382/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
5383/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
5384/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
5385/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
5386/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
5387/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
5388/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
5389/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
5390/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
5391/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
5392/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
5393/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
5394/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
5395/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
5396/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
5397/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
5398/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
5399/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
5400/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
5401/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
5402/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
5403/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
5404/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
5405/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
5406/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
5407/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
5408/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
5409/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
5410/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
5411/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
5412/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
5413/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)
5414/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)
5415/home/william/Git/gnunet/src/revocation/revocation_api.c:298: warning: explicit link request to 'GNUNET_REVOCATION_sign_revocation' could not be resolved
5416/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)
5417/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
5418/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
5419/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
5420/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
5421/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)
5422/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:
5423 parameter 'difficulty'
5424/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
5425/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
5426/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)
5427/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)
5428/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)
5429/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
5430/home/william/Git/gnunet/src/include/gnunet_revocation_service.h:258: warning: documented empty return type of GNUNET_REVOCATION_pow_stop
5431/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
5432/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
5433/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
5434/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
5435/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
5436/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)
5437/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)
5438/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
5439/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
5440/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
5441/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)
5442/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)
5443/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:
5444 parameter 'num_updates'
5445 parameter 'view_update_cb'
5446/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)
5447/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:
5448 parameter 'stream_input_cb'
5449/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
5450/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
5451/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
5452/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
5453/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
5454/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
5455/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
5456/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)
5457/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
5458/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
5459/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
5460/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
5461/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
5462/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
5463/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
5464/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
5465/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
5466/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
5467/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
5468/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
5469/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
5470/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
5471/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
5472/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
5473/home/william/Git/gnunet/src/include/gnunet_scheduler_lib.h:906: warning: documented empty return type of GNUNET_SCHEDULER_set_select
5474/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)
5475/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)
5476/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:
5477 parameter 'plaintext'
5478/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
5479/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
5480/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
5481/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
5482/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,...)
5483/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,...)
5484/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:
5485 parameter 'service_options'
5486 parameter 'init_cb'
5487 parameter '...'
5488/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
5489/home/william/Git/gnunet/src/include/gnunet_service_lib.h:415: warning: explicit link request to 'GNUNET_SERVICE_stop_listening()' could not be resolved
5490/home/william/Git/gnunet/src/include/gnunet_seti_service.h:176: warning: explicit link request to 'GNUNET_SETI_STATUS_OK' could not be resolved
5491/home/william/Git/gnunet/src/include/gnunet_setu_service.h:221: warning: explicit link request to 'GNUNET_SETU_STATUS_OK' could not be resolved
5492/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
5493/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
5494/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
5495/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
5496/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
5497/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
5498/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
5499/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
5500/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
5501/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
5502/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
5503/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
5504/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
5505/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
5506/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
5507/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:
5508 parameter 'options'
5509/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
5510/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
5511/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
5512/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
5513/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
5514/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
5515/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
5516/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
5517/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
5518/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
5519/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:
5520 parameter 'options'
5521/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
5522/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
5523/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
5524/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
5525/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
5526/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
5527/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
5528/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
5529/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
5530/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
5531/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
5532/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
5533/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
5534/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
5535/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
5536/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
5537/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
5538/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
5539/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
5540/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
5541/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
5542/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
5543/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
5544/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
5545/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
5546/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
5547/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
5548/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
5549/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
5550/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
5551/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
5552/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
5553/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
5554/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
5555/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
5556/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
5557/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
5558/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
5559/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
5560/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
5561/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
5562/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
5563/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
5564/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)
5565/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
5566/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
5567/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
5568/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
5569/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
5570/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
5571/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
5572/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
5573/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
5574/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
5575/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
5576/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
5577/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
5578/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
5579/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
5580/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
5581/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
5582/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
5583/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
5584/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)
5585/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:
5586 parameter 'in'
5587/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)
5588/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:
5589 parameter 'out'
5590/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)
5591/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:
5592 parameter 'out'
5593/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
5594/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
5595/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
5596/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
5597/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
5598/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
5599/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
5600/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
5601/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
5602/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
5603/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
5604/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
5605/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
5606/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
5607/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
5608/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
5609/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
5610/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
5611/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
5612/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
5613/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
5614/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
5615/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
5616/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
5617/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
5618/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
5619/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
5620/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
5621/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
5622/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
5623/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
5624/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
5625/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
5626/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
5627/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
5628/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
5629/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
5630/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
5631/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
5632/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
5633/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
5634/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
5635/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
5636/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
5637/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
5638/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
5639/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
5640/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
5641/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
5642/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
5643/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
5644/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
5645/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
5646/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
5647/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
5648/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
5649/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
5650/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
5651/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
5652/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
5653/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
5654/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
5655/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
5656/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
5657/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
5658/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
5659/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
5660/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
5661/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
5662/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
5663/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
5664/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
5665/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
5666/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
5667/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
5668/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
5669/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
5670/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
5671/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
5672/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
5673/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
5674/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
5675/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
5676/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
5677/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
5678/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
5679/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
5680/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
5681/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
5682/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
5683/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
5684/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
5685/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
5686/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
5687/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
5688/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
5689/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
5690/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
5691/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
5692/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
5693/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
5694/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
5695/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
5696/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
5697/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
5698/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
5699/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
5700/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
5701/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
5702/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)
5703/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
5704/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
5705/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
5706/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
5707/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)
5708/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
5709/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
5710/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
5711/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
5712/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
5713/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
5714/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
5715/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
5716/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
5717/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
5718/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
5719/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
5720/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
5721/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
5722/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
5723/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
5724/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
5725/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
5726/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
5727/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
5728/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
5729/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
5730/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
5731/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
5732/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
5733/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
5734/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
5735/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
5736/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
5737/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
5738/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)
5739/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:
5740 parameter 'ts'
5741/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
5742/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
5743/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
5744/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
5745/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
5746/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
5747/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)
5748/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
5749/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
5750/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
5751/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
5752/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
5753/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
5754/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
5755/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
5756/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)
5757/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
5758/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
5759/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
5760/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
5761/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
5762/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)
5763/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
5764/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
5765/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
5766/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
5767/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
5768/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
5769/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
5770/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
5771/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
5772/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)
5773/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:
5774 parameter 'u_qh'
5775/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
5776/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
5777/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
5778/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
5779/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)
5780/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
5781/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
5782/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
5783/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
5784/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
5785/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
5786/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
5787/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)
5788/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
5789/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
5790/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
5791/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
5792/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
5793/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
5794/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
5795/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
5796/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
5797/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)
5798/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
5799/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
5800/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
5801/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
5802/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
5803/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
5804/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
5805/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
5806/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
5807/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
5808/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
5809/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
5810/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
5811/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
5812/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
5813/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
5814/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
5815/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
5816/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
5817/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
5818/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
5819/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
5820/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
5821/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
5822/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
5823/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
5824/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
5825/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
5826/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
5827/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
5828/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
5829/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
5830/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
5831/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
5832/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
5833/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
5834/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
5835/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
5836/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
5837/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
5838/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
5839/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
5840/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
5841/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
5842/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
5843/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
5844/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
5845/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
5846/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
5847/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
5848/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
5849/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
5850/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
5851/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
5852/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
5853/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
5854/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
5855/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
5856/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
5857/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)
5858/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
5859/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
5860/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
5861/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
5862/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
5863/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
5864/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
5865/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
5866/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
5867/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
5868/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
5869/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
5870/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
5871/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
5872/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
5873/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
5874/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
5875/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
5876/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
5877/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
5878/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
5879/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
5880/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
5881/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
5882/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
5883/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
5884/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
5885/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
5886/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
5887/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
5888/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)
5889/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
5890/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
5891/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
5892/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
5893/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
5894/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
5895/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
5896/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
5897/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
5898/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
5899/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
5900/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
5901/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
5902/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
5903/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
5904/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)
5905/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:
5906 parameter 'pub'
5907/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)
5908/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:
5909 parameter 'edc'
5910/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)
5911/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:
5912 parameter 'purpose'
5913/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)
5914/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:
5915 parameter 'purpose'
5916/home/william/Git/gnunet/src/util/crypto_paillier.c:331: warning: Found unknown command '\private_key'
5917/home/william/Git/gnunet/src/util/crypto_paillier.c:336: warning: Found unknown command '\private_key'
5918/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
5919/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
5920/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
5921/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
5922/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
5923/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
5924/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
5925/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
5926/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)
5927/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:
5928 parameter 'bks'
5929/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2763: warning: explicit link request to 'GNUNET_CRYPTO_rsa_sign()' could not be resolved
5930/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
5931/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
5932/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
5933/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
5934/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
5935/home/william/Git/gnunet/src/hello/hello-uri.c:102: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_HELLO' could not be resolved
5936/home/william/Git/gnunet/src/hello/hello-uri.c:102: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_HELLO' could not be resolved
5937/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
5938/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
5939/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.c:227: warning: Found unknown command '\path_tails'
5940/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.c:213: warning: Found unknown command '\GCP_get_desirability_of_path'
5941/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.c:227: warning: Found unknown command '\path_tails'
5942/home/william/Git/gnunet/src/conversation/conversation.h:265: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_CONVERSATION_RING' could not be resolved
5943/home/william/Git/gnunet/src/conversation/conversation.h:265: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_CONVERSATION_RING' could not be resolved
5944/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.c:170: warning: Found unknown command '\HKr'
5945/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_paths.c:310: warning: explicit link request to 'find_peer_at()' could not be resolved
5946/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_paths.c:310: warning: explicit link request to 'find_peer_at()' could not be resolved
5947/home/william/Git/gnunet/src/util/configuration.c:137: warning: Found unknown command '\inline'
5948/home/william/Git/gnunet/src/util/configuration.c:137: warning: Found unknown command '\inline'
5949/home/william/Git/gnunet/src/util/configuration.c:91: warning: Found unknown command '\inline'
5950/home/william/Git/gnunet/src/hello/hello-uri.c:136: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_HELLO' could not be resolved
5951/home/william/Git/gnunet/src/hello/hello-uri.c:136: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_HELLO' could not be resolved
5952/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
5953/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
5954/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
5955/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
5956/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
5957/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
5958/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
5959/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
5960/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
5961/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
5962/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
5963/home/william/Git/gnunet/src/cadet/cadet_protocol.h:80: warning: explicit link request to 'GNUNET_CADET_OPTION_DEFAULT' could not be resolved
5964/home/william/Git/gnunet/src/cadet/cadet_protocol.h:81: warning: explicit link request to 'GNUNET_CADET_OPTION_NOBUFFER' could not be resolved
5965/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
5966/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
5967/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
5968/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
5969/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
5970/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
5971/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
5972/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
5973/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
5974/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
5975/home/william/Git/gnunet/src/include/gnunet_dhtu_plugin.h:120: warning: Found unknown command '\para'
5976/home/william/Git/gnunet/src/exit/exit.h:96: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_VPN_TCP_DATA' could not be resolved
5977/home/william/Git/gnunet/src/exit/exit.h:96: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_VPN_TCP_DATA' could not be resolved
5978/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
5979/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
5980/home/william/Git/gnunet/src/secretsharing/secretsharing_protocol.h:115: warning: Found unknown command '\beta'
5981/home/william/Git/gnunet/src/secretsharing/secretsharing_protocol.h:115: warning: Found unknown command '\beta'
5982/home/william/Git/gnunet/src/secretsharing/secretsharing_protocol.h:120: warning: Found unknown command '\beta'
5983/home/william/Git/gnunet/src/secretsharing/secretsharing_protocol.h:120: warning: Found unknown command '\beta'
5984/home/william/Git/gnunet/src/secretsharing/secretsharing_protocol.h:125: warning: Found unknown command '\beta'
5985/home/william/Git/gnunet/src/secretsharing/secretsharing_protocol.h:125: warning: Found unknown command '\cdot'
5986/home/william/Git/gnunet/src/testbed/testbed.h:739: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_UNDERLAYLINKMODELMSG' could not be resolved
5987/home/william/Git/gnunet/src/testbed/testbed.h:739: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_UNDERLAYLINKMODELMSG' could not be resolved
5988/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
5989/home/william/Git/gnunet/src/hello/hello-uri.c:51: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_HELLO' could not be resolved
5990/home/william/Git/gnunet/src/hello/hello-uri.c:51: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_HELLO' could not be resolved
5991/home/william/Git/gnunet/src/transport/gnunet-service-transport.c:1041: warning: explicit link request to 'send_validation_information()' could not be resolved
5992/home/william/Git/gnunet/src/testing/testing_api_loop.c:516: warning: explicit link request to 'EXIT_FAILURE' could not be resolved
5993/home/william/Git/gnunet/src/testing/testing_api_loop.c:516: warning: explicit link request to 'EXIT_FAILURE' could not be resolved
5994/home/william/Git/gnunet/src/hello/hello.c:385: warning: explicit link request to 'GNUNET_HELLO_Merge' could not be resolved
5995/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.c:435: warning: explicit link request to 'S_CONNECTED' could not be resolved
5996/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:2142: warning: explicit link request to 'PMT_FRAGMENT_BOx' could not be resolved
5997/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:2142: warning: explicit link request to 'PMT_FRAGMENT_BOx' could not be resolved
5998/home/william/Git/gnunet/src/datastore/plugin_datastore_postgres.c:591: warning: explicit link request to 'repl_iter()' could not be resolved
5999/home/william/Git/gnunet/src/fs/fs.h:82: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_PEER_PLACEMENT' could not be resolved
6000/home/william/Git/gnunet/src/fs/fs.h:116: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_PEER_PLACEMENT' could not be resolved
6001/home/william/Git/gnunet/src/hello/hello-ng.c:39: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_ADDRESS' could not be resolved
6002/home/william/Git/gnunet/src/hello/hello-ng.c:39: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_ADDRESS' could not be resolved
6003/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
6004/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
6005/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
6006/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
6007/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
6008/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
6009/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
6010/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
6011/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
6012/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
6013/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
6014/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
6015/home/william/Git/gnunet/src/util/gnunet-crypto-tvg.c:61: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TEST' could not be resolved
6016/home/william/Git/gnunet/src/core/gnunet-service-core.c:380: warning: explicit link request to 'client_tokenizer_callback()' could not be resolved
6017/home/william/Git/gnunet/src/core/gnunet-service-core.c:380: warning: explicit link request to 'client_tokenizer_callback()' could not be resolved
6018/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
6019/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
6020/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
6021/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
6022/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
6023/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
6024/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
6025/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
6026/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
6027/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
6028/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
6029/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
6030/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
6031/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
6032/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
6033/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
6034/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
6035/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
6036/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
6037/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
6038/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
6039/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
6040/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
6041/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
6042/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:1351: warning: explicit link request to 'core_visibility_check()' could not be resolved
6043/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
6044/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
6045/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_paths.c:310: warning: explicit link request to 'find_peer_at()' could not be resolved
6046/home/william/Git/gnunet/src/core/gnunet-service-core.c:380: warning: explicit link request to 'client_tokenizer_callback()' could not be resolved
6047/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
6048/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_paths.c:310: warning: explicit link request to 'find_peer_at()' could not be resolved
6049/home/william/Git/gnunet/src/core/gnunet-service-core.c:380: warning: explicit link request to 'client_tokenizer_callback()' could not be resolved
6050/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
6051/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_paths.c:310: warning: explicit link request to 'find_peer_at()' could not be resolved
6052/home/william/Git/gnunet/src/core/gnunet-service-core.c:380: warning: explicit link request to 'client_tokenizer_callback()' could not be resolved
6053/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
6054/home/william/Git/gnunet/src/hello/hello-uri.c:102: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_HELLO' could not be resolved
6055/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
6056/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.c:213: warning: Found unknown command '\GCP_get_desirability_of_path'
6057/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_peer.c:227: warning: Found unknown command '\path_tails'
6058/home/william/Git/gnunet/src/conversation/conversation.h:265: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_CONVERSATION_RING' could not be resolved
6059/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_tunnels.c:170: warning: Found unknown command '\HKr'
6060/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_paths.c:310: warning: explicit link request to 'find_peer_at()' could not be resolved
6061/home/william/Git/gnunet/src/util/configuration.c:137: warning: Found unknown command '\inline'
6062/home/william/Git/gnunet/src/util/configuration.c:91: warning: Found unknown command '\inline'
6063/home/william/Git/gnunet/src/hello/hello-uri.c:136: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_HELLO' could not be resolved
6064/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
6065/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
6066/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
6067/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
6068/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
6069/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
6070/home/william/Git/gnunet/src/cadet/cadet_protocol.h:80: warning: explicit link request to 'GNUNET_CADET_OPTION_DEFAULT' could not be resolved
6071/home/william/Git/gnunet/src/cadet/cadet_protocol.h:81: warning: explicit link request to 'GNUNET_CADET_OPTION_NOBUFFER' could not be resolved
6072/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
6073/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
6074/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
6075/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
6076/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
6077/home/william/Git/gnunet/src/include/gnunet_dhtu_plugin.h:120: warning: Found unknown command '\para'
6078/home/william/Git/gnunet/src/exit/exit.h:96: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_VPN_TCP_DATA' could not be resolved
6079/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
6080/home/william/Git/gnunet/src/secretsharing/secretsharing_protocol.h:115: warning: Found unknown command '\beta'
6081/home/william/Git/gnunet/src/secretsharing/secretsharing_protocol.h:115: warning: Found unknown command '\beta'
6082/home/william/Git/gnunet/src/secretsharing/secretsharing_protocol.h:120: warning: Found unknown command '\beta'
6083/home/william/Git/gnunet/src/secretsharing/secretsharing_protocol.h:120: warning: Found unknown command '\beta'
6084/home/william/Git/gnunet/src/secretsharing/secretsharing_protocol.h:125: warning: Found unknown command '\beta'
6085/home/william/Git/gnunet/src/secretsharing/secretsharing_protocol.h:125: warning: Found unknown command '\cdot'
6086/home/william/Git/gnunet/src/testbed/testbed.h:739: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_UNDERLAYLINKMODELMSG' could not be resolved
6087/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
6088/home/william/Git/gnunet/src/hello/hello-uri.c:51: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_HELLO' could not be resolved
6089/home/william/Git/gnunet/src/transport/gnunet-service-transport.c:1041: warning: explicit link request to 'send_validation_information()' could not be resolved
6090/home/william/Git/gnunet/src/testing/testing_api_loop.c:516: warning: explicit link request to 'EXIT_FAILURE' could not be resolved
6091/home/william/Git/gnunet/src/hello/hello.c:385: warning: explicit link request to 'GNUNET_HELLO_Merge' could not be resolved
6092/home/william/Git/gnunet/src/transport/gnunet-service-transport_neighbours.c:435: warning: explicit link request to 'S_CONNECTED' could not be resolved
6093/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:2142: warning: explicit link request to 'PMT_FRAGMENT_BOx' could not be resolved
6094/home/william/Git/gnunet/src/datastore/plugin_datastore_postgres.c:591: warning: explicit link request to 'repl_iter()' could not be resolved
6095/home/william/Git/gnunet/src/fs/fs.h:82: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_PEER_PLACEMENT' could not be resolved
6096/home/william/Git/gnunet/src/fs/fs.h:116: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_PEER_PLACEMENT' could not be resolved
6097/home/william/Git/gnunet/src/hello/hello-ng.c:39: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TRANSPORT_ADDRESS' could not be resolved
6098/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
6099/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
6100/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
6101/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
6102/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
6103/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
6104/home/william/Git/gnunet/src/util/gnunet-crypto-tvg.c:61: warning: explicit link request to 'GNUNET_SIGNATURE_PURPOSE_TEST' could not be resolved
6105/home/william/Git/gnunet/src/core/gnunet-service-core.c:380: warning: explicit link request to 'client_tokenizer_callback()' could not be resolved
6106/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
6107/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
6108/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
6109/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
6110/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
6111/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
6112/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
6113/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
6114/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
6115/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
6116/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
6117/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
6118/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:1351: warning: explicit link request to 'core_visibility_check()' could not be resolved
6119/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
6120/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:
6121 parameter 'direction'
6122 parameter 'proc2'
6123 parameter 'proc2_cls'
6124/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:
6125 parameter 'direction'
6126 parameter 'proc2'
6127 parameter 'proc2_cls'
6128/home/william/Git/gnunet/src/abd/abd_serialization.c:143: warning: explicit link request to 'GNUNET_ABD_Credential' could not be resolved
6129/home/william/Git/gnunet/src/abd/abd_serialization.c:172: warning: explicit link request to 'GNUNET_ABD_Credential' could not be resolved
6130/home/william/Git/gnunet/src/abd/abd_serialization.c:264: warning: explicit link request to 'GNUNET_ABD_Credential' could not be resolved
6131/home/william/Git/gnunet/src/abd/abd_serialization.c:296: warning: explicit link request to 'GNUNET_ABD_Credential' could not be resolved
6132/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
6133/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
6134/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
6135/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
6136/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
6137/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
6138/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
6139/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
6140/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
6141/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
6142/home/william/Git/gnunet/src/abd/abd_serialization.c:270: warning: explicit link request to 'GNUNET_ABD_Credential' could not be resolved
6143/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
6144/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
6145/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
6146/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
6147/home/william/Git/gnunet/src/abd/abd_serialization.c:304: warning: explicit link request to 'GNUNET_ABD_Credential' could not be resolved
6148/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
6149/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
6150/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
6151/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
6152/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
6153/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
6154/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
6155/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
6156/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
6157/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
6158/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
6159/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
6160/home/william/Git/gnunet/src/abd/abd_serialization.c:143: warning: explicit link request to 'GNUNET_ABD_Credential' could not be resolved
6161/home/william/Git/gnunet/src/abd/abd_serialization.c:172: warning: explicit link request to 'GNUNET_ABD_Credential' could not be resolved
6162/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:
6163 parameter 'sub_attr'
6164 parameter 'expiration'
6165/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)
6166/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)
6167/home/william/Git/gnunet/src/abe/abe.c:181: warning: documented empty return type of GNUNET_ABE_cpabe_delete_master_key
6168/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
6169/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
6170/home/william/Git/gnunet/src/abe/abe.c:226: warning: documented empty return type of GNUNET_ABE_cpabe_delete_key
6171/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
6172/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)
6173/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:
6174 parameter 'request'
6175/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)
6176/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)
6177/home/william/Git/gnunet/src/include/gnunet_ats_service.h:348: warning: Found unknown command '\ar'
6178/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)
6179/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:
6180 parameter 'client'
6181/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
6182/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
6183/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
6184/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
6185/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
6186/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
6187/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
6188/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
6189/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
6190/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
6191/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
6192/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
6193/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
6194/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)
6195/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
6196/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)
6197/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:
6198 parameter 'msg'
6199/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)
6200/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
6201/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
6202/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
6203/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
6204/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
6205/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
6206/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)
6207/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
6208/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
6209/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
6210/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
6211/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)
6212/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)
6213/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
6214/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)
6215/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
6216/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
6217/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
6218/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
6219/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)
6220/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
6221/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)
6222/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:
6223 parameter 'cls'
6224/home/william/Git/gnunet/src/block/bg_bf.c:210: warning: Found unknown command '\bg'
6225/home/william/Git/gnunet/src/include/gnunet_block_lib.h:277: warning: Found unknown command '\bg2'
6226/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)
6227/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:
6228 parameter 'bg'
6229/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)
6230/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:
6231 parameter 'cls'
6232/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)
6233/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)
6234/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:
6235 parameter 'cls'
6236/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)
6237/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)
6238/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)
6239/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:
6240 parameter 'cls'
6241/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)
6242/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:
6243 parameter 'cls'
6244/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)
6245/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:
6246 parameter 'cls'
6247/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)
6248/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:
6249 parameter 'cls'
6250/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)
6251/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:
6252 parameter 'channel'
6253/home/william/Git/gnunet/src/cadet/cadet_api_drop_message.c:30: warning: End of list marker found without any preceding list items
6254/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)
6255/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:
6256 parameter 'cm'
6257/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)
6258/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:
6259 parameter 'msg'
6260/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
6261/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
6262/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
6263/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)
6264/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)
6265/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:
6266 parameter 'channel'
6267 parameter 'ping'
6268/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)
6269/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:
6270 parameter 'port'
6271/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)
6272/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:
6273 parameter 'service'
6274/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
6275/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
6276/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
6277/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
6278/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
6279/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.c:1201: warning: Found unknown command '\e1'
6280/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.c:1201: warning: Found unknown command '\e2'
6281/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.c:1706: warning: Found unknown command '\e1'
6282/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_channel.c:1706: warning: Found unknown command '\e2'
6283/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
6284/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
6285/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)
6286/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
6287/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
6288/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
6289/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
6290/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
6291/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
6292/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
6293/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)
6294/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)
6295/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
6296/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
6297/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
6298/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
6299/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
6300/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
6301/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
6302/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
6303/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
6304/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
6305/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
6306/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
6307/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
6308/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
6309/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
6310/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)
6311/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:
6312 parameter 'cid'
6313/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:
6314 parameter 'cid'
6315/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:
6316 parameter 'cid'
6317/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.c:982: warning: explicit link request to 'GCC_is_ready()' could not be resolved
6318/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)
6319/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
6320/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
6321/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
6322/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
6323/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
6324/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
6325/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:
6326 parameter 'cid'
6327/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.c:982: warning: explicit link request to 'GCC_is_ready()' could not be resolved
6328/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
6329/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_connection.c:993: warning: explicit link request to 'GCC_is_ready()' could not be resolved
6330/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
6331/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
6332/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
6333/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)
6334/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)
6335/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
6336/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)
6337/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)
6338/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
6339/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
6340/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:
6341 parameter 'priority'
6342/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)
6343/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:
6344 parameter 'ready'
6345/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:
6346 parameter 'mq'
6347/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:
6348 parameter 'peer_cls'
6349/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)
6350/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:
6351 parameter 'id'
6352/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_paths.c:471: warning: documented empty return type of GCPP_try_path_from_dht
6353/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
6354/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
6355/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
6356/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
6357/home/william/Git/gnunet/src/cadet/gnunet-service-cadet_paths.h:46: warning: documented empty return type of GCPP_try_path_from_dht
6358/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)
6359/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
6360/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
6361/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
6362/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
6363/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
6364/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)
6365/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
6366/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
6367/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
6368/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
6369/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
6370/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
6371/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
6372/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
6373/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
6374/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
6375/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
6376/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
6377/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
6378/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
6379/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
6380/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
6381/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
6382/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
6383/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
6384/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)
6385/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)
6386/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)
6387/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:
6388 parameter 'msg'
6389/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)
6390/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)
6391/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:
6392 parameter 'ax'
6393/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)
6394/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)
6395/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:
6396 parameter 't'
6397 parameter 'p'
6398/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)
6399/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)
6400/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:
6401 parameter 'ctn'
6402/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)
6403/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
6404/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
6405/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
6406/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)
6407/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)
6408/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:
6409 parameter 't'
6410 parameter 'p'
6411/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
6412/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
6413/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)
6414/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
6415/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
6416/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
6417/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
6418/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:
6419 parameter 'ctn'
6420/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)
6421/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
6422/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
6423/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
6424/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
6425/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)
6426/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)
6427/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)
6428/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:
6429 parameter 'hang'
6430/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
6431/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)
6432/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:
6433 parameter 'am'
6434/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)
6435/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:
6436 parameter 'am'
6437/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:
6438 parameter 'cls'
6439/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:
6440 parameter 'cls'
6441/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:
6442 parameter 'cls'
6443/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)
6444/home/william/Git/gnunet/src/core/gnunet-service-core_kx.c:491: warning: Illegal command @return as part of a \a command
6445/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:
6446 parameter 'mq'
6447/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)
6448/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:
6449 parameter 'cls'
6450/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)
6451/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:
6452 parameter 'kxinfo'
6453/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
6454/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
6455/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
6456/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)
6457/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:
6458 parameter 'kxinfo'
6459/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)
6460/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
6461/home/william/Git/gnunet/src/core/gnunet-service-core_sessions.c:477: warning: explicit link request to 'GSC_SESSIONS_dequeue()' could not be resolved
6462/home/william/Git/gnunet/src/core/gnunet-service-core_sessions.c:478: warning: explicit link request to 'GSC_CLIENTS_failed()' could not be resolved
6463/home/william/Git/gnunet/src/core/gnunet-service-core_sessions.c:483: warning: explicit link request to 'GSC_SESSIONS_dequeue()' could not be resolved
6464/home/william/Git/gnunet/src/core/gnunet-service-core_sessions.c:484: warning: explicit link request to 'GSC_CLIENTS_failed()' could not be resolved
6465/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
6466/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
6467/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
6468/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
6469/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
6470/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
6471/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
6472/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
6473/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
6474/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
6475/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
6476/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
6477/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)
6478/home/william/Git/gnunet/src/include/gnunet_curl_lib.h:334: warning: Found unknown command '\eh'
6479/home/william/Git/gnunet/src/include/gnunet_curl_lib.h:311: warning: Found unknown command '\eh'
6480/home/william/Git/gnunet/src/include/gnunet_curl_lib.h:253: warning: Found unknown command '\eh'
6481/home/william/Git/gnunet/src/include/gnunet_curl_lib.h:231: warning: Found unknown command '\eh'
6482/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:
6483 parameter 'rp'
6484 parameter 'rc'
6485/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)
6486/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:
6487 parameter 'xor_distance'
6488/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)
6489/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:
6490 parameter 'num_results'
6491/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)
6492/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:
6493 parameter 'num_results'
6494/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)
6495/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:
6496 parameter 'zSql'
6497/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)
6498/home/william/Git/gnunet/src/datastore/datastore_api.c:284: warning: The following parameter of delay_warning(void *cls) is not documented:
6499 parameter 'cls'
6500/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
6501/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
6502/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)
6503/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:
6504 parameter 'msg'
6505/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)
6506/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:
6507 parameter 'msg'
6508/home/william/Git/gnunet/src/datastore/gnunet-service-datastore.c:727: warning: explicit link request to 'GNUNET_SYSERROR' could not be resolved
6509/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)
6510/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:
6511 parameter 'dm'
6512/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)
6513/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:
6514 parameter 'dm'
6515/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)
6516/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:
6517 parameter 'msg'
6518/home/william/Git/gnunet/src/datastore/gnunet-service-datastore.c:989: warning: explicit link request to 'GNUNET_SYSERROR' could not be resolved
6519/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)
6520/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:
6521 parameter 'dm'
6522/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)
6523/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)
6524/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:
6525 parameter 'dm'
6526/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:
6527 parameter 'estimate'
6528/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:
6529 parameter 'estimate'
6530/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:
6531 parameter 'estimate'
6532/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)
6533/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:
6534 parameter 'num_results'
6535/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:
6536 parameter 'estimate'
6537/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:
6538 parameter 'estimate'
6539/home/william/Git/gnunet/src/include/gnunet_dht_service.h:297: warning: explicit link request to 'GNUNET_BLOCK_evaluate' could not be resolved
6540/home/william/Git/gnunet/src/dht/gnunet-dht-put.c:59: warning: explicit link request to 'GNUNET_DHT_DEMULTIPLEX_EVERYWHERE' could not be resolved
6541/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
6542/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
6543/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
6544/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
6545/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
6546/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
6547/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
6548/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)
6549/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:
6550 parameter 'get'
6551/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)
6552/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:
6553 parameter 'get'
6554/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)
6555/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:
6556 parameter 'seen'
6557/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)
6558/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:
6559 parameter 'seen'
6560/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)
6561/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:
6562 parameter 'dht_stop_msg'
6563/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)
6564/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)
6565/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
6566/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.h:153: warning: Found unknown command '\para'
6567/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:
6568 parameter 'pid'
6569/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)
6570/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)
6571/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:
6572 parameter 'put'
6573/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)
6574/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:
6575 parameter 'put'
6576/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)
6577/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:
6578 parameter 'query_hash'
6579/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)
6580/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:
6581 parameter 'query_hash'
6582/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)
6583/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:
6584 parameter 'prm'
6585/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)
6586/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:
6587 parameter 'prm'
6588/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)
6589/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:
6590 parameter 'hello'
6591/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)
6592/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)
6593/home/william/Git/gnunet/src/dht/gnunet-service-dht_neighbours.h:153: warning: Found unknown command '\para'
6594/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:
6595 parameter 'pid'
6596/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)
6597/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)
6598/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)
6599/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)
6600/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)
6601/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
6602/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
6603/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
6604/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
6605/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
6606/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
6607/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
6608/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)
6609/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:
6610 parameter 'cls'
6611/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)
6612/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)
6613/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:
6614 parameter 'ph'
6615/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:
6616 parameter 'mq'
6617/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)
6618/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:
6619 parameter 'err_msg'
6620/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)
6621/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)
6622/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)
6623/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:
6624 parameter 'ph'
6625/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)
6626/home/william/Git/gnunet/src/dns/dns_api.c:202: warning: argument 'cls' from the argument list of reconnect has multiple @param documentation sections
6627/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)
6628/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:
6629 parameter 'req'
6630/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)
6631/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)
6632/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:
6633 parameter 'cls'
6634/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)
6635/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)
6636/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:
6637 parameter 'data'
6638/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)
6639/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:
6640 parameter 'data'
6641/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)
6642/home/william/Git/gnunet/src/exit/gnunet-daemon-exit.c:3513: warning: explicit link request to 'udp_services' could not be resolved
6643/home/william/Git/gnunet/src/exit/gnunet-daemon-exit.c:3513: warning: explicit link request to 'tcp_services' could not be resolved
6644/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
6645/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
6646/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
6647/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
6648/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
6649/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
6650/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
6651/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
6652/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
6653/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
6654/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
6655/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
6656/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
6657/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
6658/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
6659/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
6660/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
6661/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
6662/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
6663/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
6664/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
6665/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
6666/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
6667/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
6668/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
6669/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
6670/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)
6671/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:
6672 parameter 'cm'
6673/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)
6674/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:
6675 parameter 'cm'
6676/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)
6677/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)
6678/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:
6679 parameter 'meta'
6680/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
6681/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
6682/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
6683/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
6684/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
6685/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
6686/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
6687/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
6688/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
6689/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
6690/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
6691/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
6692/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
6693/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
6694/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
6695/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
6696/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
6697/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
6698/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
6699/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
6700/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
6701/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
6702/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
6703/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)
6704/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:
6705 parameter 'cm'
6706/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)
6707/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:
6708 parameter 'cm'
6709/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)
6710/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
6711/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
6712/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
6713/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
6714/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
6715/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
6716/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
6717/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
6718/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
6719/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
6720/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
6721/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
6722/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
6723/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
6724/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
6725/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
6726/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
6727/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
6728/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
6729/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
6730/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
6731/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
6732/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
6733/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
6734/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
6735/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
6736/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
6737/home/william/Git/gnunet/src/fs/gnunet-service-fs.c:381: warning: explicit link request to 'GSF_pending_request_cancel()' could not be resolved
6738/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)
6739/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:
6740 parameter 'put'
6741/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)
6742/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:
6743 parameter 'ism'
6744/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)
6745/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:
6746 parameter 'um'
6747/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)
6748/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)
6749/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)
6750/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
6751/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
6752/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
6753/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
6754/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)
6755/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)
6756/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
6757/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
6758/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
6759/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
6760/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
6761/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
6762/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
6763/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
6764/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
6765/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
6766/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
6767/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
6768/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
6769/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
6770/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
6771/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
6772/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
6773/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
6774/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
6775/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
6776/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
6777/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
6778/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
6779/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
6780/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
6781/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
6782/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
6783/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
6784/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
6785/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
6786/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
6787/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
6788/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
6789/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
6790/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
6791/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
6792/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
6793/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
6794/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
6795/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
6796/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
6797/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
6798/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
6799/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
6800/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
6801/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
6802/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
6803/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
6804/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
6805/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
6806/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
6807/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)
6808/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:
6809 parameter 'mrp'
6810/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
6811/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
6812/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)
6813/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
6814/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)
6815/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:
6816 parameter 'cls'
6817/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)
6818/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)
6819/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:
6820 parameter 'lookup_msg'
6821/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)
6822/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:
6823 parameter 'lookup_msg'
6824/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:
6825 parameter 'ltr'
6826/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)
6827/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)
6828/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)
6829/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:
6830 parameter 'priv'
6831 parameter 'ego_name'
6832/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
6833/home/william/Git/gnunet/src/gns/gnunet-gns-proxy.c:1777: warning: explicit link request to 'MHD_YES' could not be resolved
6834/home/william/Git/gnunet/src/gns/gnunet-gns-proxy.c:1825: warning: explicit link request to 'MHD_YES' could not be resolved
6835/home/william/Git/gnunet/src/gns/gnunet-gns-proxy.c:1826: warning: explicit link request to 'MHD_NO' could not be resolved
6836/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)
6837/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:
6838 parameter 'cnc'
6839/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
6840/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)
6841/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)
6842/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)
6843/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:
6844 parameter 'sh_msg'
6845/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)
6846/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:
6847 parameter 'service'
6848/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
6849/home/william/Git/gnunet/src/gns/gnunet-service-gns_resolver.c:735: warning: explicit link request to 'LSD0001' could not be resolved
6850/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)
6851/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
6852/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
6853/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
6854/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
6855/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
6856/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
6857/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
6858/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
6859/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
6860/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
6861/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
6862/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
6863/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
6864/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
6865/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
6866/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
6867/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)
6868/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)
6869/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)
6870/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:
6871 parameter 'cls'
6872/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)
6873/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)
6874/home/william/Git/gnunet/src/gns/plugin_rest_gns.c:165: warning: The following parameter of cleanup_handle(void *cls) is not documented:
6875 parameter 'cls'
6876/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)
6877/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)
6878/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)
6879/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)
6880/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:
6881 parameter 'rest_handle'
6882/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)
6883/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)
6884/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:
6885 parameter 'ctr'
6886 parameter 'key'
6887 parameter 'exp'
6888/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)
6889/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:
6890 parameter 'key'
6891 parameter 'exp'
6892/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)
6893/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:
6894 parameter 'block'
6895/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)
6896/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)
6897/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:
6898 parameter 'ctr'
6899 parameter 'key'
6900 parameter 'exp'
6901/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)
6902/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:
6903 parameter 'key'
6904 parameter 'exp'
6905/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:661: warning: explicit link request to 'GNUNET_GNSRECORD_PublicKey' could not be resolved
6906/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)
6907/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:
6908 parameter 'rd_count_public'
6909/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)
6910/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:
6911 parameter 'rd_count_public'
6912/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)
6913/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)
6914/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)
6915/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)
6916/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:
6917 parameter 'rd'
6918 parameter 'rd_count'
6919 parameter 'label'
6920/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)
6921/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)
6922/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)
6923/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)
6924/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:
6925 parameter 'rd'
6926 parameter 'rd_count'
6927 parameter 'label'
6928/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)
6929/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)
6930/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)
6931/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:
6932 parameter 'data'
6933 parameter 'rd'
6934/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)
6935/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)
6936/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)
6937/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:
6938 parameter 'gnsrecord_info'
6939 parameter 'data'
6940/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)
6941/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:
6942 parameter 'rd'
6943 parameter 'rd_count'
6944 parameter 'name'
6945/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:
6946 parameter 'rd_count'
6947/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)
6948/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)
6949/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)
6950/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)
6951/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:
6952 parameter 'internal_cls'
6953/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)
6954/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
6955/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:
6956 parameter 'internal_cls'
6957/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)
6958/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_server.c:290: warning: explicit link request to 'MHD_NO' could not be resolved
6959/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_server.c:295: warning: explicit link request to 'MHD_YES' could not be resolved
6960/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_server.c:295: warning: explicit link request to 'MHD_NO' could not be resolved
6961/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
6962/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
6963/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
6964/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
6965/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_server.c:341: warning: explicit link request to 'MHD_RequestCompletedCallback' could not be resolved
6966/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
6967/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_server.c:344: warning: explicit link request to 'MHD_YES' could not be resolved
6968/home/william/Git/gnunet/src/hostlist/gnunet-daemon-hostlist_server.c:345: warning: explicit link request to 'MHD_NO' could not be resolved
6969/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)
6970/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)
6971/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)
6972/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:
6973 parameter 'mq'
6974/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)
6975/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)
6976/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:
6977 parameter 'gdm'
6978/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)
6979/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)
6980/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:
6981 parameter 'sdm'
6982/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)
6983/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)
6984/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:
6985 parameter 'crm'
6986/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)
6987/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)
6988/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:
6989 parameter 'rm'
6990/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)
6991/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)
6992/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:
6993 parameter 'dm'
6994/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)
6995/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:
6996 parameter 'service'
6997/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)
6998/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:
6999 parameter 'type'
7000/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)
7001/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:
7002 parameter 'suffix'
7003/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)
7004/home/william/Git/gnunet/src/identity/plugin_rest_identity.c:279: warning: The following parameter of cleanup_handle(void *cls) is not documented:
7005 parameter 'cls'
7006/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)
7007/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:
7008 parameter 'pk'
7009/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)
7010/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)
7011/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)
7012/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)
7013/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:
7014 parameter 'rest_handle'
7015/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
7016/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
7017/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
7018/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
7019/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
7020/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
7021/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
7022/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
7023/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
7024/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
7025/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:
7026 parameter 'direction'
7027 parameter 'proc2'
7028 parameter 'proc2_cls'
7029/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:
7030 parameter 'direction'
7031 parameter 'proc2'
7032 parameter 'proc2_cls'
7033/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)
7034/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
7035/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
7036/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:
7037 parameter 'sub_attr'
7038/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
7039/home/william/Git/gnunet/src/abe/abe.c:181: warning: documented empty return type of GNUNET_ABE_cpabe_delete_master_key
7040/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
7041/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
7042/home/william/Git/gnunet/src/abe/abe.c:226: warning: documented empty return type of GNUNET_ABE_cpabe_delete_key
7043/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
7044/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
7045/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)
7046/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)
7047/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
7048/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
7049/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
7050/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
7051/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
7052/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
7053/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
7054/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
7055/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
7056/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
7057/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
7058/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
7059/home/william/Git/gnunet/src/include/gnunet_ats_service.h:345: warning: Found unknown command '\ar'
7060/home/william/Git/gnunet/src/include/gnunet_ats_service.h:358: warning: Found unknown command '\ar'
7061/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
7062/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
7063/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
7064/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
7065/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
7066/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
7067/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
7068/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
7069/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
7070/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
7071/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
7072/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
7073/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
7074/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
7075/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
7076/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
7077/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
7078/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
7079/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
7080/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
7081/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
7082/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
7083/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
7084/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
7085/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
7086/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
7087/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
7088/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
7089/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
7090/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
7091/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
7092/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
7093/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
7094/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
7095/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
7096/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
7097/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
7098/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
7099/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
7100/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
7101/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
7102/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
7103/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
7104/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
7105/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
7106/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
7107/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
7108/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
7109/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
7110/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)
7111/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:
7112 parameter 'cls'
7113/home/william/Git/gnunet/src/include/gnunet_block_group_lib.h:94: warning: Found unknown command '\bg'
7114/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)
7115/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:
7116 parameter 'bg'
7117/home/william/Git/gnunet/src/include/gnunet_block_lib.h:277: warning: Found unknown command '\bg2'
7118/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
7119/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
7120/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
7121/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
7122/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
7123/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
7124/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
7125/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
7126/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
7127/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
7128/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
7129/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
7130/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
7131/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
7132/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
7133/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
7134/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
7135/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
7136/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)
7137/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
7138/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
7139/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
7140/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
7141/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
7142/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)
7143/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:
7144 parameter 'cm'
7145/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
7146/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
7147/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
7148/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
7149/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
7150/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
7151/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)
7152/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
7153/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
7154/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
7155/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
7156/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)
7157/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
7158/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
7159/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
7160/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)
7161/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:
7162 parameter 'len2'
7163/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
7164/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
7165/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
7166/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
7167/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
7168/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
7169/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
7170/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
7171/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
7172/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
7173/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
7174/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
7175/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
7176/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
7177/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
7178/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
7179/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
7180/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
7181/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
7182/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)
7183/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:
7184 parameter 'p'
7185/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)
7186/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:
7187 parameter 'p'
7188/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)
7189/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:
7190 parameter 'p'
7191/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)
7192/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:
7193 parameter 'p'
7194/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
7195/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
7196/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
7197/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
7198/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
7199/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
7200/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
7201/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
7202/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
7203/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
7204/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
7205/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
7206/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
7207/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
7208/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
7209/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
7210/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
7211/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
7212/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
7213/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
7214/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
7215/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
7216/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
7217/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
7218/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
7219/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
7220/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
7221/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
7222/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
7223/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
7224/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
7225/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
7226/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
7227/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
7228/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
7229/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)
7230/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
7231/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
7232/home/william/Git/gnunet/src/include/gnunet_configuration_lib.h:174: warning: Found unknown command '\INLINE'
7233/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
7234/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
7235/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
7236/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
7237/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
7238/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
7239/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
7240/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
7241/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
7242/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
7243/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
7244/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
7245/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)
7246/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
7247/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
7248/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
7249/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
7250/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
7251/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
7252/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
7253/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
7254/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
7255/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
7256/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
7257/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
7258/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
7259/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
7260/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
7261/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
7262/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
7263/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
7264/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
7265/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
7266/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
7267/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
7268/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
7269/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
7270/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
7271/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
7272/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
7273/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
7274/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
7275/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
7276/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
7277/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
7278/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
7279/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
7280/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
7281/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
7282/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
7283/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
7284/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
7285/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
7286/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
7287/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
7288/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
7289/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
7290/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
7291/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
7292/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
7293/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
7294/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
7295/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
7296/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
7297/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
7298/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
7299/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
7300/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
7301/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
7302/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
7303/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
7304/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
7305/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
7306/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
7307/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
7308/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
7309/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
7310/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
7311/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
7312/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
7313/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
7314/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
7315/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
7316/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
7317/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
7318/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
7319/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
7320/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
7321/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
7322/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
7323/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
7324/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
7325/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
7326/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
7327/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
7328/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
7329/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
7330/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
7331/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
7332/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
7333/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
7334/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
7335/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
7336/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
7337/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
7338/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
7339/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
7340/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
7341/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
7342/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
7343/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
7344/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
7345/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
7346/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
7347/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
7348/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
7349/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
7350/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
7351/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
7352/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
7353/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
7354/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
7355/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
7356/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
7357/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
7358/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
7359/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
7360/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
7361/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
7362/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
7363/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
7364/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
7365/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
7366/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
7367/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
7368/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
7369/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
7370/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
7371/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
7372/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
7373/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
7374/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
7375/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
7376/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
7377/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
7378/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
7379/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
7380/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
7381/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
7382/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
7383/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
7384/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
7385/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
7386/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
7387/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
7388/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
7389/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
7390/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
7391/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
7392/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
7393/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
7394/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
7395/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
7396/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
7397/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
7398/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
7399/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
7400/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
7401/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
7402/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
7403/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
7404/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
7405/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
7406/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
7407/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
7408/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
7409/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
7410/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
7411/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
7412/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
7413/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
7414/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
7415/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
7416/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
7417/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
7418/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
7419/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
7420/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
7421/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
7422/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
7423/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
7424/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
7425/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
7426/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
7427/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
7428/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
7429/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
7430/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
7431/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
7432/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
7433/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
7434/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
7435/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
7436/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
7437/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
7438/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
7439/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
7440/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
7441/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
7442/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
7443/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
7444/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
7445/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
7446/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
7447/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
7448/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
7449/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
7450/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
7451/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
7452/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
7453/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
7454/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
7455/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
7456/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
7457/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
7458/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
7459/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
7460/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
7461/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
7462/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
7463/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
7464/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
7465/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
7466/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
7467/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
7468/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
7469/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
7470/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
7471/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
7472/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
7473/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
7474/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
7475/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
7476/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
7477/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
7478/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
7479/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
7480/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
7481/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
7482/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
7483/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
7484/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
7485/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
7486/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
7487/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
7488/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
7489/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
7490/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
7491/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
7492/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
7493/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
7494/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
7495/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
7496/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
7497/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
7498/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
7499/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
7500/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
7501/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
7502/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
7503/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
7504/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
7505/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
7506/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
7507/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
7508/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
7509/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
7510/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
7511/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
7512/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)
7513/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:
7514 parameter 'pub'
7515/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)
7516/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:
7517 parameter 'pub'
7518/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)
7519/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:
7520 parameter 'pub'
7521/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
7522/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
7523/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
7524/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
7525/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
7526/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
7527/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
7528/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
7529/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
7530/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
7531/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
7532/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
7533/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
7534/home/william/Git/gnunet/src/util/crypto_random.c:243: warning: explicit link request to 'GNUNET_RANDOM_QUALITY_STRONG' could not be resolved
7535/home/william/Git/gnunet/src/util/crypto_random.c:244: warning: explicit link request to 'GNUNET_RANDOM_QUALITY_WEAK' could not be resolved
7536/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
7537/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
7538/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
7539/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
7540/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
7541/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
7542/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
7543/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
7544/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
7545/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
7546/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
7547/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
7548/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
7549/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
7550/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
7551/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
7552/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
7553/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
7554/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
7555/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
7556/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
7557/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
7558/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
7559/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
7560/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
7561/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
7562/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)
7563/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:
7564 parameter 'pub'
7565/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
7566/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
7567/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
7568/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
7569/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
7570/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
7571/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)
7572/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:
7573 parameter 'edc'
7574/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1823: warning: explicit link request to 'GNUNET_CRRYPTO_ecdh_eddsa' could not be resolved
7575/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1839: warning: explicit link request to 'GNUNET_CRRYPTO_ecdh_ecdsa' could not be resolved
7576/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1855: warning: explicit link request to 'GNUNET_CRRYPTO_eddsa_ecdh' could not be resolved
7577/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1870: warning: explicit link request to 'GNUNET_CRRYPTO_ecdsa_ecdh' could not be resolved
7578/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)
7579/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
7580/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
7581/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)
7582/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:
7583 parameter 'purpose'
7584/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)
7585/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:
7586 parameter 'purpose'
7587/home/william/Git/gnunet/src/util/crypto_paillier.c:331: warning: Found unknown command '\private_key'
7588/home/william/Git/gnunet/src/util/crypto_paillier.c:336: warning: Found unknown command '\private_key'
7589/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
7590/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
7591/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
7592/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
7593/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
7594/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
7595/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
7596/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
7597/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)
7598/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:
7599 parameter 'bks'
7600/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2763: warning: explicit link request to 'GNUNET_CRYPTO_rsa_sign()' could not be resolved
7601/home/william/Git/gnunet/src/include/gnunet_curl_lib.h:231: warning: Found unknown command '\eh'
7602/home/william/Git/gnunet/src/include/gnunet_curl_lib.h:253: warning: Found unknown command '\eh'
7603/home/william/Git/gnunet/src/include/gnunet_curl_lib.h:311: warning: Found unknown command '\eh'
7604/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)
7605/home/william/Git/gnunet/src/include/gnunet_curl_lib.h:334: warning: Found unknown command '\eh'
7606/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:
7607 parameter 'rp'
7608 parameter 'rc'
7609/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)
7610/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:
7611 parameter 'xor_distance'
7612/home/william/Git/gnunet/src/include/gnunet_datastore_plugin.h:139: warning: explicit link request to 'GNUNET_SYSERROR' could not be resolved
7613/home/william/Git/gnunet/src/include/gnunet_datastore_plugin.h:239: warning: explicit link request to 'GNUNET_SYSERROR' could not be resolved
7614/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
7615/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
7616/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
7617/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
7618/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
7619/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
7620/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
7621/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
7622/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
7623/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
7624/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
7625/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
7626/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
7627/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
7628/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
7629/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
7630/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
7631/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
7632/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
7633/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
7634/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
7635/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
7636/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
7637/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
7638/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
7639/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
7640/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
7641/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
7642/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
7643/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
7644/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
7645/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
7646/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
7647/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
7648/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
7649/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
7650/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
7651/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
7652/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
7653/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
7654/home/william/Git/gnunet/src/include/gnunet_dht_service.h:297: warning: explicit link request to 'GNUNET_BLOCK_evaluate' could not be resolved
7655/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)
7656/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:
7657 parameter 'glob_pattern'
7658/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
7659/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
7660/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
7661/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
7662/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
7663/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
7664/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
7665/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
7666/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
7667/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)
7668/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
7669/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
7670/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
7671/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
7672/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
7673/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
7674/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
7675/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
7676/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
7677/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
7678/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
7679/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
7680/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
7681/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
7682/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
7683/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
7684/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
7685/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
7686/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
7687/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
7688/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
7689/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
7690/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
7691/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
7692/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
7693/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
7694/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)
7695/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:
7696 parameter 'meta'
7697/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
7698/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
7699/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
7700/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
7701/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
7702/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
7703/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
7704/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
7705/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
7706/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
7707/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
7708/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
7709/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
7710/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
7711/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
7712/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
7713/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
7714/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
7715/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
7716/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
7717/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
7718/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
7719/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
7720/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
7721/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
7722/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
7723/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
7724/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
7725/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
7726/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
7727/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
7728/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
7729/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
7730/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
7731/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
7732/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
7733/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
7734/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
7735/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
7736/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
7737/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
7738/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
7739/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
7740/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
7741/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
7742/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
7743/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
7744/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
7745/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
7746/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
7747/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
7748/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
7749/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
7750/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
7751/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
7752/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
7753/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
7754/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
7755/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
7756/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
7757/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
7758/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
7759/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
7760/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
7761/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
7762/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
7763/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
7764/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
7765/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
7766/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
7767/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
7768/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
7769/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
7770/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
7771/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
7772/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
7773/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
7774/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
7775/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
7776/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
7777/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
7778/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
7779/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
7780/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
7781/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
7782/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
7783/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
7784/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
7785/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
7786/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
7787/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
7788/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
7789/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
7790/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
7791/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)
7792/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)
7793/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
7794/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
7795/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
7796/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
7797/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
7798/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
7799/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
7800/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
7801/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
7802/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
7803/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
7804/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
7805/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
7806/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
7807/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)
7808/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:
7809 parameter 'rd'
7810 parameter 'rd_count'
7811 parameter 'name'
7812/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:
7813 parameter 'rd_count'
7814/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
7815/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
7816/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
7817/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
7818/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
7819/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
7820/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
7821/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
7822/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
7823/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
7824/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
7825/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
7826/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
7827/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
7828/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
7829/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
7830/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
7831/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
7832/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
7833/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
7834/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
7835/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
7836/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
7837/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
7838/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
7839/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)
7840/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:
7841 parameter 'block'
7842/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
7843/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
7844/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
7845/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
7846/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
7847/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
7848/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
7849/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:661: warning: explicit link request to 'GNUNET_GNSRECORD_PublicKey' could not be resolved
7850/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)
7851/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:
7852 parameter 'rd_count_public'
7853/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)
7854/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:
7855 parameter 'rd_count_public'
7856/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
7857/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
7858/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
7859/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
7860/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
7861/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
7862/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
7863/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
7864/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
7865/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
7866/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
7867/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
7868/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
7869/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
7870/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
7871/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
7872/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
7873/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
7874/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
7875/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
7876/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
7877/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
7878/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
7879/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
7880/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
7881/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)
7882/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)
7883/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)
7884/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)
7885/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
7886/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
7887/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
7888/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
7889/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
7890/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
7891/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)
7892/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)
7893/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
7894/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
7895/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
7896/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
7897/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
7898/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
7899/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
7900/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
7901/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
7902/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
7903/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
7904/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
7905/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
7906/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
7907/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
7908/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
7909/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
7910/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
7911/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
7912/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)
7913/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
7914/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
7915/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
7916/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)
7917/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
7918/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
7919/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
7920/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
7921/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
7922/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)
7923/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
7924/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
7925/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
7926/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
7927/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)
7928/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
7929/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
7930/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
7931/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)
7932/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:
7933 parameter 'type'
7934/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)
7935/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
7936/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
7937/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
7938/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
7939/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)
7940/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:
7941 parameter 'error_line'
7942/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)
7943/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:
7944 parameter 't'
7945/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
7946/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)
7947/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:
7948 parameter 'json'
7949/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)
7950/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)
7951/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)
7952/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)
7953/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:
7954 parameter 'identity_cls'
7955 parameter 'msg_cls'
7956/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)
7957/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)
7958/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:
7959 parameter 'handle'
7960/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)
7961/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)
7962/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:
7963 parameter 'handle'
7964/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)
7965/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)
7966/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:
7967 parameter 'handle'
7968/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)
7969/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)
7970/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:
7971 parameter 'handle'
7972/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)
7973/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)
7974/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:
7975 parameter 'handle'
7976/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)
7977/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)
7978/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:
7979 parameter 'room'
7980/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:794: warning: found </i> tag without matching <i>
7981/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:794: warning: found </i> tag without matching <i>
7982/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)
7983/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)
7984/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:
7985 parameter 'room'
7986/home/william/Git/gnunet/src/include/gnunet_mhd_compat.h:25: warning: explicit link request to 'MHD_VERSION' could not be resolved
7987/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:57: warning: end of comment block while expecting command </code>
7988/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:35: warning: found </tt> tag without matching <tt>
7989/home/william/Git/gnunet/src/include/gnunet_mq_lib.h:69: warning: end of comment block while expecting command </code>
7990/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)
7991/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:
7992 parameter 'm'
7993/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)
7994/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:
7995 parameter 'm'
7996/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
7997/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
7998/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
7999/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)
8000/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)
8001/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)
8002/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)
8003/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)
8004/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)
8005/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:
8006 parameter 'env_head'
8007 parameter 'env_tail'
8008 parameter 'env'
8009/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)
8010/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)
8011/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)
8012/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)
8013/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)
8014/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)
8015/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:
8016 parameter 'env_head'
8017 parameter 'env_tail'
8018 parameter 'env'
8019/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)
8020/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)
8021/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)
8022/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)
8023/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)
8024/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)
8025/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:
8026 parameter 'env_head'
8027 parameter 'env_tail'
8028 parameter 'env'
8029/home/william/Git/gnunet/src/include/gnunet_mst_lib.h:64: warning: explicit link request to 'GNUNET_mst_destroy' could not be resolved
8030/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
8031/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
8032/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
8033/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
8034/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
8035/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)
8036/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)
8037/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:
8038 parameter 'sock'
8039/home/william/Git/gnunet/src/include/gnunet_my_lib.h:355: warning: Found unknown command '\spec'
8040/home/william/Git/gnunet/src/include/gnunet_my_lib.h:356: warning: Found unknown command '\spec'
8041/home/william/Git/gnunet/src/include/gnunet_my_lib.h:125: warning: Found unknown command '\oaran'
8042/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
8043/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
8044/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
8045/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
8046/home/william/Git/gnunet/src/include/gnunet_my_lib.h:260: warning: Found unknown command '\spec'
8047/home/william/Git/gnunet/src/include/gnunet_my_lib.h:261: warning: Found unknown command '\oaran'
8048/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)
8049/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)
8050/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:
8051 parameter 'ptr'
8052/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)
8053/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
8054/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)
8055/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)
8056/home/william/Git/gnunet/src/include/gnunet_my_lib.h:470: warning: explicit link request to 'GNUNET_MY_exect_prepared()' could not be resolved
8057/home/william/Git/gnunet/src/include/gnunet_my_lib.h:473: warning: explicit link request to 'GNUNET_MY_exect_prepared()' could not be resolved
8058/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
8059/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
8060/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
8061/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
8062/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
8063/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
8064/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
8065/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
8066/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
8067/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
8068/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
8069/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
8070/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
8071/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
8072/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
8073/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
8074/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
8075/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
8076/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
8077/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
8078/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
8079/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
8080/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
8081/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
8082/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)
8083/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
8084/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
8085/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
8086/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
8087/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
8088/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
8089/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
8090/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
8091/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
8092/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
8093/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
8094/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
8095/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
8096/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
8097/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
8098/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
8099/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
8100/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
8101/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
8102/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
8103/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
8104/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
8105/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
8106/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
8107/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
8108/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
8109/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
8110/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
8111/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
8112/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
8113/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
8114/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
8115/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
8116/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
8117/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
8118/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
8119/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
8120/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
8121/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
8122/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
8123/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
8124/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
8125/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
8126/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
8127/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
8128/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
8129/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
8130/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
8131/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
8132/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
8133/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
8134/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
8135/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
8136/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
8137/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
8138/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
8139/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
8140/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
8141/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
8142/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
8143/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
8144/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
8145/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
8146/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
8147/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
8148/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
8149/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
8150/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
8151/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
8152/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
8153/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
8154/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
8155/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
8156/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
8157/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
8158/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
8159/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
8160/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
8161/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
8162/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
8163/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
8164/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
8165/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
8166/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
8167/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
8168/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
8169/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
8170/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
8171/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
8172/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
8173/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
8174/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
8175/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
8176/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
8177/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
8178/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
8179/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
8180/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
8181/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
8182/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
8183/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
8184/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
8185/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
8186/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
8187/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
8188/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
8189/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
8190/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
8191/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
8192/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
8193/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
8194/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
8195/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
8196/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
8197/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
8198/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
8199/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
8200/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
8201/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
8202/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
8203/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
8204/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)
8205/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
8206/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
8207/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
8208/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
8209/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
8210/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
8211/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
8212/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
8213/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
8214/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
8215/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
8216/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
8217/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
8218/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
8219/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
8220/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
8221/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
8222/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
8223/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
8224/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
8225/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:119: warning: Found unknown command '\oaran'
8226/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:
8227 parameter 'ptr_size'
8228/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)
8229/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:
8230 parameter 't'
8231/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
8232/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
8233/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
8234/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
8235/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
8236/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
8237/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)
8238/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
8239/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:896: warning: Found unknown command '\es'
8240/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:925: warning: Found unknown command '\es'
8241/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
8242/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
8243/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
8244/home/william/Git/gnunet/src/include/gnunet_program_lib.h:80: warning: explicit link request to 'a' could not be resolved
8245/home/william/Git/gnunet/src/include/gnunet_program_lib.h:107: warning: explicit link request to 'a' could not be resolved
8246/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
8247/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
8248/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
8249/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
8250/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
8251/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)
8252/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:
8253 parameter 'al'
8254/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)
8255/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:
8256 parameter 'al'
8257/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)
8258/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
8259/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
8260/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
8261/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
8262/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:
8263 parameter 'al'
8264/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)
8265/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:
8266 parameter 'al'
8267/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
8268/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
8269/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)
8270/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:
8271 parameter 'al'
8272/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)
8273/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:
8274 parameter 'credentials'
8275/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)
8276/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)
8277/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:
8278 parameter 'al'
8279/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)
8280/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:
8281 parameter 'attrs'
8282 parameter 'att_name'
8283/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)
8284/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:
8285 parameter 'credentials'
8286/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
8287/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
8288/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)
8289/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)
8290/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
8291/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)
8292/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
8293/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
8294/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
8295/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)
8296/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:
8297 parameter 'cred'
8298/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)
8299/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)
8300/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)
8301/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:
8302 parameter 'al'
8303/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)
8304/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
8305/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
8306/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
8307/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)
8308/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)
8309/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
8310/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
8311/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
8312/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
8313/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
8314/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
8315/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
8316/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
8317/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
8318/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
8319/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
8320/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
8321/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
8322/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
8323/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
8324/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
8325/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
8326/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
8327/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
8328/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
8329/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
8330/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
8331/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
8332/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
8333/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
8334/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
8335/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)
8336/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
8337/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
8338/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
8339/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
8340/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
8341/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)
8342/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)
8343/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:
8344 parameter 'ait'
8345/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)
8346/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:
8347 parameter 'ait'
8348/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:386: warning: Found unknown command '\GNUNET_RECLAIM_ticket_consume'
8349/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
8350/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
8351/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
8352/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
8353/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
8354/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
8355/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
8356/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
8357/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
8358/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
8359/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
8360/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
8361/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
8362/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
8363/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
8364/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
8365/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
8366/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
8367/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
8368/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
8369/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
8370/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
8371/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
8372/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
8373/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
8374/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
8375/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
8376/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
8377/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
8378/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
8379/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
8380/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
8381/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
8382/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
8383/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
8384/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
8385/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
8386/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
8387/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
8388/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
8389/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
8390/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
8391/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
8392/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
8393/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)
8394/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)
8395/home/william/Git/gnunet/src/revocation/revocation_api.c:298: warning: explicit link request to 'GNUNET_REVOCATION_sign_revocation' could not be resolved
8396/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)
8397/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
8398/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
8399/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
8400/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
8401/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)
8402/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:
8403 parameter 'difficulty'
8404/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
8405/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
8406/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)
8407/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)
8408/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)
8409/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
8410/home/william/Git/gnunet/src/include/gnunet_revocation_service.h:258: warning: documented empty return type of GNUNET_REVOCATION_pow_stop
8411/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
8412/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
8413/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
8414/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
8415/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
8416/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)
8417/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)
8418/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
8419/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
8420/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
8421/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)
8422/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)
8423/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:
8424 parameter 'num_updates'
8425 parameter 'view_update_cb'
8426/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)
8427/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:
8428 parameter 'stream_input_cb'
8429/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
8430/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
8431/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
8432/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
8433/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
8434/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
8435/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
8436/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)
8437/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
8438/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
8439/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
8440/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
8441/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
8442/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
8443/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
8444/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
8445/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
8446/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
8447/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
8448/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
8449/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
8450/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
8451/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
8452/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
8453/home/william/Git/gnunet/src/include/gnunet_scheduler_lib.h:906: warning: documented empty return type of GNUNET_SCHEDULER_set_select
8454/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)
8455/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)
8456/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:
8457 parameter 'plaintext'
8458/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
8459/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
8460/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
8461/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
8462/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,...)
8463/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,...)
8464/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:
8465 parameter 'service_options'
8466 parameter 'init_cb'
8467 parameter '...'
8468/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
8469/home/william/Git/gnunet/src/include/gnunet_service_lib.h:415: warning: explicit link request to 'GNUNET_SERVICE_stop_listening()' could not be resolved
8470/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
8471/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
8472/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
8473/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
8474/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
8475/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
8476/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
8477/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
8478/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
8479/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
8480/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
8481/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
8482/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
8483/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
8484/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
8485/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:
8486 parameter 'options'
8487/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
8488/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
8489/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
8490/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
8491/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
8492/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
8493/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
8494/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
8495/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
8496/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
8497/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:
8498 parameter 'options'
8499/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
8500/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
8501/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
8502/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
8503/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
8504/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
8505/home/william/Git/gnunet/src/include/gnunet_seti_service.h:176: warning: explicit link request to 'GNUNET_SETI_STATUS_OK' could not be resolved
8506/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
8507/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
8508/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
8509/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
8510/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
8511/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
8512/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
8513/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
8514/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
8515/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
8516/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
8517/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
8518/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
8519/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
8520/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
8521/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
8522/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
8523/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
8524/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
8525/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
8526/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
8527/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
8528/home/william/Git/gnunet/src/include/gnunet_setu_service.h:221: warning: explicit link request to 'GNUNET_SETU_STATUS_OK' could not be resolved
8529/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
8530/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
8531/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
8532/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
8533/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
8534/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
8535/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
8536/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
8537/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
8538/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
8539/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
8540/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
8541/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
8542/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
8543/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
8544/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)
8545/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
8546/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
8547/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
8548/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
8549/home/william/Git/gnunet/src/include/gnunet_sq_lib.h:92: warning: Found unknown command '\oaran'
8550/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:
8551 parameter 'ptr_size'
8552/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)
8553/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)
8554/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
8555/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:
8556 parameter 'stmt'
8557/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
8558/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
8559/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
8560/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
8561/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
8562/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
8563/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
8564/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
8565/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
8566/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
8567/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
8568/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
8569/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
8570/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
8571/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
8572/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
8573/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
8574/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)
8575/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:
8576 parameter 'in'
8577/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)
8578/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:
8579 parameter 'out'
8580/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)
8581/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:
8582 parameter 'out'
8583/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
8584/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
8585/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
8586/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
8587/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
8588/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
8589/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
8590/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
8591/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
8592/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
8593/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
8594/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
8595/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
8596/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
8597/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
8598/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
8599/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
8600/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
8601/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
8602/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
8603/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
8604/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
8605/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
8606/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
8607/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
8608/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
8609/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
8610/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
8611/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
8612/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
8613/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
8614/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
8615/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
8616/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
8617/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
8618/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
8619/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
8620/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
8621/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
8622/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
8623/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
8624/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
8625/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
8626/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
8627/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
8628/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
8629/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
8630/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
8631/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
8632/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
8633/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
8634/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
8635/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
8636/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
8637/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
8638/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
8639/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
8640/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
8641/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
8642/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
8643/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
8644/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
8645/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
8646/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
8647/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
8648/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
8649/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
8650/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
8651/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
8652/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
8653/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
8654/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
8655/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
8656/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
8657/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
8658/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
8659/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
8660/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
8661/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
8662/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
8663/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
8664/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
8665/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
8666/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
8667/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
8668/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
8669/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
8670/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
8671/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
8672/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
8673/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
8674/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
8675/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
8676/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
8677/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
8678/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
8679/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
8680/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
8681/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
8682/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
8683/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
8684/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
8685/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
8686/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
8687/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
8688/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
8689/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
8690/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
8691/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
8692/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)
8693/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
8694/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
8695/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
8696/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
8697/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)
8698/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
8699/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
8700/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
8701/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
8702/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
8703/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
8704/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
8705/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
8706/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
8707/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
8708/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
8709/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
8710/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
8711/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
8712/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
8713/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
8714/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
8715/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
8716/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
8717/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
8718/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
8719/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
8720/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
8721/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
8722/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
8723/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
8724/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
8725/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
8726/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
8727/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
8728/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
8729/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:
8730 parameter 'testdir'
8731/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
8732/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
8733/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)
8734/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)
8735/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)
8736/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)
8737/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
8738/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)
8739/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
8740/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
8741/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)
8742/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:
8743 parameter 'command'
8744/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)
8745/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:
8746 parameter 'command'
8747/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
8748/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
8749/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
8750/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
8751/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)
8752/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:
8753 parameter 'ts'
8754/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
8755/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
8756/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)
8757/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
8758/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
8759/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
8760/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
8761/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
8762/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
8763/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
8764/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
8765/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)
8766/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
8767/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
8768/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
8769/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
8770/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
8771/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)
8772/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
8773/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
8774/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
8775/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
8776/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
8777/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
8778/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
8779/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
8780/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
8781/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)
8782/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:
8783 parameter 'u_qh'
8784/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
8785/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
8786/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
8787/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
8788/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)
8789/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
8790/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
8791/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
8792/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
8793/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
8794/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
8795/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
8796/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)
8797/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
8798/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
8799/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
8800/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
8801/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
8802/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
8803/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
8804/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
8805/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
8806/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
8807/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
8808/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
8809/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
8810/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
8811/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)
8812/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
8813/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
8814/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
8815/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
8816/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
8817/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
8818/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
8819/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
8820/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
8821/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
8822/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
8823/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
8824/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
8825/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
8826/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
8827/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
8828/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
8829/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
8830/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
8831/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
8832/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
8833/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
8834/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
8835/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
8836/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
8837/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
8838/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
8839/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
8840/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
8841/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
8842/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
8843/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
8844/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
8845/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
8846/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
8847/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
8848/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
8849/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
8850/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
8851/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
8852/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
8853/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
8854/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
8855/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
8856/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
8857/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
8858/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
8859/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
8860/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
8861/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
8862/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
8863/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
8864/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
8865/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
8866/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
8867/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
8868/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
8869/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)
8870/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:
8871 parameter 'error_line'
8872/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)
8873/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:
8874 parameter 'json'
8875/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)
8876/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:
8877 parameter 't'
8878/home/william/Git/gnunet/src/json/json_mhd.c:253: warning: explicit link request to 'GNUNET_JSON_post_parser_callback()' could not be resolved
8879/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)
8880/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)
8881/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:
8882 parameter 'cls'
8883/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)
8884/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)
8885/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:110: warning: The following parameter of shutdown_hook(void *cls) is not documented:
8886 parameter 'cls'
8887/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)
8888/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)
8889/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:190: warning: The following parameter of listen_stdio(void *cls) is not documented:
8890 parameter 'cls'
8891/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)
8892/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)
8893/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:150: warning: The following parameter of read_stdio(void *cls) is not documented:
8894 parameter 'cls'
8895/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)
8896/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)
8897/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:211: warning: The following parameter of idle(void *cls) is not documented:
8898 parameter 'cls'
8899/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)
8900/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)
8901/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)
8902/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)
8903/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:
8904 parameter 'cls'
8905 parameter 'handle'
8906/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)
8907/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)
8908/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:
8909 parameter 'cls'
8910/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:314: warning: explicit link request to 'EXIT_SUCCESS' could not be resolved
8911/home/william/Git/gnunet/src/messenger/gnunet-messenger.c:314: warning: explicit link request to 'EXIT_FAILURE' could not be resolved
8912/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)
8913/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)
8914/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)
8915/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)
8916/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:
8917 parameter 'cls'
8918 parameter 'service'
8919/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)
8920/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)
8921/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:
8922 parameter 'store'
8923/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)
8924/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)
8925/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:
8926 parameter 'store'
8927/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)
8928/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)
8929/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)
8930/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)
8931/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:
8932 parameter 'store'
8933 parameter 'handle'
8934/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)
8935/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)
8936/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)
8937/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)
8938/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:
8939 parameter 'store'
8940 parameter 'handle'
8941/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)
8942/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)
8943/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:
8944 parameter 'store'
8945/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)
8946/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)
8947/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:
8948 parameter 'store'
8949/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)
8950/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)
8951/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:
8952 parameter 'store'
8953/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:184: warning: end of comment block while expecting command </i>
8954/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:184: warning: end of comment block while expecting command </i>
8955/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)
8956/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)
8957/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:
8958 parameter 'store'
8959/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)
8960/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)
8961/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:
8962 parameter 'store'
8963/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)
8964/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)
8965/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:
8966 parameter 'store'
8967/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)
8968/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)
8969/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:
8970 parameter 'store'
8971/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)
8972/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)
8973/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)
8974/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)
8975/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:
8976 parameter 'store'
8977 parameter 'handle'
8978/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)
8979/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)
8980/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)
8981/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)
8982/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:
8983 parameter 'store'
8984 parameter 'handle'
8985/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)
8986/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)
8987/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:
8988 parameter 'store'
8989/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)
8990/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)
8991/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:
8992 parameter 'store'
8993/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)
8994/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)
8995/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:
8996 parameter 'store'
8997/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:184: warning: end of comment block while expecting command </i>
8998/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_ego_store.h:184: warning: end of comment block while expecting command </i>
8999/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)
9000/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)
9001/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:
9002 parameter 'store'
9003/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)
9004/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)
9005/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:
9006 parameter 'store'
9007/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)
9008/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)
9009/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)
9010/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)
9011/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:
9012 parameter 'service'
9013 parameter 'mq'
9014/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)
9015/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)
9016/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:
9017 parameter 'handle'
9018/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)
9019/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)
9020/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:
9021 parameter 'handle'
9022/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)
9023/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)
9024/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:
9025 parameter 'handle'
9026/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)
9027/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)
9028/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:
9029 parameter 'handle'
9030/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)
9031/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)
9032/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:
9033 parameter 'handle'
9034/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)
9035/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)
9036/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:
9037 parameter 'handle'
9038/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)
9039/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)
9040/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:
9041 parameter 'handle'
9042/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)
9043/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)
9044/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:
9045 parameter 'handle'
9046/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)
9047/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)
9048/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:
9049 parameter 'handle'
9050/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)
9051/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)
9052/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:
9053 parameter 'handle'
9054/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)
9055/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)
9056/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:
9057 parameter 'handle'
9058/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)
9059/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)
9060/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)
9061/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)
9062/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:
9063 parameter 'service'
9064 parameter 'mq'
9065/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)
9066/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)
9067/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:
9068 parameter 'handle'
9069/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)
9070/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)
9071/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:
9072 parameter 'handle'
9073/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)
9074/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)
9075/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:
9076 parameter 'handle'
9077/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)
9078/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)
9079/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:
9080 parameter 'handle'
9081/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)
9082/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)
9083/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:
9084 parameter 'handle'
9085/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)
9086/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)
9087/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:
9088 parameter 'handle'
9089/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)
9090/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)
9091/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:
9092 parameter 'handle'
9093/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)
9094/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)
9095/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:
9096 parameter 'handle'
9097/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)
9098/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)
9099/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:
9100 parameter 'handle'
9101/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)
9102/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)
9103/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:
9104 parameter 'handle'
9105/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)
9106/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)
9107/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:
9108 parameter 'handle'
9109/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)
9110/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)
9111/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:
9112 parameter 'handles'
9113/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)
9114/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)
9115/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)
9116/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)
9117/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:
9118 parameter 'handles'
9119 parameter 'handle'
9120/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)
9121/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)
9122/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)
9123/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)
9124/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:
9125 parameter 'handles'
9126 parameter 'handle'
9127/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)
9128/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)
9129/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:
9130 parameter 'handles'
9131/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)
9132/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)
9133/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)
9134/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)
9135/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:
9136 parameter 'handles'
9137 parameter 'handle'
9138/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)
9139/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)
9140/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)
9141/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)
9142/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:
9143 parameter 'handles'
9144 parameter 'handle'
9145/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)
9146/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)
9147/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:
9148 parameter 'messages'
9149/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)
9150/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)
9151/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:
9152 parameter 'messages'
9153/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)
9154/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)
9155/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:
9156 parameter 'messages'
9157/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)
9158/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)
9159/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:
9160 parameter 'messages'
9161/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)
9162/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)
9163/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:
9164 parameter 'messages'
9165/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)
9166/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)
9167/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:
9168 parameter 'messages'
9169/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)
9170/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)
9171/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:
9172 parameter 'messages'
9173/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)
9174/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)
9175/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:
9176 parameter 'messages'
9177/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)
9178/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)
9179/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:
9180 parameter 'store'
9181/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)
9182/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)
9183/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:
9184 parameter 'member'
9185/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)
9186/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)
9187/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:
9188 parameter 'member'
9189/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)
9190/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)
9191/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:
9192 parameter 'member'
9193/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)
9194/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)
9195/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)
9196/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)
9197/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:
9198 parameter 'member'
9199 parameter 'session'
9200/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)
9201/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)
9202/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)
9203/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)
9204/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:
9205 parameter 'member'
9206 parameter 'session'
9207/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)
9208/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)
9209/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)
9210/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)
9211/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:
9212 parameter 'member'
9213 parameter 'cls'
9214/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)
9215/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)
9216/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:
9217 parameter 'store'
9218/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)
9219/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)
9220/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:
9221 parameter 'member'
9222/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)
9223/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)
9224/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:
9225 parameter 'member'
9226/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)
9227/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)
9228/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:
9229 parameter 'member'
9230/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)
9231/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)
9232/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)
9233/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)
9234/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:
9235 parameter 'member'
9236 parameter 'session'
9237/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)
9238/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)
9239/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)
9240/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)
9241/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:
9242 parameter 'member'
9243 parameter 'session'
9244/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)
9245/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)
9246/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)
9247/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)
9248/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:
9249 parameter 'member'
9250 parameter 'cls'
9251/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)
9252/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)
9253/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:
9254 parameter 'member'
9255/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)
9256/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)
9257/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:
9258 parameter 'session'
9259/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)
9260/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)
9261/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:
9262 parameter 'session'
9263/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)
9264/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)
9265/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:
9266 parameter 'session'
9267/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)
9268/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)
9269/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:
9270 parameter 'session'
9271/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)
9272/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)
9273/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:
9274 parameter 'session'
9275/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)
9276/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)
9277/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:
9278 parameter 'session'
9279/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)
9280/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)
9281/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:
9282 parameter 'session'
9283/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)
9284/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)
9285/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:
9286 parameter 'member'
9287/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)
9288/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)
9289/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:
9290 parameter 'session'
9291/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)
9292/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)
9293/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:
9294 parameter 'session'
9295/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)
9296/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)
9297/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:
9298 parameter 'session'
9299/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)
9300/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)
9301/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:
9302 parameter 'session'
9303/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)
9304/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)
9305/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:
9306 parameter 'session'
9307/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)
9308/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)
9309/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:
9310 parameter 'session'
9311/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)
9312/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)
9313/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:
9314 parameter 'session'
9315/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)
9316/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)
9317/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:
9318 parameter 'store'
9319/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)
9320/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)
9321/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:
9322 parameter 'store'
9323/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)
9324/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)
9325/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:
9326 parameter 'store'
9327/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)
9328/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)
9329/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:
9330 parameter 'store'
9331/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)
9332/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)
9333/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)
9334/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)
9335/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:
9336 parameter 'store'
9337 parameter 'cls'
9338/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)
9339/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)
9340/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:
9341 parameter 'store'
9342/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)
9343/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)
9344/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:
9345 parameter 'store'
9346/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)
9347/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)
9348/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:
9349 parameter 'store'
9350/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)
9351/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)
9352/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:
9353 parameter 'store'
9354/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)
9355/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)
9356/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)
9357/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)
9358/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:
9359 parameter 'store'
9360 parameter 'cls'
9361/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)
9362/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)
9363/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)
9364/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)
9365/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:
9366 parameter 'room'
9367 parameter 'session'
9368/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)
9369/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)
9370/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)
9371/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)
9372/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:
9373 parameter 'room'
9374 parameter 'session'
9375/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)
9376/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)
9377/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)
9378/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)
9379/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:
9380 parameter 'room'
9381 parameter 'session'
9382/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)
9383/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)
9384/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)
9385/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)
9386/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:
9387 parameter 'room'
9388 parameter 'session'
9389/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)
9390/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)
9391/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)
9392/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)
9393/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:
9394 parameter 'room'
9395 parameter 'session'
9396/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)
9397/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)
9398/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)
9399/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)
9400/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:
9401 parameter 'room'
9402 parameter 'session'
9403/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)
9404/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)
9405/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)
9406/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)
9407/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:
9408 parameter 'room'
9409 parameter 'session'
9410/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)
9411/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)
9412/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)
9413/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)
9414/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:
9415 parameter 'room'
9416 parameter 'session'
9417/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)
9418/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)
9419/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)
9420/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)
9421/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:
9422 parameter 'room'
9423 parameter 'session'
9424/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)
9425/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)
9426/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)
9427/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)
9428/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:
9429 parameter 'room'
9430 parameter 'session'
9431/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)
9432/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)
9433/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)
9434/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)
9435/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:
9436 parameter 'room'
9437 parameter 'session'
9438/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)
9439/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)
9440/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)
9441/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)
9442/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:
9443 parameter 'room'
9444 parameter 'session'
9445/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)
9446/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)
9447/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)
9448/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)
9449/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:
9450 parameter 'room'
9451 parameter 'session'
9452/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)
9453/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)
9454/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)
9455/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)
9456/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:
9457 parameter 'room'
9458 parameter 'session'
9459/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)
9460/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)
9461/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)
9462/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)
9463/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:
9464 parameter 'room'
9465 parameter 'session'
9466/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)
9467/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)
9468/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)
9469/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)
9470/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:
9471 parameter 'room'
9472 parameter 'session'
9473/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)
9474/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_kind.h:153: warning: end of comment block while expecting command </i>
9475/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)
9476/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_message_kind.h:153: warning: end of comment block while expecting command </i>
9477/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)
9478/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)
9479/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)
9480/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)
9481/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:
9482 parameter 'room'
9483 parameter 'tunnel'
9484/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)
9485/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)
9486/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)
9487/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)
9488/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:
9489 parameter 'room'
9490 parameter 'tunnel'
9491/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)
9492/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)
9493/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)
9494/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)
9495/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:
9496 parameter 'room'
9497 parameter 'tunnel'
9498/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)
9499/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)
9500/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)
9501/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)
9502/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:
9503 parameter 'room'
9504 parameter 'tunnel'
9505/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)
9506/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)
9507/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)
9508/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)
9509/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:
9510 parameter 'room'
9511 parameter 'tunnel'
9512/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)
9513/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)
9514/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)
9515/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)
9516/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:
9517 parameter 'room'
9518 parameter 'tunnel'
9519/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)
9520/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)
9521/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)
9522/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)
9523/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:
9524 parameter 'room'
9525 parameter 'handle'
9526/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)
9527/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)
9528/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)
9529/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)
9530/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:
9531 parameter 'room'
9532 parameter 'handle'
9533/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)
9534/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)
9535/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)
9536/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)
9537/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:
9538 parameter 'room'
9539 parameter 'handle'
9540/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)
9541/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)
9542/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)
9543/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)
9544/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:
9545 parameter 'room'
9546 parameter 'handle'
9547/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)
9548/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)
9549/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)
9550/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)
9551/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:
9552 parameter 'room'
9553 parameter 'handle'
9554/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)
9555/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)
9556/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)
9557/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)
9558/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:
9559 parameter 'room'
9560 parameter 'handle'
9561/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)
9562/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)
9563/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)
9564/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)
9565/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:
9566 parameter 'room'
9567 parameter 'handle'
9568/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)
9569/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)
9570/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)
9571/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)
9572/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:
9573 parameter 'room'
9574 parameter 'handle'
9575/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)
9576/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)
9577/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:
9578 parameter 'store'
9579/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)
9580/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)
9581/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:
9582 parameter 'store'
9583/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)
9584/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)
9585/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:
9586 parameter 'store'
9587/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)
9588/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)
9589/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)
9590/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)
9591/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:
9592 parameter 'store'
9593 parameter 'message'
9594/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)
9595/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)
9596/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:
9597 parameter 'store'
9598/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)
9599/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)
9600/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:
9601 parameter 'store'
9602/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)
9603/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)
9604/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:
9605 parameter 'store'
9606/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)
9607/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)
9608/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:
9609 parameter 'store'
9610/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)
9611/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)
9612/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)
9613/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)
9614/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:
9615 parameter 'store'
9616 parameter 'message'
9617/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)
9618/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)
9619/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:
9620 parameter 'store'
9621/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)
9622/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)
9623/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:
9624 parameter 'op'
9625/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)
9626/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)
9627/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:
9628 parameter 'store'
9629/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)
9630/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)
9631/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)
9632/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)
9633/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:
9634 parameter 'op'
9635 parameter 'store'
9636/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)
9637/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)
9638/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:
9639 parameter 'op'
9640/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)
9641/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)
9642/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:
9643 parameter 'store'
9644/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)
9645/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)
9646/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)
9647/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)
9648/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:
9649 parameter 'op'
9650 parameter 'store'
9651/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)
9652/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)
9653/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:
9654 parameter 'room'
9655/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)
9656/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)
9657/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:
9658 parameter 'store'
9659/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)
9660/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)
9661/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:
9662 parameter 'store'
9663/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)
9664/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)
9665/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:
9666 parameter 'store'
9667/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)
9668/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)
9669/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:
9670 parameter 'room'
9671/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)
9672/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)
9673/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:
9674 parameter 'store'
9675/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)
9676/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)
9677/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:
9678 parameter 'store'
9679/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)
9680/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)
9681/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:
9682 parameter 'store'
9683/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)
9684/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)
9685/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:
9686 parameter 'handle'
9687/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)
9688/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)
9689/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:
9690 parameter 'room'
9691/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)
9692/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)
9693/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:
9694 parameter 'room'
9695/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)
9696/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)
9697/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:
9698 parameter 'room'
9699/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)
9700/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)
9701/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:
9702 parameter 'room'
9703/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)
9704/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)
9705/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)
9706/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)
9707/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:
9708 parameter 'room'
9709 parameter 'handle'
9710/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)
9711/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)
9712/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)
9713/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)
9714/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:
9715 parameter 'room'
9716 parameter 'handle'
9717/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)
9718/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)
9719/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:
9720 parameter 'message'
9721/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)
9722/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)
9723/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)
9724/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)
9725/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)
9726/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)
9727/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:
9728 parameter 'room'
9729 parameter 'handle'
9730 parameter 'message'
9731/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)
9732/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)
9733/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)
9734/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)
9735/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)
9736/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)
9737/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:
9738 parameter 'room'
9739 parameter 'tunnel'
9740 parameter 'message'
9741/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)
9742/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)
9743/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)
9744/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)
9745/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:
9746 parameter 'room'
9747 parameter 'tunnel'
9748/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)
9749/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)
9750/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)
9751/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)
9752/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:
9753 parameter 'room'
9754 parameter 'handle'
9755/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)
9756/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)
9757/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)
9758/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)
9759/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:
9760 parameter 'room'
9761 parameter 'session'
9762/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)
9763/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)
9764/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:
9765 parameter 'room'
9766/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:310: warning: explicit link request to 'NULL' could not be resolved
9767/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)
9768/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)
9769/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:
9770 parameter 'room'
9771 parameter 'session'
9772/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)
9773/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)
9774/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:
9775 parameter 'room'
9776/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)
9777/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)
9778/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:
9779 parameter 'room'
9780/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)
9781/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)
9782/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:
9783 parameter 'handle'
9784/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)
9785/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)
9786/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:
9787 parameter 'room'
9788/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)
9789/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)
9790/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:
9791 parameter 'room'
9792/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)
9793/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)
9794/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:
9795 parameter 'room'
9796/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)
9797/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)
9798/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:
9799 parameter 'room'
9800/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)
9801/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)
9802/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)
9803/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)
9804/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:
9805 parameter 'room'
9806 parameter 'handle'
9807/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)
9808/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)
9809/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)
9810/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)
9811/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:
9812 parameter 'room'
9813 parameter 'handle'
9814/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)
9815/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)
9816/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:
9817 parameter 'message'
9818/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)
9819/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)
9820/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)
9821/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)
9822/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)
9823/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)
9824/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:
9825 parameter 'room'
9826 parameter 'handle'
9827 parameter 'message'
9828/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)
9829/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)
9830/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)
9831/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)
9832/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)
9833/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)
9834/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:
9835 parameter 'room'
9836 parameter 'tunnel'
9837 parameter 'message'
9838/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)
9839/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)
9840/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)
9841/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)
9842/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:
9843 parameter 'room'
9844 parameter 'tunnel'
9845/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)
9846/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)
9847/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)
9848/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)
9849/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:
9850 parameter 'room'
9851 parameter 'handle'
9852/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)
9853/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)
9854/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)
9855/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)
9856/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:
9857 parameter 'room'
9858 parameter 'session'
9859/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)
9860/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)
9861/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:
9862 parameter 'room'
9863/home/william/Git/gnunet/src/messenger/gnunet-service-messenger_room.h:310: warning: explicit link request to 'NULL' could not be resolved
9864/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)
9865/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)
9866/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:
9867 parameter 'room'
9868 parameter 'session'
9869/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)
9870/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)
9871/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:
9872 parameter 'room'
9873/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)
9874/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)
9875/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:
9876 parameter 'room'
9877/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)
9878/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)
9879/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:
9880 parameter 'service_handle'
9881/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)
9882/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)
9883/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:
9884 parameter 'service'
9885/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)
9886/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)
9887/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:
9888 parameter 'service'
9889/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)
9890/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)
9891/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:
9892 parameter 'service'
9893/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)
9894/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)
9895/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)
9896/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)
9897/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:
9898 parameter 'service'
9899 parameter 'mq'
9900/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)
9901/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)
9902/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)
9903/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)
9904/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:
9905 parameter 'service'
9906 parameter 'handle'
9907/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)
9908/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)
9909/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)
9910/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)
9911/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:
9912 parameter 'service'
9913 parameter 'handle'
9914/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)
9915/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)
9916/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)
9917/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)
9918/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:
9919 parameter 'service'
9920 parameter 'handle'
9921/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)
9922/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)
9923/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)
9924/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)
9925/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:
9926 parameter 'service'
9927 parameter 'handle'
9928/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)
9929/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)
9930/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)
9931/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)
9932/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:
9933 parameter 'service'
9934 parameter 'room'
9935/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)
9936/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)
9937/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:
9938 parameter 'service_handle'
9939/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)
9940/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)
9941/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:
9942 parameter 'service'
9943/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)
9944/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)
9945/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:
9946 parameter 'service'
9947/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)
9948/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)
9949/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:
9950 parameter 'service'
9951/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)
9952/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)
9953/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)
9954/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)
9955/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:
9956 parameter 'service'
9957 parameter 'mq'
9958/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)
9959/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)
9960/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)
9961/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)
9962/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:
9963 parameter 'service'
9964 parameter 'handle'
9965/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)
9966/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)
9967/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)
9968/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)
9969/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:
9970 parameter 'service'
9971 parameter 'handle'
9972/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)
9973/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)
9974/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)
9975/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)
9976/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:
9977 parameter 'service'
9978 parameter 'handle'
9979/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)
9980/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)
9981/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)
9982/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)
9983/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:
9984 parameter 'service'
9985 parameter 'handle'
9986/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)
9987/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)
9988/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)
9989/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)
9990/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:
9991 parameter 'service'
9992 parameter 'room'
9993/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)
9994/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)
9995/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:
9996 parameter 'room'
9997/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)
9998/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)
9999/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:
10000 parameter 'tunnel'
10001/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)
10002/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)
10003/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)
10004/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)
10005/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:
10006 parameter 'tunnel'
10007 parameter 'channel'
10008/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)
10009/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)
10010/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:
10011 parameter 'tunnel'
10012/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)
10013/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)
10014/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:
10015 parameter 'tunnel'
10016/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)
10017/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)
10018/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)
10019/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)
10020/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:
10021 parameter 'tunnel'
10022 parameter 'env'
10023/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)
10024/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)
10025/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)
10026/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)
10027/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)
10028/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)
10029/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:
10030 parameter 'tunnel'
10031 parameter 'handle'
10032 parameter 'message'
10033/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)
10034/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)
10035/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:
10036 parameter 'tunnel'
10037/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)
10038/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)
10039/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:
10040 parameter 'tunnel'
10041/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)
10042/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)
10043/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:
10044 parameter 'room'
10045/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)
10046/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)
10047/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:
10048 parameter 'tunnel'
10049/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)
10050/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)
10051/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)
10052/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)
10053/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:
10054 parameter 'tunnel'
10055 parameter 'channel'
10056/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)
10057/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)
10058/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:
10059 parameter 'tunnel'
10060/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)
10061/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)
10062/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:
10063 parameter 'tunnel'
10064/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)
10065/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)
10066/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)
10067/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)
10068/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:
10069 parameter 'tunnel'
10070 parameter 'env'
10071/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)
10072/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)
10073/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)
10074/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)
10075/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)
10076/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)
10077/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:
10078 parameter 'tunnel'
10079 parameter 'handle'
10080 parameter 'message'
10081/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)
10082/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)
10083/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:
10084 parameter 'tunnel'
10085/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)
10086/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)
10087/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:
10088 parameter 'tunnel'
10089/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)
10090/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)
10091/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)
10092/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)
10093/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:
10094 parameter 'identity_cls'
10095 parameter 'msg_cls'
10096/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)
10097/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)
10098/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:
10099 parameter 'handle'
10100/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)
10101/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)
10102/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:
10103 parameter 'handle'
10104/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)
10105/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)
10106/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:
10107 parameter 'handle'
10108/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)
10109/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)
10110/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:
10111 parameter 'handle'
10112/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)
10113/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)
10114/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:
10115 parameter 'handle'
10116/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)
10117/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)
10118/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:
10119 parameter 'room'
10120/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:794: warning: found </i> tag without matching <i>
10121/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:794: warning: found </i> tag without matching <i>
10122/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)
10123/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)
10124/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:
10125 parameter 'room'
10126/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)
10127/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)
10128/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:
10129 parameter 'contact'
10130/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)
10131/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)
10132/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:
10133 parameter 'contact'
10134/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)
10135/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)
10136/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:
10137 parameter 'contact'
10138/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)
10139/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)
10140/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:
10141 parameter 'contact'
10142/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)
10143/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:
10144 parameter 'context'
10145/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)
10146/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)
10147/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:
10148 parameter 'contact'
10149/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)
10150/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)
10151/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:
10152 parameter 'contact'
10153/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)
10154/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)
10155/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:
10156 parameter 'contact'
10157/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)
10158/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)
10159/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:
10160 parameter 'contact'
10161/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)
10162/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:
10163 parameter 'context'
10164/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)
10165/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)
10166/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:
10167 parameter 'store'
10168/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)
10169/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)
10170/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:
10171 parameter 'store'
10172/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)
10173/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)
10174/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:
10175 parameter 'store'
10176/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)
10177/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)
10178/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)
10179/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)
10180/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:
10181 parameter 'store'
10182 parameter 'contact'
10183/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)
10184/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)
10185/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)
10186/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)
10187/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:
10188 parameter 'store'
10189 parameter 'contact'
10190/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)
10191/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)
10192/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:
10193 parameter 'store'
10194/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)
10195/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)
10196/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:
10197 parameter 'store'
10198/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)
10199/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)
10200/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:
10201 parameter 'store'
10202/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)
10203/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)
10204/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)
10205/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)
10206/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:
10207 parameter 'store'
10208 parameter 'contact'
10209/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)
10210/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)
10211/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)
10212/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)
10213/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:
10214 parameter 'store'
10215 parameter 'contact'
10216/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)
10217/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)
10218/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:
10219 parameter 'identity_callback'
10220 parameter 'identity_cls'
10221 parameter 'msg_cls'
10222/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)
10223/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)
10224/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:
10225 parameter 'handle'
10226/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)
10227/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)
10228/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:
10229 parameter 'handle'
10230/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)
10231/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)
10232/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:
10233 parameter 'handle'
10234/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)
10235/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)
10236/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:
10237 parameter 'handle'
10238/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)
10239/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)
10240/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:
10241 parameter 'handle'
10242/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)
10243/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)
10244/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:
10245 parameter 'handle'
10246/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)
10247/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)
10248/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:
10249 parameter 'handle'
10250/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)
10251/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)
10252/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:
10253 parameter 'handle'
10254/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)
10255/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)
10256/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:
10257 parameter 'identity_callback'
10258 parameter 'identity_cls'
10259 parameter 'msg_cls'
10260/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)
10261/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)
10262/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:
10263 parameter 'handle'
10264/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)
10265/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)
10266/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:
10267 parameter 'handle'
10268/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)
10269/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)
10270/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:
10271 parameter 'handle'
10272/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)
10273/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)
10274/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:
10275 parameter 'handle'
10276/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)
10277/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)
10278/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:
10279 parameter 'handle'
10280/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)
10281/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)
10282/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:
10283 parameter 'handle'
10284/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)
10285/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)
10286/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:
10287 parameter 'handle'
10288/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)
10289/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)
10290/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:
10291 parameter 'handle'
10292/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)
10293/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)
10294/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:
10295 parameter 'tunnels'
10296/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)
10297/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)
10298/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:
10299 parameter 'tunnels'
10300/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)
10301/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)
10302/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:
10303 parameter 'tunnels'
10304/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)
10305/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)
10306/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:
10307 parameter 'tunnels'
10308/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)
10309/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)
10310/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)
10311/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)
10312/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:
10313 parameter 'tunnels'
10314 parameter 'element'
10315/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)
10316/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:
10317 parameter 'tunnels'
10318/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)
10319/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:
10320 parameter 'tunnels'
10321/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)
10322/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)
10323/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:
10324 parameter 'tunnels'
10325/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)
10326/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)
10327/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:
10328 parameter 'tunnels'
10329/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)
10330/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)
10331/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:
10332 parameter 'tunnels'
10333/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)
10334/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)
10335/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:
10336 parameter 'tunnels'
10337/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)
10338/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)
10339/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)
10340/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)
10341/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:
10342 parameter 'tunnels'
10343 parameter 'element'
10344/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)
10345/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:
10346 parameter 'tunnels'
10347/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)
10348/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:
10349 parameter 'tunnels'
10350/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)
10351/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)
10352/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:
10353 parameter 'message'
10354/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)
10355/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)
10356/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:
10357 parameter 'message'
10358/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)
10359/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)
10360/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:
10361 parameter 'message'
10362/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)
10363/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)
10364/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:
10365 parameter 'message'
10366/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)
10367/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)
10368/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:
10369 parameter 'message'
10370/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)
10371/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)
10372/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:
10373 parameter 'message'
10374/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)
10375/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)
10376/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:
10377 parameter 'message'
10378/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)
10379/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)
10380/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:
10381 parameter 'message'
10382/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)
10383/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)
10384/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:
10385 parameter 'message'
10386/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)
10387/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)
10388/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:
10389 parameter 'message'
10390/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)
10391/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)
10392/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:
10393 parameter 'handle'
10394/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)
10395/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)
10396/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:
10397 parameter 'room'
10398/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)
10399/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)
10400/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)
10401/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)
10402/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:
10403 parameter 'room'
10404 parameter 'sender'
10405/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)
10406/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)
10407/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)
10408/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)
10409/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:
10410 parameter 'room'
10411 parameter 'cls'
10412/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)
10413/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)
10414/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:
10415 parameter 'handle'
10416/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)
10417/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)
10418/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:
10419 parameter 'room'
10420/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)
10421/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)
10422/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)
10423/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)
10424/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:
10425 parameter 'room'
10426 parameter 'sender'
10427/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)
10428/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)
10429/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)
10430/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)
10431/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:
10432 parameter 'room'
10433 parameter 'cls'
10434/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)
10435/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)
10436/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:
10437 parameter 'channel'
10438/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)
10439/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)
10440/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:
10441 parameter 'channel'
10442/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)
10443/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:
10444 parameter 'cb_cls'
10445/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)
10446/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:
10447 parameter 'cb_cls'
10448/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)
10449/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:
10450 parameter 'cb_cls'
10451/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)
10452/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:
10453 parameter 'cb_cls'
10454/home/william/Git/gnunet/src/include/gnunet_my_lib.h:470: warning: explicit link request to 'GNUNET_MY_exect_prepared()' could not be resolved
10455/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)
10456/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:
10457 parameter 'qp'
10458/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)
10459/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:
10460 parameter 'qp'
10461/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)
10462/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:
10463 parameter 'qp'
10464/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)
10465/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:
10466 parameter 'qp'
10467/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)
10468/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:
10469 parameter 'qp'
10470/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)
10471/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:
10472 parameter 'qp'
10473/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)
10474/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:
10475 parameter 'qp'
10476/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)
10477/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:
10478 parameter 'results'
10479/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)
10480/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)
10481/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:
10482 parameter 'ptr'
10483/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)
10484/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)
10485/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:
10486 parameter 'rs'
10487/home/william/Git/gnunet/src/my/my_result_helper.c:533: warning: expected whitespace after \a command
10488/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)
10489/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
10490/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
10491/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)
10492/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)
10493/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:
10494 parameter 'ln_msg'
10495/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)
10496/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)
10497/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:
10498 parameter 'cls'
10499 parameter 'key'
10500 parameter 'value'
10501/home/william/Git/gnunet/src/namestore/gnunet-namestore-fcfsd.c:1139: warning: Found unknown command '\parsm'
10502/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:
10503 parameter 'argv'
10504/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)
10505/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)
10506/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)
10507/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:
10508 parameter 'rs'
10509/home/william/Git/gnunet/src/namestore/gnunet-service-namestore.c:469: warning: explicit link request to 'GNUNET_GNSRECORD_TYPE_NICK' could not be resolved
10510/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)
10511/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)
10512/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)
10513/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:
10514 parameter 'nc'
10515 parameter 'emsg'
10516/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)
10517/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:
10518 parameter 'private_key'
10519/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)
10520/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:
10521 parameter 'zis_msg'
10522/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)
10523/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)
10524/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:
10525 parameter 'req'
10526/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)
10527/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)
10528/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:
10529 parameter 'cls'
10530/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)
10531/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:
10532 parameter 'sync_cb_cls'
10533/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)
10534/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)
10535/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:
10536 parameter 'cls'
10537/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)
10538/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)
10539/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:
10540 parameter 'res'
10541 parameter 'num_results'
10542/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)
10543/home/william/Git/gnunet/src/namestore/plugin_rest_namestore.c:286: warning: The following parameter of cleanup_handle(void *cls) is not documented:
10544 parameter 'cls'
10545/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)
10546/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)
10547/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:
10548 parameter 'cls'
10549 parameter 'zone_key'
10550 parameter 'rname'
10551 parameter 'rd_len'
10552 parameter 'rd'
10553/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)
10554/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)
10555/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)
10556/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)
10557/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:
10558 parameter 'rest_handle'
10559/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)
10560/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:
10561 parameter 'tm'
10562/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
10563/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
10564/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)
10565/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)
10566/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:
10567 parameter 'ret'
10568/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)
10569/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:
10570 parameter 'ret'
10571/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)
10572/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)
10573/home/william/Git/gnunet/src/nat/gnunet-nat.c:72: warning: explicit link request to 'bind_addr' could not be resolved
10574/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)
10575/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)
10576/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)
10577/home/william/Git/gnunet/src/nat/gnunet-service-nat.c:1307: warning: The following parameter of dyndns_lookup(void *cls) is not documented:
10578 parameter 'cls'
10579/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
10580/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
10581/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
10582/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
10583/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
10584/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
10585/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
10586/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
10587/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
10588/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
10589/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
10590/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
10591/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
10592/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
10593/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
10594/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
10595/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)
10596/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
10597/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:
10598 parameter 'mq'
10599/home/william/Git/gnunet/src/nse/gnunet-service-nse.c:1201: warning: Found unknown command '\parma'
10600/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:
10601 parameter 'internal_cls'
10602/home/william/Git/gnunet/src/nse/nse_api.c:132: warning: argument 'cls' from the argument list of reconnect has multiple @param documentation sections
10603/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
10604/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)
10605/home/william/Git/gnunet/src/peerinfo-tool/plugin_rest_peerinfo.c:279: warning: The following parameter of cleanup_handle(void *cls) is not documented:
10606 parameter 'cls'
10607/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)
10608/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)
10609/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)
10610/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)
10611/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:
10612 parameter 'rest_handle'
10613/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:
10614 parameter 'app_cls'
10615/home/william/Git/gnunet/src/peerstore/peerstore_api.c:808: warning: argument 'cls' from the argument list of reconnect has multiple @param documentation sections
10616/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
10617/home/william/Git/gnunet/src/peerstore/plugin_peerstore_sqlite.c:126: warning: explicit link request to 'GNUNE_SYSERR' could not be resolved
10618/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:896: warning: Found unknown command '\es'
10619/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:925: warning: Found unknown command '\es'
10620/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)
10621/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:
10622 parameter 'value'
10623/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
10624/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
10625/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
10626/home/william/Git/gnunet/src/include/gnunet_pq_lib.h:119: warning: Found unknown command '\oaran'
10627/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:
10628 parameter 'ptr_size'
10629/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)
10630/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:
10631 parameter 't'
10632/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)
10633/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:
10634 parameter 'row'
10635/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)
10636/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:
10637 parameter 'row'
10638/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)
10639/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:
10640 parameter 'row'
10641/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)
10642/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:
10643 parameter 'row'
10644/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)
10645/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:
10646 parameter 'row'
10647/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)
10648/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:
10649 parameter 'row'
10650/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)
10651/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:
10652 parameter 'row'
10653/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)
10654/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:
10655 parameter 'row'
10656/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)
10657/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:
10658 parameter 'row'
10659/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)
10660/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:
10661 parameter 'row'
10662/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)
10663/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:
10664 parameter 'row'
10665/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)
10666/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:
10667 parameter 'row'
10668/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)
10669/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:
10670 parameter 'row'
10671/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)
10672/home/william/Git/gnunet/src/reclaim/did.h:27: warning: Unsupported xml/html tag <pubkey> found
10673/home/william/Git/gnunet/src/reclaim/did.h:38: warning: Unsupported xml/html tag <pubkey> found
10674/home/william/Git/gnunet/src/reclaim/did.h:27: warning: Unsupported xml/html tag <pubkey> found
10675/home/william/Git/gnunet/src/reclaim/did.h:38: warning: Unsupported xml/html tag <pubkey> found
10676/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)
10677/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:
10678 parameter 'ash'
10679/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:
10680 parameter 'presentations'
10681/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim.c:723: warning: Found unknown command '\cls'
10682/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim.c:724: warning: Found unknown command '\im'
10683/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:
10684 parameter 'presentations'
10685/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim.c:937: warning: Found unknown command '\cm'
10686/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:
10687 parameter 'cm'
10688/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
10689/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim.c:1686: warning: Found unknown command '\cls'
10690/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim.c:1687: warning: Found unknown command '\dam'
10691/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim.c:1777: warning: Found unknown command '\cls'
10692/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim.c:1778: warning: Found unknown command '\dam'
10693/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)
10694/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:
10695 parameter 'rd_count'
10696/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
10697/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)
10698/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:
10699 parameter 'rd_count'
10700/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)
10701/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:
10702 parameter 'rd_count'
10703/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)
10704/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:
10705 parameter 'rd_count'
10706/home/william/Git/gnunet/src/reclaim/gnunet-service-reclaim_tickets.c:1671: warning: Found unknown command '\GNUNET_GNSRECORD_TYPE_RECLAIM_TICKET'
10707/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)
10708/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:
10709 parameter 'attr'
10710/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)
10711/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:
10712 parameter 'cred'
10713/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)
10714/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)
10715/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:
10716 parameter 'nonce'
10717/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)
10718/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:
10719 parameter 'nonce_str'
10720/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)
10721/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:
10722 parameter 'code_verifier'
10723 parameter 'opts'
10724/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:
10725 parameter 'nonce'
10726/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)
10727/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)
10728/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)
10729/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
10730/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
10731/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
10732/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
10733/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
10734/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:
10735 parameter 'nonce_str'
10736/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)
10737/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)
10738/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)
10739/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)
10740/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
10741/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
10742/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
10743/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
10744/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:
10745 parameter 'code_verifier'
10746 parameter 'opts'
10747/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
10748/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
10749/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
10750/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
10751/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
10752/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)
10753/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:
10754 parameter 'data'
10755 parameter 'data_size'
10756/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)
10757/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:
10758 parameter 'data'
10759 parameter 'data_size'
10760/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)
10761/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:
10762 parameter 'data'
10763 parameter 'data_size'
10764 parameter 'exp'
10765/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:
10766 parameter 'exp'
10767/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:
10768 parameter 'exp'
10769/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)
10770/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:
10771 parameter 'data'
10772 parameter 'data_size'
10773/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)
10774/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:
10775 parameter 'data'
10776 parameter 'data_size'
10777/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)
10778/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:
10779 parameter 'data'
10780 parameter 'data_size'
10781 parameter 'exp'
10782/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:
10783 parameter 'exp'
10784/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:
10785 parameter 'exp'
10786/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)
10787/home/william/Git/gnunet/src/reclaim/plugin_rest_pabc.c:141: warning: The following parameter of cleanup_handle(void *cls) is not documented:
10788 parameter 'cls'
10789/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)
10790/home/william/Git/gnunet/src/reclaim/plugin_rest_reclaim.c:274: warning: The following parameter of cleanup_handle(void *cls) is not documented:
10791 parameter 'cls'
10792/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
10793/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
10794/home/william/Git/gnunet/src/reclaim/reclaim_api.c:1479: warning: explicit link request to 'GNUNET_RECLAIM_get_credential_start' could not be resolved
10795/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)
10796/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:
10797 parameter 'ait'
10798/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)
10799/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:
10800 parameter 'ait'
10801/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:374: warning: Found unknown command '\GNUNET_RECLAIM_ticket_consume'
10802/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:
10803 parameter 'al'
10804 parameter 'credential'
10805/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)
10806/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:
10807 parameter 'al'
10808/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)
10809/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:
10810 parameter 'al'
10811/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)
10812/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:
10813 parameter 'al'
10814/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)
10815/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:
10816 parameter 'al'
10817/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:
10818 parameter 'attr'
10819/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)
10820/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:
10821 parameter 'credentials'
10822/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)
10823/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:
10824 parameter 'credentials'
10825/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)
10826/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:
10827 parameter 'al'
10828/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)
10829/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:
10830 parameter 'al'
10831/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)
10832/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:
10833 parameter 'credential'
10834/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)
10835/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:
10836 parameter 'credential'
10837/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)
10838/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:
10839 parameter 'cred'
10840/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)
10841/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:
10842 parameter 'presentations'
10843/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)
10844/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:
10845 parameter 'presentations'
10846/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)
10847/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:
10848 parameter 'al'
10849/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)
10850/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:
10851 parameter 'al'
10852/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)
10853/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:
10854 parameter 'presentation'
10855/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)
10856/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:
10857 parameter 'presentation'
10858/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:
10859 parameter 'presentation'
10860/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
10861/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
10862/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
10863/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
10864/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
10865/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
10866/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
10867/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
10868/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
10869/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)
10870/home/william/Git/gnunet/src/regex/gnunet-service-regex.c:126: warning: Found unknown command '\am'
10871/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)
10872/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:
10873 parameter 'sm'
10874/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)
10875/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:
10876 parameter 'sm'
10877/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)
10878/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:
10879 parameter 'cls'
10880/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)
10881/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
10882/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
10883/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
10884/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
10885/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
10886/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
10887/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
10888/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
10889/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
10890/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
10891/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
10892/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
10893/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
10894/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
10895/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
10896/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
10897/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
10898/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
10899/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
10900/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
10901/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
10902/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
10903/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
10904/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
10905/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
10906/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
10907/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
10908/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
10909/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
10910/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
10911/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
10912/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
10913/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
10914/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
10915/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
10916/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
10917/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)
10918/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)
10919/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:
10920 parameter 'resp'
10921/home/william/Git/gnunet/src/rest/gnunet-rest-server.c:450: warning: explicit link request to 'MHD_YES' could not be resolved
10922/home/william/Git/gnunet/src/rest/gnunet-rest-server.c:451: warning: explicit link request to 'MHD_NO' could not be resolved
10923/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)
10924/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:
10925 parameter 'cnc'
10926/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)
10927/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)
10928/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)
10929/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:
10930 parameter 'con_handle'
10931 parameter 'url'
10932 parameter 'cls'
10933/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)
10934/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:
10935 parameter 'con_handle'
10936 parameter 'url'
10937 parameter 'cls'
10938/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)
10939/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:
10940 parameter 'con_handle'
10941 parameter 'url'
10942 parameter 'cls'
10943/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)
10944/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)
10945/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)
10946/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)
10947/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:
10948 parameter 'conndata_handle'
10949/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)
10950/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:
10951 parameter 'con_handle'
10952 parameter 'url'
10953 parameter 'cls'
10954/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)
10955/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:
10956 parameter 'con_handle'
10957 parameter 'url'
10958 parameter 'cls'
10959/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)
10960/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)
10961/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)
10962/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)
10963/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:
10964 parameter 'conndata_handle'
10965/home/william/Git/gnunet/src/revocation/gnunet-service-revocation.c:481: warning: explicit link request to 'GNUNET_SETU_STATUS_OK' could not be resolved
10966/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:
10967 parameter 'mq'
10968/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)
10969/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:
10970 parameter 'service'
10971/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)
10972/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)
10973/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)
10974/home/william/Git/gnunet/src/revocation/revocation_api.c:289: warning: explicit link request to 'GNUNET_REVOCATION_sign_revocation' could not be resolved
10975/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)
10976/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)
10977/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:
10978 parameter 'difficulty'
10979/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)
10980/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)
10981/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)
10982/home/william/Git/gnunet/src/revocation/revocation_api.c:749: warning: documented empty return type of GNUNET_REVOCATION_pow_stop
10983/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:680: warning: explicit link request to 'churn_test_cb' could not be resolved
10984/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:680: warning: explicit link request to 'mal_cb' could not be resolved
10985/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:680: warning: explicit link request to 'single_req_cb' could not be resolved
10986/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:681: warning: explicit link request to 'delay_req_cb' could not be resolved
10987/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:681: warning: explicit link request to 'seed_big_cb' could not be resolved
10988/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:681: warning: explicit link request to 'single_peer_seed_cb' could not be resolved
10989/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:681: warning: explicit link request to 'seed_cb' could not be resolved
10990/home/william/Git/gnunet/src/rps/gnunet-rps-profiler.c:681: warning: explicit link request to 'req_cancel_cb' could not be resolved
10991/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)
10992/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)
10993/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:
10994 parameter 'recv_peer'
10995 parameter 'probability'
10996 parameter 'num_observed'
10997/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)
10998/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:
10999 parameter 'b'
11000/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)
11001/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)
11002/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:
11003 parameter 'cls'
11004 parameter 'args'
11005 parameter 'cfgfile'
11006 parameter 'cfg'
11007/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:
11008 parameter 'cls'
11009/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)
11010/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:
11011 parameter 'cls'
11012 parameter 'num_peers'
11013/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:4275: warning: explicit link request to 'view' could not be resolved
11014/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:868: warning: explicit link request to 'valid_peers' could not be resolved
11015/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)
11016/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:
11017 parameter 'channel_ctx'
11018/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:1469: warning: explicit link request to 'valid_peers' could not be resolved
11019/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:1572: warning: explicit link request to 'valid_peers' could not be resolved
11020/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:1639: warning: explicit link request to 'initialise_peers' could not be resolved
11021/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:1665: warning: explicit link request to 'valid_peers' could not be resolved
11022/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:2197: warning: explicit link request to 'view' could not be resolved
11023/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:2210: warning: explicit link request to 'view' could not be resolved
11024/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)
11025/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)
11026/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:
11027 parameter 'num_peers'
11028 parameter 'peers'
11029/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:
11030 parameter 'sub'
11031/home/william/Git/gnunet/src/rps/gnunet-service-rps.c:2566: warning: explicit link request to 'pull_map' could not be resolved
11032/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:
11033 parameter 'mq'
11034/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)
11035/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:
11036 parameter 'msg'
11037/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)
11038/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:
11039 parameter 'msg'
11040/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)
11041/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:
11042 parameter 'msg'
11043/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)
11044/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:
11045 parameter 'err_msg'
11046/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)
11047/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:
11048 parameter 'client'
11049/home/william/Git/gnunet/src/rps/gnunet-service-rps_custommap.c:323: warning: documented empty return type of CustomPeerMap_clear
11050/home/william/Git/gnunet/src/rps/gnunet-service-rps_custommap.h:149: warning: documented empty return type of CustomPeerMap_clear
11051/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
11052/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
11053/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
11054/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
11055/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
11056/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
11057/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)
11058/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
11059/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
11060/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
11061/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
11062/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)
11063/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:
11064 parameter 'sampler_elem'
11065/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)
11066/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:
11067 parameter 'sampler_elem'
11068/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
11069/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
11070/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
11071/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
11072/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)
11073/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:
11074 parameter 'deficiency_factor'
11075/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)
11076/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)
11077/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:
11078 parameter 'req_single_info_handle'
11079/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
11080/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
11081/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)
11082/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:
11083 parameter 'deficiency_factor'
11084/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
11085/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
11086/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)
11087/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
11088/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
11089/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
11090/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
11091/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)
11092/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)
11093/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:
11094 parameter 'req_single_info_handle'
11095/home/william/Git/gnunet/src/rps/rps-test_util.c:115: warning: explicit link request to 'GNUNET_CONTAINER_HashMapIterator' could not be resolved
11096/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)
11097/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)
11098/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)
11099/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)
11100/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:
11101 parameter 'num_updates'
11102 parameter 'view_update_cb'
11103/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)
11104/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:
11105 parameter 'stream_input_cb'
11106/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:
11107 parameter 'cls'
11108/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:
11109 parameter 'cls'
11110/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:
11111 parameter 'cls'
11112/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)
11113/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)
11114/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
11115/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)
11116/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:
11117 parameter 's'
11118/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)
11119/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)
11120/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:
11121 parameter 's'
11122/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)
11123/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
11124/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)
11125/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:
11126 parameter 'msg'
11127/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
11128/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)
11129/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:
11130 parameter 's'
11131/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)
11132/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:
11133 parameter 's'
11134/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)
11135/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:
11136 parameter 'session'
11137/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
11138/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)
11139/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:
11140 parameter 'message'
11141/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)
11142/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:
11143 parameter 'session_key'
11144/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)
11145/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:
11146 parameter 'ppub'
11147/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:
11148 parameter 'cfg'
11149 parameter 'start'
11150 parameter 'deadline'
11151/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)
11152/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)
11153/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:
11154 parameter 'plaintext'
11155/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)
11156/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)
11157/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:
11158 parameter 'msg'
11159/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)
11160/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)
11161/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:
11162 parameter 'msg'
11163/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)
11164/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:
11165 parameter 'idm'
11166/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)
11167/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:
11168 parameter 'msg'
11169/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)
11170/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:
11171 parameter 'idm'
11172/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
11173/home/william/Git/gnunet/src/set/gnunet-service-set_union.c:90: warning: explicit link request to 'PHASE_EXPECT_ELEMENTS' could not be resolved
11174/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
11175/home/william/Git/gnunet/src/setu/gnunet-service-setu.c:127: warning: explicit link request to 'PHASE_EXPECT_ELEMENTS' could not be resolved
11176/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
11177/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
11178/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
11179/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
11180/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)
11181/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:
11182 parameter 'counter_max_length'
11183/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)
11184/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:
11185 parameter 'counter_max_length'
11186/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)
11187/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:
11188 parameter 'counter_max_length'
11189/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)
11190/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:
11191 parameter 'counter_max_length'
11192/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
11193/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
11194/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
11195/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
11196/home/william/Git/gnunet/src/set/ibf.h:176: warning: argument 'size' from the argument list of ibf_create has multiple @param documentation sections
11197/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
11198/home/william/Git/gnunet/src/set/ibf.h:224: warning: argument 'ibf' from the argument list of ibf_decode has multiple @param documentation sections
11199/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
11200/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
11201/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)
11202/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
11203/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
11204/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
11205/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
11206/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:
11207 parameter 'counter_max_length'
11208/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)
11209/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
11210/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
11211/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
11212/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
11213/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:
11214 parameter 'counter_max_length'
11215/home/william/Git/gnunet/src/setu/ibf.h:193: warning: argument 'size' from the argument list of ibf_create has multiple @param documentation sections
11216/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
11217/home/william/Git/gnunet/src/setu/ibf.h:241: warning: argument 'ibf' from the argument list of ibf_decode has multiple @param documentation sections
11218/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
11219/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
11220/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)
11221/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:
11222 parameter 'counter_max_length'
11223/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)
11224/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:
11225 parameter 'counter_max_length'
11226/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)
11227/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:
11228 parameter 'msg'
11229/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)
11230/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:
11231 parameter 'msg'
11232/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:
11233 parameter 'options'
11234/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:
11235 parameter 'options'
11236/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)
11237/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:
11238 parameter 'msg'
11239/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)
11240/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:
11241 parameter 'idm'
11242/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)
11243/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)
11244/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:
11245 parameter 'msg'
11246/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)
11247/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)
11248/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)
11249/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:
11250 parameter 'msg'
11251/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
11252/home/william/Git/gnunet/src/set/gnunet-service-set_union.c:90: warning: explicit link request to 'PHASE_EXPECT_ELEMENTS' could not be resolved
11253/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
11254/home/william/Git/gnunet/src/setu/gnunet-service-setu.c:127: warning: explicit link request to 'PHASE_EXPECT_ELEMENTS' could not be resolved
11255/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)
11256/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)
11257/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)
11258/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)
11259/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)
11260/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:
11261 parameter 'ibf_size'
11262/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:
11263 parameter 'number_buckets_per_element'
11264 parameter 'ibf_bucket_number_factor'
11265/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)
11266/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)
11267/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:
11268 parameter 'msg'
11269/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)
11270/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:
11271 parameter 'se_ibf_total_size'
11272 parameter 'number_se_send'
11273/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:
11274 parameter 'number_se_received'
11275 parameter 'se_ibf_total_size'
11276/home/william/Git/gnunet/src/setu/gnunet-service-setu_strata_estimator.c:352: warning: documented empty return type of strata_estimator_difference
11277/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
11278/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
11279/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:
11280 parameter 'se_ibf_total_size'
11281 parameter 'number_se_send'
11282/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:
11283 parameter 'number_se_received'
11284 parameter 'se_ibf_total_size'
11285/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
11286/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
11287/home/william/Git/gnunet/src/setu/gnunet-service-setu_strata_estimator.h:147: warning: documented empty return type of strata_estimator_difference
11288/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
11289/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
11290/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)
11291/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)
11292/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:
11293 parameter 'msg'
11294/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:
11295 parameter 'options'
11296/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)
11297/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:
11298 parameter 'options'
11299/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)
11300/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:
11301 parameter 'stmt'
11302/home/william/Git/gnunet/src/sq/sq_query_helper.c:61: warning: Found unknown command '\oaran'
11303/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:
11304 parameter 'ptr_size'
11305/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)
11306/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:
11307 parameter 'ce'
11308/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)
11309/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:
11310 parameter 'se'
11311/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)
11312/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:
11313 parameter 'msg'
11314/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)
11315/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:
11316 parameter 'msg'
11317/home/william/Git/gnunet/src/statistics/gnunet-statistics.c:200: warning: explicit link request to 'GNUNET_CONTAINER_HashMapIterator' could not be resolved
11318/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
11319/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)
11320/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:
11321 parameter 'smsg'
11322/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)
11323/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:
11324 parameter 'wvm'
11325/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)
11326/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:
11327 parameter 'config'
11328/home/william/Git/gnunet/src/testbed/gnunet-helper-testbed.c:278: warning: explicit link request to 'GNUNET_mst_destroy()' could not be resolved
11329/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)
11330/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:
11331 parameter 'msg'
11332/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)
11333/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:
11334 parameter 'msg'
11335/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
11336/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
11337/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
11338/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)
11339/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
11340/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
11341/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
11342/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)
11343/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
11344/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
11345/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
11346/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
11347/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
11348/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
11349/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
11350/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)
11351/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
11352/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
11353/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
11354/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
11355/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
11356/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
11357/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
11358/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
11359/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
11360/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
11361/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)
11362/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:
11363 parameter 'msg'
11364/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)
11365/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:
11366 parameter 'msg'
11367/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:
11368 parameter 'app_ctx'
11369/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
11370/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
11371/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:
11372 parameter 'cfg'
11373/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
11374/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:
11375 parameter 'cfg'
11376/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:
11377 parameter 'cfg'
11378/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:
11379 parameter 'cfg'
11380/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
11381/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
11382/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
11383/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
11384/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
11385/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
11386/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
11387/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
11388/home/william/Git/gnunet/src/testbed/testbed_api.c:333: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_ADDHOSTCONFIRM' could not be resolved
11389/home/william/Git/gnunet/src/testbed/testbed_api.c:361: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_ADDHOSTCONFIRM' could not be resolved
11390/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)
11391/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:
11392 parameter 'cls'
11393/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)
11394/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:
11395 parameter 'cls'
11396/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)
11397/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:
11398 parameter 'cls'
11399/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)
11400/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:
11401 parameter 'cls'
11402/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)
11403/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:
11404 parameter 'cls'
11405/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)
11406/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:
11407 parameter 'cls'
11408/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)
11409/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:
11410 parameter 'cls'
11411/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)
11412/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:
11413 parameter 'cls'
11414/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)
11415/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:
11416 parameter 'cls'
11417/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
11418/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)
11419/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:
11420 parameter 'cls'
11421/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)
11422/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:
11423 parameter 'cls'
11424/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)
11425/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:
11426 parameter 'cls'
11427/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)
11428/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:
11429 parameter 'cls'
11430/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
11431/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
11432/home/william/Git/gnunet/src/testbed/testbed_api.c:2054: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_PEERCONFIG' could not be resolved
11433/home/william/Git/gnunet/src/testbed/testbed_api.c:2055: warning: explicit link request to 'GNUNET_MESSAGE_TYPE_TESTBED_SLAVECONFIG' could not be resolved
11434/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
11435/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
11436/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
11437/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
11438/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
11439/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
11440/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
11441/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
11442/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)
11443/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
11444/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
11445/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
11446/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
11447/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
11448/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
11449/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
11450/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
11451/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
11452/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
11453/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
11454/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
11455/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
11456/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
11457/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
11458/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
11459/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
11460/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
11461/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
11462/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
11463/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
11464/home/william/Git/gnunet/src/testing/gnunet-cmds-helper.c:323: warning: explicit link request to 'GNUNET_mst_destroy()' could not be resolved
11465/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)
11466/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:
11467 parameter 'config'
11468/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)
11469/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)
11470/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)
11471/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:
11472 parameter 'read_file'
11473/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)
11474/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)
11475/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)
11476/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
11477/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:
11478 parameter 'testdir'
11479/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
11480/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)
11481/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:
11482 parameter 'command'
11483/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)
11484/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:
11485 parameter 'command'
11486/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
11487/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)
11488/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)
11489/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)
11490/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)
11491/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)
11492/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)
11493/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:
11494 parameter 'challenge'
11495/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:
11496 parameter 'port'
11497/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:
11498 parameter 'port'
11499/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:
11500 parameter 'port'
11501/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)
11502/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)
11503/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)
11504/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)
11505/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)])
11506/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)])
11507/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:1191: warning: explicit link request to 'receiver_heap' could not be resolved
11508/home/william/Git/gnunet/src/transport/gnunet-communicator-udp.c:1191: warning: explicit link request to 'sender_heap' could not be resolved
11509/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)
11510/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)
11511/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)
11512/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:
11513 parameter 'sender'
11514/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)
11515/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)
11516/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)
11517/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:
11518 parameter 'add_to_receiver'
11519/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:
11520 parameter 'sender'
11521/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)
11522/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:
11523 parameter 'ephemeral'
11524/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)
11525/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)
11526/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)
11527/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)
11528/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)
11529/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:
11530 parameter 'peer'
11531 parameter 'un'
11532 parameter 'un_len'
11533/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)
11534/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:
11535 parameter 'target'
11536/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:3252: warning: Found unknown command '\dvh'
11537/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
11538/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:
11539 parameter 'delay'
11540/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)
11541/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)
11542/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)
11543/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)
11544/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)
11545/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)
11546/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)
11547/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)
11548/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:
11549 parameter 'pub_ephemeral'
11550/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)
11551/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)
11552/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
11553/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)
11554/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
11555/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)
11556/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)
11557/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:
11558 parameter 'dv'
11559 parameter 'without_fc'
11560/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)
11561/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:
11562 parameter 'vl'
11563/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)
11564/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)
11565/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)
11566/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)
11567/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:6340: warning: explicit link request to 'GNUNET_Ok' could not be resolved
11568/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
11569/home/william/Git/gnunet/src/transport/gnunet-service-tng.c:7555: warning: Found unknown command '\ea'
11570/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)
11571/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)
11572/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)
11573/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:
11574 parameter 'hdr'
11575 parameter 'enc_payload'
11576 parameter 'enc_payload_size'
11577/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)
11578/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:
11579 parameter 'im'
11580/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:
11581 parameter 'cls'
11582/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)
11583/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)
11584/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
11585/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)
11586/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)
11587/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)
11588/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:
11589 parameter 'tm'
11590/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
11591/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
11592/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
11593/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
11594/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
11595/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
11596/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)
11597/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
11598/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
11599/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
11600/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
11601/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
11602/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)
11603/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:
11604 parameter 'tm'
11605/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)
11606/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)
11607/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)
11608/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:
11609 parameter 'tm'
11610/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
11611/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
11612/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
11613/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
11614/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
11615/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
11616/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)
11617/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)
11618/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
11619/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)
11620/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:
11621 parameter 'size'
11622/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)
11623/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
11624/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
11625/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
11626/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
11627/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
11628/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
11629/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
11630/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
11631/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
11632/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
11633/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
11634/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)
11635/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:
11636 parameter 'size'
11637/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
11638/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
11639/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
11640/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
11641/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
11642/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
11643/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)
11644/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
11645/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
11646/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
11647/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
11648/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
11649/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
11650/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
11651/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
11652/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)
11653/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)
11654/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)
11655/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)
11656/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)
11657/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)
11658/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)
11659/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
11660/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
11661/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
11662/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
11663/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
11664/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
11665/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
11666/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
11667/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
11668/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
11669/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
11670/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
11671/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)
11672/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)
11673/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)
11674/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
11675/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
11676/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
11677/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
11678/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
11679/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
11680/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
11681/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
11682/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
11683/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
11684/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
11685/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
11686/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
11687/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
11688/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
11689/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
11690/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
11691/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
11692/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
11693/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
11694/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
11695/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
11696/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
11697/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
11698/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
11699/home/william/Git/gnunet/src/transport/plugin_transport_http_server.c:1741: warning: explicit link request to 'MHD_YES' could not be resolved
11700/home/william/Git/gnunet/src/transport/plugin_transport_http_server.c:1741: warning: explicit link request to 'MHD_NO' could not be resolved
11701/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
11702/home/william/Git/gnunet/src/transport/plugin_transport_http_server.c:2027: warning: explicit link request to 'MHD_YES' could not be resolved
11703/home/william/Git/gnunet/src/transport/plugin_transport_http_server.c:2027: warning: explicit link request to 'MHD_NO' could not be resolved
11704/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)
11705/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)
11706/home/william/Git/gnunet/src/transport/plugin_transport_tcp.c:293: warning: explicit link request to 'LEGACY_SERVICE_shutdown()' could not be resolved
11707/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)
11708/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
11709/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
11710/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
11711/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
11712/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
11713/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
11714/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
11715/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
11716/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
11717/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
11718/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
11719/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
11720/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
11721/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
11722/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)
11723/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)
11724/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)
11725/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)
11726/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)
11727/home/william/Git/gnunet/src/transport/tcp_connection_legacy.c:300: warning: explicit link request to 'GNUNET_connection_destroy()' could not be resolved
11728/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)
11729/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)
11730/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)
11731/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:
11732 parameter 'no'
11733 parameter 'node_ip'
11734/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)
11735/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)
11736/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:
11737 parameter 'create_label'
11738 parameter 'topology'
11739/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)
11740/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)
11741/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)
11742/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
11743/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
11744/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
11745/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:
11746 parameter 'create_label'
11747 parameter 'topology'
11748/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)
11749/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:
11750 parameter 'topology'
11751/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)
11752/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:
11753 parameter 'bc_msg'
11754/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)
11755/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:
11756 parameter 'msg'
11757/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)
11758/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:
11759 parameter 'inc_msg'
11760/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)
11761/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)
11762/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:
11763 parameter 'tc_h'
11764/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)
11765/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:
11766 parameter 'proc'
11767/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)
11768/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:
11769 parameter 'tc_h'
11770 parameter 'binary_name'
11771/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)
11772/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:1013: warning: expected whitespace after \a command
11773/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:
11774 parameter 'binary_name'
11775 parameter 'cfg_filename'
11776 parameter 'peer_id'
11777 parameter 'queue_create_reply_cb'
11778 parameter 'add_queue_cb'
11779 parameter 'incoming_message_cb'
11780 parameter 'bc_cb'
11781/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)
11782/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:
11783 parameter 'tc_h'
11784/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)
11785/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)
11786/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)
11787/home/william/Git/gnunet/src/transport/transport-testing-communicator.c:1025: warning: expected whitespace after \a command
11788/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
11789/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
11790/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
11791/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:
11792 parameter 'binary_name'
11793 parameter 'cfg_filename'
11794 parameter 'peer_id'
11795 parameter 'bc_cb'
11796/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)
11797/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:
11798 parameter 'tc_h'
11799/home/william/Git/gnunet/src/transport/transport-testing-main.c:255: warning: Found unknown command '\my_nc'
11800/home/william/Git/gnunet/src/transport/transport-testing-main2.c:255: warning: Found unknown command '\my_nc'
11801/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)
11802/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)
11803/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
11804/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
11805/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
11806/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
11807/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
11808/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
11809/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
11810/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
11811/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
11812/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
11813/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
11814/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
11815/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)
11816/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
11817/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
11818/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
11819/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
11820/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)
11821/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
11822/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
11823/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
11824/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
11825/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
11826/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
11827/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
11828/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
11829/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
11830/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
11831/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)
11832/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)
11833/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
11834/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
11835/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
11836/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
11837/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
11838/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
11839/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
11840/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
11841/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
11842/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
11843/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
11844/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
11845/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)
11846/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
11847/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
11848/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
11849/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
11850/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)
11851/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
11852/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
11853/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
11854/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
11855/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
11856/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
11857/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
11858/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
11859/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
11860/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)
11861/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)
11862/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)
11863/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:
11864 parameter 'u_qh'
11865/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)
11866/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:
11867 parameter 'mc'
11868/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)
11869/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:
11870 parameter 'mc'
11871/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)
11872/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:
11873 parameter 'atsm'
11874/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)
11875/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:
11876 parameter 'atsm'
11877/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)
11878/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:
11879 parameter 'topology'
11880/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)
11881/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)
11882/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:
11883 parameter 'create_label'
11884 parameter 'topology'
11885/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)
11886/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
11887/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:
11888 parameter 'create_label'
11889 parameter 'topology'
11890/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)
11891/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)
11892/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)
11893/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:
11894 parameter 'no'
11895 parameter 'node_ip'
11896/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)
11897/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:
11898 parameter 'qm'
11899/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)
11900/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:
11901 parameter 'handlers'
11902/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)
11903/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:
11904 parameter 'pir_msg'
11905/home/william/Git/gnunet/src/transport/transport_api_monitor_plugins.c:213: warning: Found unknown command '\paramm'
11906/home/william/Git/gnunet/src/transport/transport_api_monitor_plugins.c:214: warning: explicit link request to 'GNUNET_Ok' could not be resolved
11907/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:
11908 parameter 'tpmm'
11909/home/william/Git/gnunet/src/transport/transport_api_monitor_plugins.c:245: warning: Found unknown command '\paramm'
11910/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:
11911 parameter 'tpmm'
11912/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
11913/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)
11914/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:
11915 parameter 'cb'
11916/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)
11917/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:
11918 parameter 'p'
11919/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)
11920/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:
11921 parameter 'p'
11922/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)
11923/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:
11924 parameter 'p'
11925/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)
11926/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:
11927 parameter 'p'
11928/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)
11929/home/william/Git/gnunet/src/include/gnunet_configuration_lib.h:174: warning: Found unknown command '\INLINE'
11930/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)
11931/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:
11932 parameter 'me'
11933/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)
11934/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:
11935 parameter 'r_dash'
11936 parameter 'msg'
11937 parameter 'msg_len'
11938/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)
11939/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:
11940 parameter 'pub'
11941/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1823: warning: explicit link request to 'GNUNET_CRRYPTO_ecdh_eddsa' could not be resolved
11942/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1839: warning: explicit link request to 'GNUNET_CRRYPTO_ecdh_ecdsa' could not be resolved
11943/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1855: warning: explicit link request to 'GNUNET_CRRYPTO_eddsa_ecdh' could not be resolved
11944/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1870: warning: explicit link request to 'GNUNET_CRRYPTO_ecdsa_ecdh' could not be resolved
11945/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)
11946/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:
11947 parameter 'edc'
11948/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)
11949/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:
11950 parameter 'purpose'
11951/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)
11952/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:
11953 parameter 'purpose'
11954/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
11955/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
11956/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
11957/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)
11958/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:
11959 parameter 'purpose'
11960/home/william/Git/gnunet/src/util/crypto_paillier.c:331: warning: Found unknown command '\private_key'
11961/home/william/Git/gnunet/src/util/crypto_random.c:236: warning: explicit link request to 'GNUNET_RANDOM_QUALITY_STRONG' could not be resolved
11962/home/william/Git/gnunet/src/util/crypto_random.c:237: warning: explicit link request to 'GNUNET_RANDOM_QUALITY_WEAK' could not be resolved
11963/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)
11964/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:
11965 parameter 'pkey'
11966/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)
11967/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:
11968 parameter 'buffer'
11969/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)
11970/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)
11971/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:
11972 parameter 'bks'
11973/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2763: warning: explicit link request to 'GNUNET_CRYPTO_rsa_sign()' could not be resolved
11974/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)
11975/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:
11976 parameter 'glob_pattern'
11977/home/william/Git/gnunet/src/util/dnsstub.c:430: warning: argument 'cls' from the argument list of read_response has multiple @param documentation sections
11978/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)
11979/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)
11980/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)
11981/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)
11982/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:
11983 parameter 'num'
11984/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)
11985/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)
11986/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:
11987 parameter 'config'
11988/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)
11989/home/william/Git/gnunet/src/util/gnunet-service-resolver.c:314: warning: Found unknown command '\server_addrs'
11990/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)
11991/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)
11992/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
11993/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
11994/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)
11995/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)
11996/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)
11997/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)
11998/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)
11999/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)
12000/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:
12001 parameter 'env_head'
12002 parameter 'env_tail'
12003 parameter 'env'
12004/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)
12005/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)
12006/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)
12007/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)
12008/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)
12009/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)
12010/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:
12011 parameter 'env_head'
12012 parameter 'env_tail'
12013 parameter 'env'
12014/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)
12015/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)
12016/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)
12017/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)
12018/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)
12019/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)
12020/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:
12021 parameter 'env_head'
12022 parameter 'env_tail'
12023 parameter 'env'
12024/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)
12025/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)
12026/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:
12027 parameter 'sock'
12028/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:
12029 parameter 'pipe_stderr'
12030/home/william/Git/gnunet/src/include/gnunet_program_lib.h:80: warning: explicit link request to 'a' could not be resolved
12031/home/william/Git/gnunet/src/include/gnunet_program_lib.h:107: warning: explicit link request to 'a' could not be resolved
12032/home/william/Git/gnunet/src/util/scheduler.c:439: warning: documented empty return type of GNUNET_SCHEDULER_set_select
12033/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)
12034/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)
12035/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)
12036/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)
12037/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)
12038/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:
12039 parameter 'read_nh'
12040 parameter 'write_nh'
12041 parameter 'read_fh'
12042 parameter 'write_fh'
12043/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)
12044/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:
12045 parameter 'csock'
12046/home/william/Git/gnunet/src/util/service.c:2401: warning: explicit link request to 'GNUNET_SERVICE_stop_listening()' could not be resolved
12047/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)
12048/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)
12049/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)
12050/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:
12051 parameter 'ih'
12052 parameter 'want'
12053/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)
12054/home/william/Git/gnunet/src/util/socks.c:203: warning: documented empty return type of SOCKS5_handshake_done
12055/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)
12056/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)
12057/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)
12058/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:
12059 parameter 'cls'
12060 parameter 'buf'
12061 parameter 'available'
12062 parameter 'addr'
12063 parameter 'addrlen'
12064 parameter 'errCode'
12065/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)
12066/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:
12067 parameter 'host'
12068/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
12069/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)
12070/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:
12071 parameter 'in'
12072/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)
12073/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:
12074 parameter 'out'
12075/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)
12076/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:
12077 parameter 'out'
12078/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)
12079/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:
12080 parameter 'ts'
12081/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)
12082/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:
12083 parameter 'i2v'
12084/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)
12085/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:
12086 parameter 'i2v'
12087/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)
12088/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:
12089 parameter 'expire'
12090/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)
12091/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:
12092 parameter 'service'
12093/home/william/Git/gnunet/src/zonemaster/gnunet-service-zonemaster.c:209: warning: explicit link request to 'put_interval' could not be resolved
12094/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)
12095/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:
12096 parameter 'expire'
12097/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)
12098/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:
12099 parameter 'service'
12100/home/william/Git/gnunet/src/abe/abe.c:181: warning: documented empty return type of GNUNET_ABE_cpabe_delete_master_key
12101/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
12102/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
12103/home/william/Git/gnunet/src/abe/abe.c:226: warning: documented empty return type of GNUNET_ABE_cpabe_delete_key
12104/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
12105/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
12106/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)
12107/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)
12108/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
12109/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
12110/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
12111/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
12112/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
12113/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
12114/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
12115/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
12116/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
12117/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
12118/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
12119/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
12120/home/william/Git/gnunet/src/include/gnunet_ats_service.h:345: warning: Found unknown command '\ar'
12121/home/william/Git/gnunet/src/include/gnunet_ats_service.h:358: warning: Found unknown command '\ar'
12122/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
12123/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
12124/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
12125/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
12126/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
12127/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
12128/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
12129/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
12130/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
12131/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
12132/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
12133/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
12134/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
12135/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
12136/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
12137/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
12138/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
12139/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
12140/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
12141/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
12142/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
12143/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
12144/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
12145/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
12146/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
12147/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
12148/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
12149/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
12150/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
12151/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
12152/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
12153/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
12154/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
12155/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
12156/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
12157/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
12158/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
12159/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
12160/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
12161/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
12162/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
12163/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
12164/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
12165/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
12166/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
12167/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
12168/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
12169/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
12170/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
12171/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)
12172/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:
12173 parameter 'cls'
12174/home/william/Git/gnunet/src/include/gnunet_block_group_lib.h:94: warning: Found unknown command '\bg'
12175/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)
12176/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:
12177 parameter 'bg'
12178/home/william/Git/gnunet/src/include/gnunet_block_lib.h:277: warning: Found unknown command '\bg2'
12179/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
12180/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
12181/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
12182/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
12183/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
12184/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
12185/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
12186/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
12187/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
12188/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
12189/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
12190/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
12191/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
12192/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
12193/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
12194/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
12195/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)
12196/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
12197/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
12198/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
12199/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
12200/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
12201/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)
12202/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:
12203 parameter 'cm'
12204/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
12205/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
12206/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
12207/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
12208/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
12209/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
12210/home/william/Git/gnunet/src/include/gnunet_curl_lib.h:231: warning: Found unknown command '\eh'
12211/home/william/Git/gnunet/src/include/gnunet_curl_lib.h:253: warning: Found unknown command '\eh'
12212/home/william/Git/gnunet/src/include/gnunet_curl_lib.h:311: warning: Found unknown command '\eh'
12213/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)
12214/home/william/Git/gnunet/src/include/gnunet_curl_lib.h:334: warning: Found unknown command '\eh'
12215/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:
12216 parameter 'rp'
12217 parameter 'rc'
12218/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
12219/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
12220/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)
12221/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
12222/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
12223/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
12224/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
12225/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
12226/home/william/Git/gnunet/src/include/gnunet_configuration_lib.h:174: warning: Found unknown command '\INLINE'
12227/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
12228/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
12229/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
12230/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
12231/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
12232/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
12233/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
12234/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
12235/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
12236/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
12237/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
12238/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
12239/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)
12240/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
12241/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
12242/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
12243/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
12244/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
12245/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
12246/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
12247/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
12248/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
12249/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
12250/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
12251/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
12252/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
12253/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
12254/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
12255/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
12256/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
12257/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
12258/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
12259/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
12260/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
12261/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
12262/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
12263/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
12264/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
12265/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
12266/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
12267/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
12268/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
12269/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
12270/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
12271/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
12272/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
12273/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
12274/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
12275/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
12276/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
12277/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
12278/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
12279/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
12280/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
12281/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
12282/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
12283/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
12284/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
12285/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
12286/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
12287/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
12288/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
12289/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
12290/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
12291/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
12292/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
12293/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
12294/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
12295/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
12296/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
12297/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
12298/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
12299/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
12300/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
12301/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
12302/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
12303/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
12304/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
12305/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
12306/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
12307/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
12308/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
12309/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
12310/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
12311/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
12312/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
12313/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
12314/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
12315/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
12316/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
12317/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
12318/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
12319/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
12320/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
12321/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
12322/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
12323/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
12324/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
12325/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
12326/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
12327/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
12328/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
12329/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
12330/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
12331/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
12332/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
12333/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
12334/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
12335/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
12336/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
12337/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
12338/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
12339/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
12340/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
12341/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
12342/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
12343/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
12344/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
12345/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
12346/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
12347/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
12348/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
12349/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
12350/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
12351/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
12352/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
12353/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
12354/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
12355/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
12356/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
12357/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
12358/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
12359/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
12360/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
12361/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
12362/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
12363/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
12364/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
12365/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
12366/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
12367/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
12368/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
12369/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
12370/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
12371/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
12372/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
12373/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
12374/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
12375/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
12376/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
12377/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
12378/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
12379/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
12380/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
12381/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
12382/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
12383/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
12384/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
12385/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
12386/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
12387/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
12388/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
12389/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
12390/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
12391/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
12392/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
12393/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
12394/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
12395/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
12396/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
12397/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
12398/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
12399/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
12400/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
12401/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
12402/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
12403/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
12404/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
12405/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
12406/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
12407/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
12408/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
12409/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
12410/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
12411/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
12412/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
12413/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
12414/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
12415/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
12416/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
12417/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
12418/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
12419/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
12420/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
12421/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
12422/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
12423/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
12424/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
12425/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
12426/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
12427/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
12428/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
12429/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
12430/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
12431/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
12432/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
12433/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
12434/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
12435/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
12436/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
12437/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
12438/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
12439/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
12440/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
12441/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
12442/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
12443/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
12444/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
12445/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
12446/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
12447/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
12448/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
12449/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
12450/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
12451/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
12452/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
12453/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
12454/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
12455/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
12456/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
12457/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
12458/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
12459/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
12460/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
12461/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
12462/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
12463/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
12464/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
12465/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
12466/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
12467/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
12468/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
12469/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
12470/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
12471/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
12472/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
12473/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
12474/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
12475/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
12476/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
12477/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
12478/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
12479/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
12480/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
12481/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
12482/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
12483/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
12484/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
12485/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
12486/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
12487/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
12488/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
12489/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
12490/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
12491/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
12492/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
12493/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
12494/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
12495/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
12496/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
12497/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
12498/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
12499/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
12500/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
12501/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
12502/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
12503/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
12504/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
12505/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
12506/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
12507/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
12508/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
12509/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
12510/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
12511/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
12512/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
12513/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
12514/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:
12515 parameter 'direction'
12516 parameter 'proc2'
12517 parameter 'proc2_cls'
12518/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:
12519 parameter 'direction'
12520 parameter 'proc2'
12521 parameter 'proc2_cls'
12522/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)
12523/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
12524/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
12525/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:
12526 parameter 'sub_attr'
12527/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
12528/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
12529/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
12530/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
12531/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
12532/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
12533/home/william/Git/gnunet/src/util/crypto_random.c:243: warning: explicit link request to 'GNUNET_RANDOM_QUALITY_STRONG' could not be resolved
12534/home/william/Git/gnunet/src/util/crypto_random.c:244: warning: explicit link request to 'GNUNET_RANDOM_QUALITY_WEAK' could not be resolved
12535/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
12536/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
12537/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
12538/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
12539/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
12540/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
12541/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
12542/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
12543/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
12544/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
12545/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
12546/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
12547/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
12548/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
12549/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
12550/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
12551/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
12552/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
12553/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1823: warning: explicit link request to 'GNUNET_CRRYPTO_ecdh_eddsa' could not be resolved
12554/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1839: warning: explicit link request to 'GNUNET_CRRYPTO_ecdh_ecdsa' could not be resolved
12555/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1855: warning: explicit link request to 'GNUNET_CRRYPTO_eddsa_ecdh' could not be resolved
12556/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:1870: warning: explicit link request to 'GNUNET_CRRYPTO_ecdsa_ecdh' could not be resolved
12557/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)
12558/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
12559/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
12560/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)
12561/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:
12562 parameter 'pub'
12563/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)
12564/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:
12565 parameter 'pub'
12566/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)
12567/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:
12568 parameter 'pub'
12569/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
12570/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
12571/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
12572/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
12573/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
12574/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
12575/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
12576/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
12577/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
12578/home/william/Git/gnunet/src/include/gnunet_dht_service.h:297: warning: explicit link request to 'GNUNET_BLOCK_evaluate' could not be resolved
12579/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)
12580/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
12581/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
12582/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
12583/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
12584/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
12585/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
12586/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
12587/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
12588/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
12589/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
12590/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
12591/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
12592/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
12593/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
12594/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
12595/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)
12596/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:
12597 parameter 'xor_distance'
12598/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
12599/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
12600/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
12601/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
12602/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
12603/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
12604/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
12605/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
12606/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
12607/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
12608/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
12609/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
12610/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
12611/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
12612/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
12613/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
12614/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
12615/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
12616/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
12617/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
12618/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
12619/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
12620/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
12621/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
12622/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
12623/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
12624/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
12625/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
12626/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
12627/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
12628/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
12629/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
12630/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
12631/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
12632/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
12633/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
12634/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
12635/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
12636/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
12637/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
12638/home/william/Git/gnunet/src/include/gnunet_datastore_plugin.h:139: warning: explicit link request to 'GNUNET_SYSERROR' could not be resolved
12639/home/william/Git/gnunet/src/include/gnunet_datastore_plugin.h:239: warning: explicit link request to 'GNUNET_SYSERROR' could not be resolved
12640/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)
12641/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:
12642 parameter 'glob_pattern'
12643/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
12644/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
12645/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
12646/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
12647/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
12648/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
12649/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
12650/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
12651/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
12652/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
12653/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
12654/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
12655/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)
12656/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:
12657 parameter 'meta'
12658/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
12659/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
12660/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
12661/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
12662/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
12663/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
12664/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
12665/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
12666/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
12667/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
12668/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
12669/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
12670/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
12671/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
12672/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
12673/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
12674/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
12675/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
12676/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
12677/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
12678/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
12679/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
12680/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
12681/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
12682/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
12683/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
12684/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
12685/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
12686/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
12687/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
12688/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
12689/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
12690/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
12691/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
12692/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
12693/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
12694/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
12695/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
12696/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
12697/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
12698/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
12699/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
12700/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
12701/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
12702/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
12703/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
12704/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
12705/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
12706/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
12707/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
12708/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
12709/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
12710/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
12711/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
12712/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
12713/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
12714/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
12715/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
12716/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
12717/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
12718/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
12719/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
12720/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
12721/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
12722/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
12723/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
12724/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
12725/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
12726/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
12727/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
12728/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
12729/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
12730/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
12731/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
12732/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
12733/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
12734/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
12735/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
12736/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
12737/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
12738/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
12739/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
12740/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
12741/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
12742/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
12743/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
12744/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
12745/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
12746/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
12747/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
12748/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
12749/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
12750/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
12751/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
12752/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
12753/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
12754/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
12755/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
12756/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
12757/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
12758/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
12759/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
12760/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)
12761/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:
12762 parameter 'rd'
12763 parameter 'rd_count'
12764 parameter 'name'
12765/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:
12766 parameter 'rd_count'
12767/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
12768/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
12769/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
12770/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
12771/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
12772/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
12773/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
12774/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
12775/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
12776/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
12777/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
12778/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
12779/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
12780/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
12781/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
12782/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
12783/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
12784/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
12785/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
12786/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
12787/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
12788/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
12789/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
12790/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
12791/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
12792/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)
12793/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:
12794 parameter 'block'
12795/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
12796/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
12797/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
12798/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
12799/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
12800/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
12801/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
12802/home/william/Git/gnunet/src/include/gnunet_gnsrecord_lib.h:661: warning: explicit link request to 'GNUNET_GNSRECORD_PublicKey' could not be resolved
12803/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)
12804/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:
12805 parameter 'rd_count_public'
12806/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)
12807/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:
12808 parameter 'rd_count_public'
12809/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
12810/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
12811/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
12812/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
12813/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
12814/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
12815/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
12816/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
12817/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
12818/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
12819/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
12820/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
12821/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
12822/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
12823/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)
12824/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)
12825/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
12826/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
12827/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
12828/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
12829/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
12830/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
12831/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
12832/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
12833/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
12834/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
12835/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
12836/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
12837/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
12838/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
12839/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
12840/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
12841/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
12842/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
12843/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
12844/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
12845/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
12846/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
12847/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
12848/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
12849/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
12850/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)
12851/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)
12852/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)
12853/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)
12854/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
12855/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
12856/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
12857/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
12858/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
12859/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
12860/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)
12861/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)
12862/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
12863/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
12864/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
12865/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
12866/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
12867/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
12868/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
12869/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
12870/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
12871/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
12872/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
12873/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
12874/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
12875/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
12876/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
12877/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
12878/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
12879/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
12880/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
12881/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)
12882/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
12883/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
12884/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
12885/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)
12886/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
12887/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
12888/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
12889/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
12890/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
12891/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)
12892/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
12893/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
12894/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
12895/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
12896/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)
12897/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
12898/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
12899/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
12900/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)
12901/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:
12902 parameter 'type'
12903/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)
12904/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
12905/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
12906/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
12907/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
12908/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
12909/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
12910/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)
12911/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
12912/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
12913/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
12914/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
12915/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
12916/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
12917/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
12918/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
12919/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
12920/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
12921/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
12922/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
12923/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
12924/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
12925/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
12926/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
12927/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
12928/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
12929/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
12930/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
12931/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
12932/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
12933/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
12934/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
12935/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
12936/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
12937/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
12938/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
12939/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
12940/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
12941/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)
12942/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
12943/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
12944/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
12945/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
12946/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
12947/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
12948/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
12949/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
12950/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
12951/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
12952/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
12953/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
12954/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
12955/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
12956/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
12957/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)
12958/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:
12959 parameter 'pub'
12960/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)
12961/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:
12962 parameter 'edc'
12963/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)
12964/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:
12965 parameter 'purpose'
12966/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)
12967/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:
12968 parameter 'purpose'
12969/home/william/Git/gnunet/src/util/crypto_paillier.c:331: warning: Found unknown command '\private_key'
12970/home/william/Git/gnunet/src/util/crypto_paillier.c:336: warning: Found unknown command '\private_key'
12971/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
12972/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
12973/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
12974/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
12975/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
12976/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
12977/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
12978/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
12979/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)
12980/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:
12981 parameter 'bks'
12982/home/william/Git/gnunet/src/include/gnunet_crypto_lib.h:2763: warning: explicit link request to 'GNUNET_CRYPTO_rsa_sign()' could not be resolved
12983/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
12984/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
12985/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
12986/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
12987/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
12988/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
12989/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
12990/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
12991/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
12992/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
12993/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
12994/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
12995/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
12996/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
12997/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
12998/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
12999/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
13000/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
13001/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
13002/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
13003/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
13004/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
13005/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
13006/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
13007/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)
13008/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:
13009 parameter 'p'
13010/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)
13011/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:
13012 parameter 'p'
13013/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)
13014/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:
13015 parameter 'p'
13016/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)
13017/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:
13018 parameter 'p'
13019/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
13020/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
13021/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
13022/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
13023/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
13024/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
13025/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)
13026/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)
13027/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)
13028/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)
13029/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:
13030 parameter 'identity_cls'
13031 parameter 'msg_cls'
13032/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)
13033/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)
13034/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:
13035 parameter 'handle'
13036/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)
13037/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)
13038/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:
13039 parameter 'handle'
13040/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)
13041/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)
13042/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:
13043 parameter 'handle'
13044/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)
13045/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)
13046/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:
13047 parameter 'handle'
13048/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)
13049/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)
13050/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:
13051 parameter 'handle'
13052/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)
13053/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)
13054/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:
13055 parameter 'room'
13056/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:794: warning: found </i> tag without matching <i>
13057/home/william/Git/gnunet/src/include/gnunet_messenger_service.h:794: warning: found </i> tag without matching <i>
13058/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)
13059/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)
13060/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:
13061 parameter 'room'
13062/home/william/Git/gnunet/src/include/gnunet_nc_lib.h:57: warning: end of comment block while expecting command </code>
13063/home/william/Git/gnunet/src/include/gnunet_nc_lib.h:35: warning: found </tt> tag without matching <tt>
13064/home/william/Git/gnunet/src/include/gnunet_nc_lib.h:69: warning: end of comment block while expecting command </code>
13065/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
13066/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)
13067/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:
13068 parameter 'm'
13069/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)
13070/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:
13071 parameter 'm'
13072/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
13073/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
13074/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)
13075/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)
13076/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)
13077/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)
13078/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)
13079/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)
13080/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:
13081 parameter 'env_head'
13082 parameter 'env_tail'
13083 parameter 'env'
13084/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)
13085/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)
13086/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)
13087/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)
13088/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)
13089/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)
13090/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:
13091 parameter 'env_head'
13092 parameter 'env_tail'
13093 parameter 'env'
13094/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)
13095/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)
13096/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)
13097/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)
13098/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)
13099/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)
13100/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:
13101 parameter 'env_head'
13102 parameter 'env_tail'
13103 parameter 'env'
13104/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
13105/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)
13106/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:
13107 parameter 'len2'
13108/home/william/Git/gnunet/src/include/gnunet_my_lib.h:125: warning: Found unknown command '\oaran'
13109/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
13110/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
13111/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
13112/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
13113/home/william/Git/gnunet/src/include/gnunet_my_lib.h:260: warning: Found unknown command '\spec'
13114/home/william/Git/gnunet/src/include/gnunet_my_lib.h:261: warning: Found unknown command '\oaran'
13115/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)
13116/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)
13117/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:
13118 parameter 'ptr'
13119/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)
13120/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
13121/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)
13122/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)
13123/home/william/Git/gnunet/src/include/gnunet_my_lib.h:470: warning: explicit link request to 'GNUNET_MY_exect_prepared()' could not be resolved
13124/home/william/Git/gnunet/src/include/gnunet_my_lib.h:473: warning: explicit link request to 'GNUNET_MY_exect_prepared()' could not be resolved
13125/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
13126/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
13127/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
13128/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
13129/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
13130/home/william/Git/gnunet/src/include/gnunet_my_lib.h:355: warning: Found unknown command '\spec'
13131/home/william/Git/gnunet/src/include/gnunet_my_lib.h:356: warning: Found unknown command '\spec'
13132/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
13133/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
13134/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
13135/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
13136/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
13137/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
13138/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
13139/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
13140/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
13141/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
13142/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
13143/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
13144/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
13145/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
13146/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
13147/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
13148/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
13149/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
13150/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
13151/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
13152/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
13153/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
13154/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
13155/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
13156/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
13157/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
13158/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
13159/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
13160/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
13161/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
13162/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
13163/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
13164/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
13165/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
13166/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
13167/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
13168/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
13169/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)
13170/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
13171/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
13172/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
13173/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
13174/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
13175/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
13176/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
13177/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
13178/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
13179/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
13180/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
13181/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
13182/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
13183/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
13184/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
13185/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
13186/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
13187/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
13188/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
13189/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
13190/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
13191/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
13192/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
13193/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
13194/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
13195/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
13196/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
13197/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
13198/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
13199/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
13200/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
13201/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
13202/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
13203/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
13204/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
13205/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
13206/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
13207/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
13208/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
13209/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
13210/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
13211/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
13212/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
13213/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
13214/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
13215/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
13216/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
13217/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
13218/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
13219/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
13220/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
13221/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
13222/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
13223/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
13224/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
13225/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
13226/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
13227/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
13228/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
13229/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
13230/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
13231/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
13232/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
13233/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
13234/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
13235/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
13236/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
13237/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
13238/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
13239/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
13240/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
13241/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
13242/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
13243/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
13244/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
13245/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
13246/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
13247/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
13248/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
13249/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
13250/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
13251/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
13252/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
13253/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
13254/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
13255/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
13256/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
13257/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
13258/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
13259/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
13260/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
13261/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
13262/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
13263/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
13264/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
13265/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)
13266/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
13267/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
13268/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
13269/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
13270/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
13271/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
13272/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
13273/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
13274/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
13275/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
13276/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
13277/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
13278/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
13279/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
13280/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
13281/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
13282/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
13283/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
13284/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
13285/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
13286/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
13287/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
13288/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
13289/home/william/Git/gnunet/src/include/gnunet_program_lib.h:80: warning: explicit link request to 'a' could not be resolved
13290/home/william/Git/gnunet/src/include/gnunet_program_lib.h:107: warning: explicit link request to 'a' could not be resolved
13291/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
13292/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
13293/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
13294/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
13295/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
13296/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
13297/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
13298/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
13299/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)
13300/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)
13301/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
13302/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
13303/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
13304/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)
13305/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)
13306/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:
13307 parameter 'num_updates'
13308 parameter 'view_update_cb'
13309/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)
13310/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:
13311 parameter 'stream_input_cb'
13312/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
13313/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
13314/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
13315/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
13316/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
13317/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)
13318/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:
13319 parameter 'al'
13320/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)
13321/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:
13322 parameter 'al'
13323/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)
13324/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
13325/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
13326/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
13327/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
13328/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:
13329 parameter 'al'
13330/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)
13331/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:
13332 parameter 'al'
13333/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
13334/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
13335/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)
13336/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:
13337 parameter 'al'
13338/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)
13339/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:
13340 parameter 'credentials'
13341/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)
13342/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)
13343/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:
13344 parameter 'al'
13345/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)
13346/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:
13347 parameter 'attrs'
13348 parameter 'att_name'
13349/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)
13350/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:
13351 parameter 'credentials'
13352/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
13353/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
13354/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)
13355/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)
13356/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
13357/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)
13358/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
13359/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
13360/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
13361/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)
13362/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:
13363 parameter 'cred'
13364/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)
13365/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)
13366/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)
13367/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:
13368 parameter 'al'
13369/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)
13370/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
13371/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
13372/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
13373/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)
13374/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)
13375/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
13376/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
13377/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
13378/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
13379/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
13380/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
13381/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
13382/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
13383/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
13384/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
13385/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
13386/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
13387/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
13388/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
13389/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
13390/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
13391/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
13392/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
13393/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
13394/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
13395/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
13396/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
13397/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
13398/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
13399/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
13400/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
13401/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)
13402/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
13403/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
13404/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
13405/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
13406/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
13407/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)
13408/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)
13409/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:
13410 parameter 'ait'
13411/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)
13412/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:
13413 parameter 'ait'
13414/home/william/Git/gnunet/src/include/gnunet_reclaim_service.h:386: warning: Found unknown command '\GNUNET_RECLAIM_ticket_consume'
13415/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
13416/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
13417/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
13418/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
13419/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
13420/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
13421/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
13422/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
13423/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
13424/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
13425/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
13426/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
13427/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
13428/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
13429/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
13430/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
13431/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
13432/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
13433/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
13434/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
13435/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
13436/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
13437/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
13438/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
13439/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
13440/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
13441/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
13442/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
13443/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
13444/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
13445/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
13446/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
13447/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
13448/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
13449/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
13450/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
13451/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
13452/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
13453/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
13454/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
13455/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
13456/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)
13457/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)
13458/home/william/Git/gnunet/src/revocation/revocation_api.c:298: warning: explicit link request to 'GNUNET_REVOCATION_sign_revocation' could not be resolved
13459/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)
13460/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
13461/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
13462/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
13463/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
13464/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)
13465/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:
13466 parameter 'difficulty'
13467/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
13468/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
13469/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)
13470/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)
13471/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)
13472/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
13473/home/william/Git/gnunet/src/include/gnunet_revocation_service.h:258: warning: documented empty return type of GNUNET_REVOCATION_pow_stop
13474/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
13475/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
13476/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
13477/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
13478/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
13479/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
13480/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
13481/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)
13482/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
13483/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
13484/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
13485/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
13486/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
13487/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
13488/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
13489/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
13490/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
13491/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
13492/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
13493/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
13494/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
13495/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
13496/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
13497/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
13498/home/william/Git/gnunet/src/include/gnunet_scheduler_lib.h:906: warning: documented empty return type of GNUNET_SCHEDULER_set_select
13499/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)
13500/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)
13501/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:
13502 parameter 'plaintext'
13503/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
13504/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
13505/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
13506/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
13507/home/william/Git/gnunet/src/include/gnunet_mst_lib.h:64: warning: explicit link request to 'GNUNET_mst_destroy' could not be resolved
13508/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
13509/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
13510/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
13511/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
13512/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
13513/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)
13514/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)
13515/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:
13516 parameter 'sock'
13517/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
13518/home/william/Git/gnunet/src/include/gnunet_service_lib.h:415: warning: explicit link request to 'GNUNET_SERVICE_stop_listening()' could not be resolved
13519/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,...)
13520/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,...)
13521/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:
13522 parameter 'service_options'
13523 parameter 'init_cb'
13524 parameter '...'
13525/home/william/Git/gnunet/src/include/gnunet_seti_service.h:176: warning: explicit link request to 'GNUNET_SETI_STATUS_OK' could not be resolved
13526/home/william/Git/gnunet/src/include/gnunet_setu_service.h:221: warning: explicit link request to 'GNUNET_SETU_STATUS_OK' could not be resolved
13527/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
13528/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
13529/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
13530/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
13531/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
13532/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
13533/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
13534/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
13535/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
13536/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
13537/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
13538/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
13539/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
13540/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
13541/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
13542/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:
13543 parameter 'options'
13544/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
13545/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
13546/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
13547/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
13548/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
13549/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
13550/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
13551/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
13552/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
13553/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
13554/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:
13555 parameter 'options'
13556/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
13557/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
13558/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
13559/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
13560/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
13561/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
13562/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
13563/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
13564/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
13565/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
13566/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
13567/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
13568/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
13569/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
13570/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
13571/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
13572/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
13573/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
13574/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
13575/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
13576/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
13577/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
13578/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
13579/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
13580/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
13581/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
13582/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
13583/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
13584/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
13585/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
13586/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
13587/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
13588/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
13589/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
13590/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
13591/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
13592/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
13593/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
13594/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
13595/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
13596/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
13597/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
13598/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
13599/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)
13600/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
13601/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
13602/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
13603/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
13604/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
13605/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
13606/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
13607/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
13608/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
13609/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
13610/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
13611/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
13612/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
13613/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
13614/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
13615/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
13616/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
13617/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
13618/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
13619/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)
13620/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:
13621 parameter 'in'
13622/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)
13623/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:
13624 parameter 'out'
13625/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)
13626/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:
13627 parameter 'out'
13628/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
13629/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
13630/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
13631/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
13632/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)
13633/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
13634/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
13635/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
13636/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
13637/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
13638/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
13639/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
13640/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
13641/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)
13642/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
13643/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
13644/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
13645/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
13646/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
13647/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)
13648/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
13649/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
13650/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
13651/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
13652/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
13653/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
13654/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
13655/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
13656/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
13657/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)
13658/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:
13659 parameter 'u_qh'
13660/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
13661/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
13662/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
13663/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
13664/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)
13665/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
13666/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
13667/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
13668/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
13669/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
13670/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
13671/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
13672/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)
13673/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
13674/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
13675/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
13676/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
13677/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
13678/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
13679/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
13680/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
13681/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
13682/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)
13683/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
13684/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
13685/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
13686/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
13687/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
13688/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
13689/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
13690/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
13691/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
13692/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
13693/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
13694/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
13695/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
13696/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
13697/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
13698/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
13699/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
13700/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
13701/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
13702/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
13703/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
13704/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
13705/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
13706/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
13707/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
13708/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
13709/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
13710/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
13711/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
13712/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
13713/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
13714/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
13715/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
13716/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
13717/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
13718/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
13719/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
13720/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
13721/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
13722/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
13723/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
13724/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
13725/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
13726/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
13727/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
13728/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
13729/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
13730/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
13731/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
13732/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
13733/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
13734/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
13735/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
13736/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
13737/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
13738/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
13739/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
13740/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
13741/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
13742/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
13743/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
13744/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
13745/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
13746/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
13747/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
13748/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
13749/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
13750/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
13751/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
13752/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
13753/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
13754/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
13755/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
13756/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
13757/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
13758/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
13759/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
13760/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
13761/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
13762/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
13763/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
13764/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
13765/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
13766/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
13767/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
13768/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
13769/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
13770/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
13771/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
13772/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
13773/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
13774/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
13775/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
13776/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
13777/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
13778/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
13779/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
13780/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
13781/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
13782/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
13783/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
13784/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
13785/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
13786/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
13787/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
13788/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
13789/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
13790/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
13791/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
13792/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
13793/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
13794/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
13795/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
13796/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
13797/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
13798/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
13799/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
13800/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
13801/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
13802/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
13803/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
13804/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
13805/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
13806/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
13807/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
13808/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
13809/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
13810/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
13811/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
13812/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
13813/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
13814/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
13815/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
13816/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
13817/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
13818/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
13819/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
13820/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
13821/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
13822/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
13823/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
13824/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
13825/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
13826/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
13827/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
13828/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
13829/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
13830/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
13831/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
13832/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
13833/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)
13834/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
13835/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
13836/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
13837/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
13838/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)
13839/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
13840/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
13841/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
13842/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
13843/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
13844/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
13845/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
13846/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
13847/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
13848/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
13849/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
13850/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
13851/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
13852/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
13853/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
13854/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
13855/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
13856/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
13857/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
13858/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
13859/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
13860/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
13861/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
13862/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
13863/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
13864/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
13865/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
13866/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
13867/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
13868/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
13869/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)
13870/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:
13871 parameter 'ts'
13872/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
13873/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
13874/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
13875/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
13876/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
13877/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
13878/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
13879/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
13880/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
13881/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
13882/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
13883/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
13884/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
13885/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
13886/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
13887/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
13888/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
13889/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