# chand A userspace daemon for interprocess communication. ## Usage [Example usage](https://github.com/redox-os/chand/blob/master/examples/chan.rs) Simply open `chan:` with O_CREAT where `` is any name you'd like to create a listener. This listener can accept clients by calling `dup("listen")`. Open `chan:` without O_CREAT to connect. Now you can read and write between both streams.