view src/lib/istream-multiplex.h @ 23007:36e01285b5b8

lib: buffer - Improve header comment for buffer_insert() and buffer_delete().
author Stephan Bosch <stephan.bosch@dovecot.fi>
date Mon, 18 Mar 2019 00:52:37 +0100
parents 7db517071db5
children
line wrap: on
line source

#ifndef ISTREAM_MULTIPLEX
#define ISTREAM_MULTIPLEX 1

struct istream *i_stream_create_multiplex(struct istream *parent, size_t bufsize);
struct istream *i_stream_multiplex_add_channel(struct istream *stream, uint8_t cid);
uint8_t i_stream_multiplex_get_channel_id(struct istream *stream);

#endif