aboutsummaryrefslogtreecommitdiff
path: root/src/testbed/gnunet-service-testbed.h
diff options
context:
space:
mode:
authorSree Harsha Totakura <totakura@in.tum.de>2013-01-28 15:03:58 +0000
committerSree Harsha Totakura <totakura@in.tum.de>2013-01-28 15:03:58 +0000
commit87af323234ce202f508d25b4ecf886a3e31a7560 (patch)
tree61b1e59ea3cc0694837414c68b74843e6cc9e6aa /src/testbed/gnunet-service-testbed.h
parentb14575f3d89ba108f1120e379f2f8e92735e5298 (diff)
downloadgnunet-87af323234ce202f508d25b4ecf886a3e31a7560.tar.gz
gnunet-87af323234ce202f508d25b4ecf886a3e31a7560.zip
- rename "hello cache" to "cache"
Diffstat (limited to 'src/testbed/gnunet-service-testbed.h')
-rw-r--r--src/testbed/gnunet-service-testbed.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/testbed/gnunet-service-testbed.h b/src/testbed/gnunet-service-testbed.h
index 417e5b90f..157adc2ea 100644
--- a/src/testbed/gnunet-service-testbed.h
+++ b/src/testbed/gnunet-service-testbed.h
@@ -653,7 +653,7 @@ GST_destroy_peer (struct Peer *peer);
653 * @return the HELLO message; NULL if not found 653 * @return the HELLO message; NULL if not found
654 */ 654 */
655const struct GNUNET_MessageHeader * 655const struct GNUNET_MessageHeader *
656GST_hello_cache_lookup (const struct GNUNET_PeerIdentity *id); 656GST_cache_lookup (const struct GNUNET_PeerIdentity *id);
657 657
658/** 658/**
659 * Caches the HELLO of the given peer. Updates the HELLO if it was already 659 * Caches the HELLO of the given peer. Updates the HELLO if it was already
@@ -663,8 +663,8 @@ GST_hello_cache_lookup (const struct GNUNET_PeerIdentity *id);
663 * @param hello the HELLO message 663 * @param hello the HELLO message
664 */ 664 */
665void 665void
666GST_hello_cache_add (const struct GNUNET_PeerIdentity *id, 666GST_cache_add (const struct GNUNET_PeerIdentity *id,
667 const struct GNUNET_MessageHeader *hello); 667 const struct GNUNET_MessageHeader *hello);
668 668
669 669
670/** 670/**