aboutsummaryrefslogtreecommitdiff
path: root/src/peerinfo
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2012-06-12 19:07:40 +0000
committerChristian Grothoff <christian@grothoff.org>2012-06-12 19:07:40 +0000
commit6c471eeb15e27f8226492b4860a3c2acb94c5f25 (patch)
treea3a9dcba12ee5356c03056c10b7aba5367b2ef34 /src/peerinfo
parent16bcbbea7133fd2265d46bd2ae1dc70e8c9ba96f (diff)
downloadgnunet-6c471eeb15e27f8226492b4860a3c2acb94c5f25.tar.gz
gnunet-6c471eeb15e27f8226492b4860a3c2acb94c5f25.zip
-consistently use struct GNUNET_HashCode
Diffstat (limited to 'src/peerinfo')
-rw-r--r--src/peerinfo/gnunet-service-peerinfo.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/peerinfo/gnunet-service-peerinfo.c b/src/peerinfo/gnunet-service-peerinfo.c
index df3486ea0..59f9a9b6e 100644
--- a/src/peerinfo/gnunet-service-peerinfo.c
+++ b/src/peerinfo/gnunet-service-peerinfo.c
@@ -419,7 +419,7 @@ bind_address (const struct GNUNET_PeerIdentity *peer,
419 * @return GNUNET_YES (continue to iterate) 419 * @return GNUNET_YES (continue to iterate)
420 */ 420 */
421static int 421static int
422add_to_tc (void *cls, const GNUNET_HashCode * key, void *value) 422add_to_tc (void *cls, const struct GNUNET_HashCode * key, void *value)
423{ 423{
424 struct GNUNET_SERVER_TransmitContext *tc = cls; 424 struct GNUNET_SERVER_TransmitContext *tc = cls;
425 struct HostEntry *pos = value; 425 struct HostEntry *pos = value;
@@ -594,7 +594,7 @@ handle_get_all (void *cls, struct GNUNET_SERVER_Client *client,
594 * FIXME. 594 * FIXME.
595 */ 595 */
596static int 596static int
597do_notify_entry (void *cls, const GNUNET_HashCode * key, void *value) 597do_notify_entry (void *cls, const struct GNUNET_HashCode * key, void *value)
598{ 598{
599 struct GNUNET_SERVER_Client *client = cls; 599 struct GNUNET_SERVER_Client *client = cls;
600 struct HostEntry *he = value; 600 struct HostEntry *he = value;
@@ -631,7 +631,7 @@ handle_notify (void *cls, struct GNUNET_SERVER_Client *client,
631 * FIXME. 631 * FIXME.
632 */ 632 */
633static int 633static int
634free_host_entry (void *cls, const GNUNET_HashCode * key, void *value) 634free_host_entry (void *cls, const struct GNUNET_HashCode * key, void *value)
635{ 635{
636 struct HostEntry *he = value; 636 struct HostEntry *he = value;
637 637