gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r6985 - GNUnet/src/applications/fs/ecrs


From: gnunet
Subject: [GNUnet-SVN] r6985 - GNUnet/src/applications/fs/ecrs
Date: Sun, 1 Jun 2008 18:03:04 -0600 (MDT)

Author: grothoff
Date: 2008-06-01 18:03:03 -0600 (Sun, 01 Jun 2008)
New Revision: 6985

Modified:
   GNUnet/src/applications/fs/ecrs/namespacetest.c
Log:
fixing compile errors

Modified: GNUnet/src/applications/fs/ecrs/namespacetest.c
===================================================================
--- GNUnet/src/applications/fs/ecrs/namespacetest.c     2008-06-02 00:02:55 UTC 
(rev 6984)
+++ GNUnet/src/applications/fs/ecrs/namespacetest.c     2008-06-02 00:03:03 UTC 
(rev 6985)
@@ -65,6 +65,7 @@
 static int
 testNamespace ()
 {
+  GNUNET_HashCode pid;
   GNUNET_HashCode root;
   GNUNET_HashCode thisId;
   GNUNET_HashCode nextId;
@@ -74,23 +75,23 @@
   struct GNUNET_ECRS_URI *rootURI;
   struct GNUNET_ECRS_MetaData *meta;
 
-  GNUNET_ECRS_namespace_delete (NULL, cfg, CHECKNAME);  /* make sure old one 
is deleted */
   meta = GNUNET_ECRS_meta_data_create ();
   adv = GNUNET_ECRS_keyword_string_to_uri (NULL, "testNamespace");
   GNUNET_hash ("root", 4, &root);
   rootURI =
     GNUNET_ECRS_namespace_create (NULL,
                                   cfg,
-                                  CHECKNAME,
-                                  meta,
+                                 meta,
                                   0, 0,
                                   GNUNET_get_time () +
-                                  15 * GNUNET_CRON_MINUTES, adv, &root);
+                                  15 * GNUNET_CRON_MINUTES, 
+                                 adv, &root);
+  GNUNET_ECRS_uri_get_namespace_from_sks(rootURI, &pid);
   CHECK (NULL != rootURI);
   GNUNET_hash ("this", 4, &thisId);
   GNUNET_hash ("next", 4, &nextId);
   uri = rootURI;                /* just for fun: NS::this advertises NS::root 
*/
-  advURI = GNUNET_ECRS_namespace_add_content (NULL, cfg, CHECKNAME, 1,  /* 
anonymity */
+  advURI = GNUNET_ECRS_namespace_add_content (NULL, cfg, &pid, 1,  /* 
anonymity */
                                               1000,     /* priority */
                                               5 * GNUNET_CRON_MINUTES +
                                               GNUNET_get_time (),
@@ -103,9 +104,9 @@
                                           cfg,
                                           advURI, 1, &spcb, uri, &tt, NULL));
   fprintf (stderr, "Completed namespace search...\n");
-  CHECK (GNUNET_OK == GNUNET_ECRS_namespace_delete (NULL, cfg, CHECKNAME));
+  CHECK (GNUNET_OK == GNUNET_ECRS_namespace_delete (NULL, cfg, &pid));
   CHECK (GNUNET_SYSERR ==
-         GNUNET_ECRS_namespace_delete (NULL, cfg, CHECKNAME));
+         GNUNET_ECRS_namespace_delete (NULL, cfg, &pid));
   GNUNET_ECRS_meta_data_destroy (meta);
   GNUNET_ECRS_uri_destroy (rootURI);
   GNUNET_ECRS_uri_destroy (advURI);





reply via email to

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