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