more logging, more FIXMEs
[oweals/gnunet.git] / src / hostlist / gnunet-daemon-hostlist_client.h
index 55f355649379faa8f1b0af8a2ad44977165708ff..8ac5bdb58992b8aa688129ba82887922d414aec8 100644 (file)
@@ -1,21 +1,21 @@
 /*
      This file is part of GNUnet.
-     (C) 2009 Christian Grothoff (and other contributing authors)
+     Copyright (C) 2009 GNUnet e.V.
 
-     GNUnet is free software; you can redistribute it and/or modify
-     it under the terms of the GNU General Public License as published
-     by the Free Software Foundation; either version 3, or (at your
-     option) any later version.
+     GNUnet is free software: you can redistribute it and/or modify it
+     under the terms of the GNU Affero General Public License as published
+     by the Free Software Foundation, either version 3 of the License,
+     or (at your option) any later version.
 
      GNUnet is distributed in the hope that it will be useful, but
      WITHOUT ANY WARRANTY; without even the implied warranty of
      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-     General Public License for more details.
+     Affero General Public License for more details.
+    
+     You should have received a copy of the GNU Affero General Public License
+     along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-     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.
+     SPDX-License-Identifier: AGPL3.0-or-later
 */
 /**
  * @file hostlist/gnunet-daemon-hostlist_client.h
 #include "gnunet_util_lib.h"
 
 
+/**
+ * Function that handles an advertised URI.
+ *
+ * @param uri 0-termianted URI of a hostlist
+ */
+typedef void
+(*GNUNET_HOSTLIST_UriHandler)(const char *uri);
+
+
 /**
  * Start downloading hostlists from hostlist servers as necessary.
  *
- * @param c the configuration to use
- * @param st hande for publishing statistics
- * @param ch[OUT] set to handler for connect notifications
- * @param dh[OUT] set to handler for disconnect notifications
- * @param msgh[OUT] set to handler for message handler notifications
- * @param learn set if client is learning new hostlists
+ * @param c configuration to use
+ * @param st statistics handle to use
+ * @param[out] ch set to handler for CORE connect events
+ * @param[out] dh set to handler for CORE disconnect events
+ * @param[out] msgh set to handler for CORE advertisement messages
+ * @param learn should we learn hostlist URLs from CORE
  * @return #GNUNET_OK on success
  */
 int
@@ -46,7 +55,7 @@ GNUNET_HOSTLIST_client_start (const struct GNUNET_CONFIGURATION_Handle *c,
                               struct GNUNET_STATISTICS_Handle *st,
                               GNUNET_CORE_ConnectEventHandler *ch,
                               GNUNET_CORE_DisconnectEventHandler *dh,
-                              GNUNET_CORE_MessageCallback *msgh,
+                              GNUNET_HOSTLIST_UriHandler *msgh,
                               int learn);