Start implementation of some functions.
[oweals/gnunet.git] / src / dht / gnunet-service-dht_nse.h
index 4642d4d9cb90a279e977dc1b93e33fee3d43d175..c0689690f542b8af37bd23cc06f1ad196f152e43 100644 (file)
@@ -1,6 +1,6 @@
 /*
      This file is part of GNUnet.
-     (C) 2011 Christian Grothoff (and other contributing authors)
+     Copyright (C) 2011 Christian Grothoff (and other contributing authors)
 
      GNUnet is free software; you can redistribute it and/or modify
      it under the terms of the GNU General Public License as published
 #define GNUNET_SERVICE_DHT_NSE_H
 
 
+/**
+ * Return the log of the current network size estimate.
+ *
+ * @return log of NSE
+ */
 double
-GDS_nse_get (void);
+GDS_NSE_get (void);
 
 
+/**
+ * Initialize NSE subsystem.
+ */
 void
-GDS_nse_init (void);
+GDS_NSE_init (void);
 
+
+/**
+ * Shutdown NSE subsystem.
+ */
 void
-GDS_nse_done (void);
+GDS_NSE_done (void);
 
 #endif