mc_query/rcon.rs
1//! Enables remote command execution for minecraft servers.
2//! See the documentation for [`RconClient`] for more information.
3
4mod client;
5mod packet;
6
7#[allow(clippy::module_name_repetitions)]
8pub use client::RconClient;
9
10const MAX_LEN_CLIENTBOUND: usize = 4096;
11const MAX_LEN_SERVERBOUND: usize = 1446;