view src/lib/istream-hash.h @ 22955:812e5c961328

fts: Indexing virtual mailbox didn't always index the last mails
author Timo Sirainen <timo.sirainen@dovecot.fi>
date Thu, 03 May 2018 18:33:00 +0300
parents f73c388ad360
children
line wrap: on
line source

#ifndef ISTREAM_HASH_H
#define ISTREAM_HASH_H

struct hash_method;

/* hash_context must be allocated and initialized by caller. This istream will
   simply call method->loop() for all the data going through the istream. */
struct istream *
i_stream_create_hash(struct istream *input, const struct hash_method *method,
		     void *hash_context);

#endif