summaryrefslogtreecommitdiffstats
path: root/src/lib/istream-timeout.h
blob: a26318a9dd4f597351fb8a0dd2e6572366754f93 (plain)
1
2
3
4
5
6
7
8
9
#ifndef ISTREAM_TIMEOUT_H
#define ISTREAM_TIMEOUT_H

/* Return ETIMEDOUT error if read() doesn't return anything for timeout_msecs.
   If timeout_msecs=0, there is no timeout. */
struct istream *
i_stream_create_timeout(struct istream *input, unsigned int timeout_msecs);

#endif