aboutsummaryrefslogtreecommitdiff
path: root/src/rps
diff options
context:
space:
mode:
authorJulius Bünger <buenger@mytum.de>2016-05-12 08:58:17 +0000
committerJulius Bünger <buenger@mytum.de>2016-05-12 08:58:17 +0000
commit58a56562f1d4d8c375144149690951b3ea6c36ec (patch)
tree829082dae9d3a278f31e4841c17526370595f204 /src/rps
parentc5ba5d0496597c4e2f3ae1fc393ebdf0971790d8 (diff)
downloadgnunet-58a56562f1d4d8c375144149690951b3ea6c36ec.tar.gz
gnunet-58a56562f1d4d8c375144149690951b3ea6c36ec.zip
-rps: doxygen
Diffstat (limited to 'src/rps')
-rw-r--r--src/rps/gnunet-service-rps_peers.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/rps/gnunet-service-rps_peers.c b/src/rps/gnunet-service-rps_peers.c
index 7a073c63f..33430e51f 100644
--- a/src/rps/gnunet-service-rps_peers.c
+++ b/src/rps/gnunet-service-rps_peers.c
@@ -220,7 +220,6 @@ static const struct GNUNET_PeerIdentity *own_identity;
220static struct GNUNET_CADET_Handle *cadet_handle; 220static struct GNUNET_CADET_Handle *cadet_handle;
221 221
222 222
223
224/** 223/**
225 * @brief Get the #PeerContext associated with a peer 224 * @brief Get the #PeerContext associated with a peer
226 * 225 *
@@ -1062,9 +1061,6 @@ Peers_destroy_sending_channel (const struct GNUNET_PeerIdentity *peer)
1062/** 1061/**
1063 * This is called when a channel is destroyed. 1062 * This is called when a channel is destroyed.
1064 * 1063 *
1065 * Removes peer completely from our knowledge if the send_channel was destroyed
1066 * Otherwise simply delete the recv_channel
1067 *
1068 * @param cls The closure 1064 * @param cls The closure
1069 * @param channel The channel being closed 1065 * @param channel The channel being closed
1070 * @param channel_ctx The context associated with this channel 1066 * @param channel_ctx The context associated with this channel
@@ -1093,6 +1089,7 @@ Peers_cleanup_destroyed_channel (void *cls,
1093 /* If our peer issued the destruction of the channel, the #Peers_TO_DESTROY 1089 /* If our peer issued the destruction of the channel, the #Peers_TO_DESTROY
1094 * flag will be set. In this case simply make sure that the channels are 1090 * flag will be set. In this case simply make sure that the channels are
1095 * cleaned. */ 1091 * cleaned. */
1092 /* FIXME This distinction seems to be redundant */
1096 if (Peers_check_peer_flag (peer, Peers_TO_DESTROY)) 1093 if (Peers_check_peer_flag (peer, Peers_TO_DESTROY))
1097 {/* We initiatad the destruction of this particular peer */ 1094 {/* We initiatad the destruction of this particular peer */
1098 if (channel == peer_ctx->send_channel) 1095 if (channel == peer_ctx->send_channel)