aboutsummaryrefslogtreecommitdiff
path: root/src/namestore/namestore_api.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/namestore/namestore_api.c')
-rw-r--r--src/namestore/namestore_api.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/namestore/namestore_api.c b/src/namestore/namestore_api.c
index 98148ba1e..13cc32035 100644
--- a/src/namestore/namestore_api.c
+++ b/src/namestore/namestore_api.c
@@ -1132,6 +1132,26 @@ GNUNET_NAMESTORE_lookup_block (struct GNUNET_NAMESTORE_Handle *h,
1132 1132
1133 1133
1134/** 1134/**
1135 * Perform a lookup and decrypt the resulting block.
1136 *
1137 * @param h namestore to perform lookup in
1138 * @param value_zone zone to look up record in
1139 * @param label label to look for
1140 * @param proc function to call with the result
1141 * @param proc_cls closure for @a proc
1142 */
1143struct GNUNET_NAMESTORE_QueueEntry *
1144GNUNET_NAMESTORE_lookup (struct GNUNET_NAMESTORE_Handle *h,
1145 const struct GNUNET_CRYPTO_EccPublicKey *value_zone,
1146 const char *label,
1147 GNUNET_NAMESTORE_RecordMonitor proc, void *proc_cls)
1148{
1149 GNUNET_break (0); // FIXME: not implemented
1150 return NULL;
1151}
1152
1153
1154/**
1135 * Look for an existing PKEY delegation record for a given public key. 1155 * Look for an existing PKEY delegation record for a given public key.
1136 * Returns at most one result to the processor. 1156 * Returns at most one result to the processor.
1137 * 1157 *