-must notify client on timeout
[oweals/gnunet.git] / src / peerinfo / perf_peerinfo_api.c
old mode 100755 (executable)
new mode 100644 (file)
index 4eb84e8..cfd5561
@@ -20,7 +20,9 @@
 
 /**
  * @file peerinfo/perf_peerinfo_api.c
- * @brief testcase for peerinfo_api.c, hopefully hammer the peerinfo service
+ * @brief testcase for peerinfo_api.c, hopefully hammer the peerinfo service,
+ * this performance test adds up to 5000 peers with one address each and checks
+ * over how many peers it can iterate before receiving a timeout after 30 seconds
  * @author Nathan Evans
  */
 
@@ -53,16 +55,16 @@ check_it (void *cls, const struct GNUNET_HELLO_Address *address,
 }
 
 
-static size_t
+static ssize_t
 address_generator (void *cls, size_t max, void *buf)
 {
   size_t *agc = cls;
-  size_t ret;
+  ssize_t ret;
   char *caddress;
   struct GNUNET_HELLO_Address address;
 
   if (*agc == 0)
-    return 0;
+    return GNUNET_SYSERR; /* Done */
 
   GNUNET_asprintf (&caddress, "Address%d", *agc);
   address.peer = pid;