aboutsummaryrefslogtreecommitdiff
path: root/src/transport/plugin_transport_tcp.c
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/transport/plugin_transport_tcp.c
parent16bcbbea7133fd2265d46bd2ae1dc70e8c9ba96f (diff)
downloadgnunet-6c471eeb15e27f8226492b4860a3c2acb94c5f25.tar.gz
gnunet-6c471eeb15e27f8226492b4860a3c2acb94c5f25.zip
-consistently use struct GNUNET_HashCode
Diffstat (limited to 'src/transport/plugin_transport_tcp.c')
-rw-r--r--src/transport/plugin_transport_tcp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/transport/plugin_transport_tcp.c b/src/transport/plugin_transport_tcp.c
index af5c71540..450209aff 100644
--- a/src/transport/plugin_transport_tcp.c
+++ b/src/transport/plugin_transport_tcp.c
@@ -684,7 +684,7 @@ struct SessionClientCtx
684 684
685static int 685static int
686session_lookup_by_client_it (void *cls, 686session_lookup_by_client_it (void *cls,
687 const GNUNET_HashCode * key, 687 const struct GNUNET_HashCode * key,
688 void *value) 688 void *value)
689{ 689{
690 struct SessionClientCtx *sc_ctx = cls; 690 struct SessionClientCtx *sc_ctx = cls;
@@ -1129,7 +1129,7 @@ struct SessionItCtx
1129 1129
1130static int 1130static int
1131session_lookup_it (void *cls, 1131session_lookup_it (void *cls,
1132 const GNUNET_HashCode *key, 1132 const struct GNUNET_HashCode *key,
1133 void *value) 1133 void *value)
1134{ 1134{
1135 struct SessionItCtx * si_ctx = cls; 1135 struct SessionItCtx * si_ctx = cls;
@@ -1391,7 +1391,7 @@ tcp_plugin_get_session (void *cls,
1391 1391
1392static int 1392static int
1393session_disconnect_it (void *cls, 1393session_disconnect_it (void *cls,
1394 const GNUNET_HashCode * key, 1394 const struct GNUNET_HashCode * key,
1395 void *value) 1395 void *value)
1396{ 1396{
1397 struct Session *session = value; 1397 struct Session *session = value;