X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Finclude%2Fgnunet_namestore_service.h;h=8466d613507d7f7d5a32e478e792c496b7f05a1a;hb=27c12911f4f2aba2d90099270d70de846e83854f;hp=ddfc912bcf8781cfa22ee3d6aedcb64c95d7e6de;hpb=cd967ce3da30f20fb815288c1f4ebb19816dd0ad;p=oweals%2Fgnunet.git diff --git a/src/include/gnunet_namestore_service.h b/src/include/gnunet_namestore_service.h index ddfc912bc..8466d6135 100644 --- a/src/include/gnunet_namestore_service.h +++ b/src/include/gnunet_namestore_service.h @@ -101,7 +101,7 @@ typedef void (*GNUNET_NAMESTORE_ContinuationWithStatus) (void *cls, * * @param h handle to the namestore * @param pkey private key of the zone - * @param label name that is being mapped (at most 255 characters long) + * @param label name that is being mapped * @param rd_count number of records in the 'rd' array * @param rd array of records with data to store * @param cont continuation to call when done @@ -134,13 +134,29 @@ typedef void (*GNUNET_NAMESTORE_RecordMonitor) (void *cls, unsigned int rd_count, const struct GNUNET_GNSRECORD_Data *rd); +/** + * Set the desired nick name for a zone + * + * @param h handle to the namestore + * @param pkey private key of the zone + * @param nick the nick name to set + * @param cont continuation to call when done + * @param cont_cls closure for 'cont' + * @return handle to abort the request + */ +struct GNUNET_NAMESTORE_QueueEntry * +GNUNET_NAMESTORE_set_nick (struct GNUNET_NAMESTORE_Handle *h, + const struct GNUNET_CRYPTO_EcdsaPrivateKey *pkey, + const char *nick, + GNUNET_NAMESTORE_ContinuationWithStatus cont, + void *cont_cls); /** * Lookup an item in the namestore. * * @param h handle to the namestore * @param pkey private key of the zone - * @param label name that is being mapped (at most 255 characters long) + * @param label name that is being mapped * @param rm function to call with the result (with 0 records if we don't have that label) * @param rm_cls closure for @a rm * @return handle to abort the request @@ -247,15 +263,20 @@ typedef void (*GNUNET_NAMESTORE_RecordsSynchronizedCallback)(void *cls); /** - * Begin monitoring a zone for changes. Will first call the @a monitor function - * on all existing records in the selected zone(s), then calls @a sync_cb, - * and then calls the @a monitor whenever a record changes. If the namestore - * disconnects, the @a monitor function is called with a disconnect event; if - * the connection is re-established, the process begins from the start (all - * existing records, sync, then updates). + * Begin monitoring a zone for changes. Will first call the @a + * monitor function on all existing records in the selected zone(s) if + * @a iterate_first is #GNUNET_YES. In any case, we will then call @a + * sync_cb, and then afterwards call the @a monitor whenever a record + * changes. If the namestore disconnects, the @a monitor function is + * called with a disconnect event; if the connection is + * re-established, the process begins from the start (depending on @a + * iterate_first, we first do all existing records, then @a sync, then + * updates). * * @param cfg configuration to use to connect to namestore - * @param zone zone to monitor + * @param zone zone to monitor, NULL for all zones + * @param iterate_first #GNUNET_YES to first iterate over all existing records, + * #GNUNET_NO to only return changes that happen from now on * @param monitor function to call on zone changes * @param sync_cb function called when we're in sync with the namestore * @param cls closure for @a monitor and @a sync_cb @@ -264,6 +285,7 @@ typedef void (*GNUNET_NAMESTORE_RecordsSynchronizedCallback)(void *cls); struct GNUNET_NAMESTORE_ZoneMonitor * GNUNET_NAMESTORE_zone_monitor_start (const struct GNUNET_CONFIGURATION_Handle *cfg, const struct GNUNET_CRYPTO_EcdsaPrivateKey *zone, + int iterate_first, GNUNET_NAMESTORE_RecordMonitor monitor, GNUNET_NAMESTORE_RecordsSynchronizedCallback sync_cb, void *cls);