aboutsummaryrefslogtreecommitdiff
path: root/src/mesh/gnunet-service-mesh_connection.h
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2014-04-07 12:00:28 +0000
committerBart Polot <bart@net.in.tum.de>2014-04-07 12:00:28 +0000
commit22f59cade743d9209cf212946a42b859bbb51b87 (patch)
tree7dbb95ac1d6cf64477510c67c365c6c04182b1d2 /src/mesh/gnunet-service-mesh_connection.h
parent864a6bfe96db3c0eae0dc188708dcac0ac4ce9cd (diff)
downloadgnunet-22f59cade743d9209cf212946a42b859bbb51b87.tar.gz
gnunet-22f59cade743d9209cf212946a42b859bbb51b87.zip
- rename 256 bit mesh hash type
Diffstat (limited to 'src/mesh/gnunet-service-mesh_connection.h')
-rw-r--r--src/mesh/gnunet-service-mesh_connection.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesh/gnunet-service-mesh_connection.h b/src/mesh/gnunet-service-mesh_connection.h
index f79117f2d..39d62adc9 100644
--- a/src/mesh/gnunet-service-mesh_connection.h
+++ b/src/mesh/gnunet-service-mesh_connection.h
@@ -266,7 +266,7 @@ GMC_shutdown (void);
266 * @return Newly created connection, NULL in case of error (own id not in path). 266 * @return Newly created connection, NULL in case of error (own id not in path).
267 */ 267 */
268struct MeshConnection * 268struct MeshConnection *
269GMC_new (const struct GNUNET_MeshHash *cid, 269GMC_new (const struct GNUNET_MESH_Hash *cid,
270 struct MeshTunnel3 *t, 270 struct MeshTunnel3 *t,
271 struct MeshPeerPath *p, 271 struct MeshPeerPath *p,
272 unsigned int own_pos); 272 unsigned int own_pos);
@@ -289,7 +289,7 @@ GMC_destroy (struct MeshConnection *c);
289 * 289 *
290 * @return ID of the connection. 290 * @return ID of the connection.
291 */ 291 */
292const struct GNUNET_MeshHash * 292const struct GNUNET_MESH_Hash *
293GMC_get_id (const struct MeshConnection *c); 293GMC_get_id (const struct MeshConnection *c);
294 294
295 295