rak-rs 0.3.2

A fully functional RakNet implementation in pure rust, asynchronously driven.
Documentation
/// Minecraft has specific protocol for the `UnconnectedPong` packet.
/// This data is attached to the Unconnect Pong packet and is used to
/// display information about the server.
pub mod motd;

use binary_util::BinaryIo;

use self::motd::Motd;

use super::Magic;

/// This is the MCPE specific implementation of the `UnconnectedPong` packet.
/// The only difference here is the attached motd.
#[derive(Debug, Clone, BinaryIo)]
pub struct UnconnectedPong {
    pub timestamp: u64,
    pub server_id: u64,
    pub magic: Magic,
    pub motd: Motd,
}