allow empty/NULL context message
[oweals/gnunet.git] / src / peerstore / perf_peerstore_store.c
index e97699fe21bb2f96e7030bfdd445d43c6b1881c7..82a3adec1b38ca2387f721c8194339cfe30c28c8 100644 (file)
@@ -1,6 +1,6 @@
 /*
      This file is part of GNUnet.
-     (C)
+     Copyright (C)
 
      GNUnet is free software; you can redistribute it and/or modify
      it under the terms of the GNU General Public License as published
@@ -14,8 +14,8 @@
 
      You should have received a copy of the GNU General Public License
      along with GNUnet; see the file COPYING.  If not, write to the
-     Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-     Boston, MA 02111-1307, USA.
+     Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+     Boston, MA 02110-1301, USA.
 */
 /**
  * @file peerstore/perf_peerstore_store.c
@@ -37,9 +37,9 @@ static struct GNUNET_PeerIdentity p;
 static char *k = "test_peerstore_stress_key";
 static char *v = "test_peerstore_stress_val";
 
-int count = 0;
+static int count = 0;
 
-void
+static void
 disconnect ()
 {
   if (NULL != h)
@@ -48,7 +48,7 @@ disconnect ()
 }
 
 
-void
+static void
 store ()
 {
   GNUNET_PEERSTORE_store (h, ss, &p, k, v, strlen (v) + 1,
@@ -60,8 +60,9 @@ store ()
 }
 
 
-static int
-watch_cb (void *cls, struct GNUNET_PEERSTORE_Record *record, char *emsg)
+static void
+watch_cb (void *cls, const struct GNUNET_PEERSTORE_Record *record,
+          const char *emsg)
 {
   GNUNET_assert (NULL == emsg);
   if (STORES == count)
@@ -71,7 +72,6 @@ watch_cb (void *cls, struct GNUNET_PEERSTORE_Record *record, char *emsg)
   }
   else
     store ();
-  return GNUNET_YES;
 }