aboutsummaryrefslogtreecommitdiff
path: root/src/fs/fs.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/fs/fs.h')
-rw-r--r--src/fs/fs.h15
1 files changed, 5 insertions, 10 deletions
diff --git a/src/fs/fs.h b/src/fs/fs.h
index ffd448d2b..9a987303b 100644
--- a/src/fs/fs.h
+++ b/src/fs/fs.h
@@ -240,26 +240,21 @@ struct SearchMessage
240 * nevertheless, we should probably not use it for a DHT-lookup 240 * nevertheless, we should probably not use it for a DHT-lookup
241 * or similar blunt actions in order to avoid exposing ourselves). 241 * or similar blunt actions in order to avoid exposing ourselves).
242 * <p> 242 * <p>
243 * If the request is for an SBLOCK, this is the identity of the 243 * Otherwise, "target" must be all zeros.
244 * pseudonym to which the SBLOCK belongs.
245 * <p>
246 * If the request is for a KBLOCK, "target" must be all zeros.
247 */ 244 */
248 struct GNUNET_HashCode target; 245 struct GNUNET_HashCode target;
249 246
250 /** 247 /**
251 * Hash of the keyword (aka query) for KBLOCKs; Hash of 248 * Hash of the public key for UBLOCKs; Hash of
252 * the CHK-encoded block for DBLOCKS and IBLOCKS (aka query) 249 * the CHK-encoded block for DBLOCKS and IBLOCKS.
253 * and hash of the identifier XORed with the target for
254 * SBLOCKS (aka query).
255 */ 250 */
256 struct GNUNET_HashCode query; 251 struct GNUNET_HashCode query;
257 252
258 /* this is followed by the hash codes of already-known 253 /* this is followed by the hash codes of already-known
259 * results (which should hence be excluded from what 254 * results (which should hence be excluded from what
260 * the service returns); naturally, this only applies 255 * the service returns); naturally, this only applies
261 * to queries that can have multiple results, such as 256 * to queries that can have multiple results (UBLOCKS).
262 * those for KBLOCKS (KSK) and SBLOCKS (SKS) */ 257 */
263}; 258};
264 259
265 260