fixing leak
[oweals/gnunet.git] / src / include / gnunet_peerinfo_service.h
index 228e698b3e0327758d36fcf0cdab0a43135f137b..1411168c0fa07b0f93aba1f8a2649eeb87d25cee 100644 (file)
@@ -95,11 +95,13 @@ GNUNET_PEERINFO_add_peer (struct GNUNET_PEERINFO_Handle *h,
  * @param cls closure
  * @param peer id of the peer, NULL for last call
  * @param hello hello message for the peer (can be NULL)
+ * @param error message
  */
 typedef void
   (*GNUNET_PEERINFO_Processor) (void *cls,
                                 const struct GNUNET_PeerIdentity * peer,
-                                const struct GNUNET_HELLO_Message * hello);
+                                const struct GNUNET_HELLO_Message * hello,
+                                const char * err_msg);
 
 
 /**
@@ -114,10 +116,6 @@ struct GNUNET_PEERINFO_IteratorContext;
  * host and then finally once with a NULL pointer.  After that final
  * invocation, the iterator context must no longer be used.
  *
- * Note that the last call can be triggered by timeout or by simply
- * being done; however, the trust argument will be set to zero if we
- * are done, 1 if we timed out and 2 for fatal error.
- *
  * Instead of calling this function with 'peer == NULL' 
  * it is often better to use 'GNUNET_PEERINFO_notify'.
  *