aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_namestore_service.h
diff options
context:
space:
mode:
authorMartin Schanzenbach <schanzen@gnunet.org>2022-10-06 16:35:26 +0900
committerMartin Schanzenbach <schanzen@gnunet.org>2022-10-06 16:35:26 +0900
commit1e4cb697efcd7289da981eb44cca40bccc421c72 (patch)
treeeb1b7efb52c1efba3fae934a82e357f32045112a /src/include/gnunet_namestore_service.h
parent220c5b1abfc9a056cc8df092dc9df661db6461e0 (diff)
downloadgnunet-1e4cb697efcd7289da981eb44cca40bccc421c72.tar.gz
gnunet-1e4cb697efcd7289da981eb44cca40bccc421c72.zip
NAMESTORE: Bulk insert API now properly handles message length restriction
Diffstat (limited to 'src/include/gnunet_namestore_service.h')
-rw-r--r--src/include/gnunet_namestore_service.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/gnunet_namestore_service.h b/src/include/gnunet_namestore_service.h
index 6183fb8d0..998eb19d0 100644
--- a/src/include/gnunet_namestore_service.h
+++ b/src/include/gnunet_namestore_service.h
@@ -179,6 +179,7 @@ GNUNET_NAMESTORE_records_store (struct GNUNET_NAMESTORE_Handle *h,
179 * @param rd_set_count the number of record sets 179 * @param rd_set_count the number of record sets
180 * @param record_info the records to add containing @a rd_set_count records 180 * @param record_info the records to add containing @a rd_set_count records
181 * @param cont continuation to call when done 181 * @param cont continuation to call when done
182 * @param rds_sent set to how many record sets could actually be sent
182 * @param cont_cls closure for @a cont 183 * @param cont_cls closure for @a cont
183 * @return handle to abort the request 184 * @return handle to abort the request
184 */ 185 */
@@ -188,6 +189,7 @@ GNUNET_NAMESTORE_records_store2 (
188 const struct GNUNET_IDENTITY_PrivateKey *pkey, 189 const struct GNUNET_IDENTITY_PrivateKey *pkey,
189 unsigned int rd_set_count, 190 unsigned int rd_set_count,
190 const struct GNUNET_NAMESTORE_RecordInfo *record_info, 191 const struct GNUNET_NAMESTORE_RecordInfo *record_info,
192 unsigned int *rds_sent,
191 GNUNET_NAMESTORE_ContinuationWithStatus cont, 193 GNUNET_NAMESTORE_ContinuationWithStatus cont,
192 void *cont_cls); 194 void *cont_cls);
193 195