summaryrefslogtreecommitdiffstats
path: root/src/lib/istream-multiplex.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/istream-multiplex.h')
-rw-r--r--src/lib/istream-multiplex.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/lib/istream-multiplex.h b/src/lib/istream-multiplex.h
new file mode 100644
index 0000000..3f289f4
--- /dev/null
+++ b/src/lib/istream-multiplex.h
@@ -0,0 +1,8 @@
+#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