ozelot 0.1.0

Handles everything network related to MCMODERN.
Documentation
1
2
3
4
5
6
7
8
9
/** Create an InvalidData io::Error with the description being a
 * formatted string */
macro_rules! io_error {
    ($fmtstr:tt) => { io_error!($fmtstr,) };
    ($fmtstr:tt, $( $args:expr ),* ) => {
        Err(::std::io::Error::new(::std::io::ErrorKind::Other,
                                  format!($fmtstr, $( $args ),* )));
    };
}