ddmw_client/
msg.rs

1//! Message sending and receiving functions.
2
3pub mod recv;
4pub mod send;
5
6pub use recv::{recv_c, recvloop_c, recvloop_ca, recvloop_h};
7pub use send::send;
8
9// vim: set ft=rust et sw=2 ts=2 sts=2 cinoptions=2 tw=79 :