aboutsummaryrefslogtreecommitdiff
path: root/src/set
diff options
context:
space:
mode:
authorWillow Liquorice <willow@howhill.com>2022-09-07 21:27:54 +0100
committerWillow Liquorice <willow@howhill.com>2022-10-03 12:51:58 +0100
commit95b52cc6fe194ffea48f0833429926f843c4d194 (patch)
treea750d1a8e5907aaabad3c5edb4e8d73d83d73523 /src/set
parent7f85993041d102e57aaa69ed134ff6422d84c67e (diff)
downloadgnunet-95b52cc6fe194ffea48f0833429926f843c4d194.tar.gz
gnunet-95b52cc6fe194ffea48f0833429926f843c4d194.zip
-DOC: Documentation cleanup pass through old SET subsystem
Diffstat (limited to 'src/set')
-rw-r--r--src/set/gnunet-service-set.c4
-rw-r--r--src/set/gnunet-service-set_intersection.c9
-rw-r--r--src/set/gnunet-service-set_intersection.h2
-rw-r--r--src/set/set_api.c2
4 files changed, 4 insertions, 13 deletions
diff --git a/src/set/gnunet-service-set.c b/src/set/gnunet-service-set.c
index 2b859d81a..208c63a1a 100644
--- a/src/set/gnunet-service-set.c
+++ b/src/set/gnunet-service-set.c
@@ -176,7 +176,6 @@ static uint32_t suggest_id;
176/** 176/**
177 * Get the incoming socket associated with the given id. 177 * Get the incoming socket associated with the given id.
178 * 178 *
179 * @param listener the listener to look in
180 * @param id id to look for 179 * @param id id to look for
181 * @return the incoming socket associated with the id, 180 * @return the incoming socket associated with the id,
182 * or NULL if there is none 181 * or NULL if there is none
@@ -1006,7 +1005,7 @@ handle_client_iterate (void *cls, const struct GNUNET_MessageHeader *m)
1006 * operation to be performed. 1005 * operation to be performed.
1007 * 1006 *
1008 * @param cls client that sent the message 1007 * @param cls client that sent the message
1009 * @param m message sent by the client 1008 * @param msg message sent by the client
1010 */ 1009 */
1011static void 1010static void
1012handle_client_create_set (void *cls, const struct GNUNET_SET_CreateMessage *msg) 1011handle_client_create_set (void *cls, const struct GNUNET_SET_CreateMessage *msg)
@@ -1066,7 +1065,6 @@ handle_client_create_set (void *cls, const struct GNUNET_SET_CreateMessage *msg)
1066 * - we got the channel from a peer but no #GNUNET_MESSAGE_TYPE_SET_P2P_OPERATION_REQUEST 1065 * - we got the channel from a peer but no #GNUNET_MESSAGE_TYPE_SET_P2P_OPERATION_REQUEST
1067 * 1066 *
1068 * @param cls channel context 1067 * @param cls channel context
1069 * @param tc context information (why was this task triggered now)
1070 */ 1068 */
1071static void 1069static void
1072incoming_timeout_cb (void *cls) 1070incoming_timeout_cb (void *cls)
diff --git a/src/set/gnunet-service-set_intersection.c b/src/set/gnunet-service-set_intersection.c
index 9313483bb..51a8d0dbc 100644
--- a/src/set/gnunet-service-set_intersection.c
+++ b/src/set/gnunet-service-set_intersection.c
@@ -754,13 +754,6 @@ begin_bf_exchange (struct Operation *op)
754} 754}
755 755
756 756
757/**
758 * Handle the initial `struct IntersectionElementInfoMessage` from a
759 * remote peer.
760 *
761 * @param cls the intersection operation
762 * @param mh the header of the message
763 */
764void 757void
765handle_intersection_p2p_element_info (void *cls, 758handle_intersection_p2p_element_info (void *cls,
766 const struct 759 const struct
@@ -1039,7 +1032,7 @@ filter_all (void *cls,
1039 * Handle a done message from a remote peer 1032 * Handle a done message from a remote peer
1040 * 1033 *
1041 * @param cls the intersection operation 1034 * @param cls the intersection operation
1042 * @param mh the message 1035 * @param idm the message
1043 */ 1036 */
1044void 1037void
1045handle_intersection_p2p_done (void *cls, 1038handle_intersection_p2p_done (void *cls,
diff --git a/src/set/gnunet-service-set_intersection.h b/src/set/gnunet-service-set_intersection.h
index 200e8f5ff..d8884d0a7 100644
--- a/src/set/gnunet-service-set_intersection.h
+++ b/src/set/gnunet-service-set_intersection.h
@@ -57,7 +57,7 @@ handle_intersection_p2p_bf (void *cls,
57 * remote peer. 57 * remote peer.
58 * 58 *
59 * @param cls the intersection operation 59 * @param cls the intersection operation
60 * @param mh the header of the message 60 * @param msg the header of the message
61 */ 61 */
62void 62void
63handle_intersection_p2p_element_info (void *cls, 63handle_intersection_p2p_element_info (void *cls,
diff --git a/src/set/set_api.c b/src/set/set_api.c
index 7e1085b04..4f73ff06c 100644
--- a/src/set/set_api.c
+++ b/src/set/set_api.c
@@ -296,7 +296,7 @@ check_iter_element (void *cls,
296 * iterator and sends an acknowledgement to the service. 296 * iterator and sends an acknowledgement to the service.
297 * 297 *
298 * @param cls the `struct GNUNET_SET_Handle *` 298 * @param cls the `struct GNUNET_SET_Handle *`
299 * @param mh the message 299 * @param msg the message
300 */ 300 */
301static void 301static void
302handle_iter_element (void *cls, 302handle_iter_element (void *cls,