gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r30319 - gnunet/src/namestore


From: gnunet
Subject: [GNUnet-SVN] r30319 - gnunet/src/namestore
Date: Fri, 18 Oct 2013 15:39:01 +0200

Author: grothoff
Date: 2013-10-18 15:39:01 +0200 (Fri, 18 Oct 2013)
New Revision: 30319

Modified:
   gnunet/src/namestore/test_namestore_api_lookup_public.c
   gnunet/src/namestore/test_namestore_api_store_update.c
Log:
-do not use expired records, they'll be removed internally now

Modified: gnunet/src/namestore/test_namestore_api_lookup_public.c
===================================================================
--- gnunet/src/namestore/test_namestore_api_lookup_public.c     2013-10-18 
13:36:24 UTC (rev 30318)
+++ gnunet/src/namestore/test_namestore_api_lookup_public.c     2013-10-18 
13:39:01 UTC (rev 30319)
@@ -206,7 +206,7 @@
   GNUNET_CRYPTO_ecdsa_key_get_public (privkey, &pubkey);
 
 
-  rd.expiration_time = GNUNET_TIME_absolute_get().abs_value_us;
+  rd.expiration_time = GNUNET_TIME_absolute_get().abs_value_us + 1000000000;
   rd.record_type = TEST_RECORD_TYPE;
   rd.data_size = TEST_RECORD_DATALEN;
   rd.data = GNUNET_malloc (TEST_RECORD_DATALEN);

Modified: gnunet/src/namestore/test_namestore_api_store_update.c
===================================================================
--- gnunet/src/namestore/test_namestore_api_store_update.c      2013-10-18 
13:36:24 UTC (rev 30318)
+++ gnunet/src/namestore/test_namestore_api_store_update.c      2013-10-18 
13:39:01 UTC (rev 30319)
@@ -147,7 +147,7 @@
                 "Block was decrypted successfully, updating record \n");
 
     rd_new.flags = GNUNET_GNSRECORD_RF_NONE;
-    rd_new.expiration_time = GNUNET_TIME_absolute_get().abs_value_us;
+    rd_new.expiration_time = GNUNET_TIME_absolute_get().abs_value_us + 
1000000000;
     rd_new.record_type = TEST_RECORD_TYPE2;
     rd_new.data_size = TEST_RECORD_DATALEN2;
     rd_new.data = GNUNET_malloc (TEST_RECORD_DATALEN2);
@@ -245,7 +245,7 @@
   GNUNET_CRYPTO_ecdsa_key_get_public (privkey, &pubkey);
 
   rd.flags = GNUNET_GNSRECORD_RF_NONE;
-  rd.expiration_time = GNUNET_TIME_absolute_get().abs_value_us;
+  rd.expiration_time = GNUNET_TIME_absolute_get().abs_value_us + 1000000000;
   rd.record_type = TEST_RECORD_TYPE;
   rd.data_size = TEST_RECORD_DATALEN;
   rd.data = GNUNET_malloc (TEST_RECORD_DATALEN);




reply via email to

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