gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r30324 - gnunet/src/gns


From: gnunet
Subject: [GNUnet-SVN] r30324 - gnunet/src/gns
Date: Fri, 18 Oct 2013 16:11:00 +0200

Author: grothoff
Date: 2013-10-18 16:11:00 +0200 (Fri, 18 Oct 2013)
New Revision: 30324

Modified:
   gnunet/src/gns/gnunet-service-gns.c
Log:
-use configuration option for reset of zone_publish_time_window, also frequency 
should be often enough to put every record 4x within its expiration window

Modified: gnunet/src/gns/gnunet-service-gns.c
===================================================================
--- gnunet/src/gns/gnunet-service-gns.c 2013-10-18 14:10:15 UTC (rev 30323)
+++ gnunet/src/gns/gnunet-service-gns.c 2013-10-18 14:11:00 UTC (rev 30324)
@@ -168,8 +168,14 @@
 static struct GNUNET_TIME_Relative put_interval;
 
 /**
- * Time window for zone iteration
+ * Default time window for zone iteration
  */
+static struct GNUNET_TIME_Relative zone_publish_time_window_default;
+
+/**
+ * Time window for zone iteration, adjusted based on relative record
+ * expiration times in our zone.
+ */
 static struct GNUNET_TIME_Relative zone_publish_time_window;
 
 /**
@@ -369,8 +375,9 @@
     else
     {
       zone_publish_time_window
-        = GNUNET_TIME_relative_min (min_relative_record_time,
-                                    DEFAULT_ZONE_PUBLISH_TIME_WINDOW);
+        = GNUNET_TIME_relative_min (GNUNET_TIME_relative_divide 
(min_relative_record_time,
+                                                                 4),
+                                    zone_publish_time_window_default);
       put_interval = GNUNET_TIME_relative_divide (zone_publish_time_window,
                                                  num_public_records);
     }
@@ -449,6 +456,9 @@
   GNUNET_GNSRECORD_query_from_private_key (key,
                                           name,
                                           &query);
+  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+              "Storing record in DHT with expiration `%s'\n",
+              GNUNET_STRINGS_absolute_time_to_string (expire));
   active_put = GNUNET_DHT_put (dht_handle, &query,
                               DHT_GNS_REPLICATION_LEVEL,
                               GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE,
@@ -684,17 +694,18 @@
   }
 
   put_interval = INITIAL_PUT_INTERVAL;
-  zone_publish_time_window = DEFAULT_ZONE_PUBLISH_TIME_WINDOW;
-
+  zone_publish_time_window_default = DEFAULT_ZONE_PUBLISH_TIME_WINDOW;
   if (GNUNET_OK ==
       GNUNET_CONFIGURATION_get_value_time (c, "gns",
                                           "ZONE_PUBLISH_TIME_WINDOW",
-                                          &zone_publish_time_window))
+                                          &zone_publish_time_window_default))
   {
     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                "Time window for zone iteration: %s\n",
-               GNUNET_STRINGS_relative_time_to_string 
(zone_publish_time_window, GNUNET_YES));
+               GNUNET_STRINGS_relative_time_to_string 
(zone_publish_time_window,
+                                                        GNUNET_YES));
   }
+  zone_publish_time_window = zone_publish_time_window_default;
   if (GNUNET_OK ==
       GNUNET_CONFIGURATION_get_value_number (c, "gns",
                                             "MAX_PARALLEL_BACKGROUND_QUERIES",




reply via email to

[Prev in Thread] Current Thread [Next in Thread]