mc-query 2.0.0

Implementations of Server List Ping, Query, and RCON for minecraft servers
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Enables remote command execution for minecraft servers.
//! See the documentation for [`RconClient`] for more information.

mod client;
mod packet;

#[allow(clippy::module_name_repetitions)]
pub use client::RconClient;

const MAX_LEN_CLIENTBOUND: usize = 4096;
const MAX_LEN_SERVERBOUND: usize = 1446;