| Crates.io | openmultiplayer_query |
| lib.rs | openmultiplayer_query |
| version | 0.1.2 |
| created_at | 2023-11-30 23:15:40.95758+00 |
| updated_at | 2023-12-02 12:16:16.087279+00 |
| description | Implements the needed builders and parsers for SA:MP's/Open Multiplayer's Query Mechanism, allowing a developer to retrieve data from a running server. |
| homepage | |
| repository | |
| max_upload_size | |
| id | 1054578 |
| size | 20,780 |
Implements the needed builders and parsers for SA:MP's/Open Multiplayer's Query Mechanism, allowing a developer to retrieve data from a running server.
You cannot send RCON packets yet.
cargo add openmultiplayer_query
Check test/build.rs and test/parse.rs to see how to use the library.
let mut packet = PacketBuilder::new(Opcode::I, Ipv4Addr::new(127, 0, 0, 1), 7777)?;
let mut rcon_packet = RconPacket::new(Ipv4Addr::new(127, 0, 0, 1), 7777, "changeme", "varlist")?;
use openmultiplayer_query::{Packet, Opcodes};
// Assume you have a UDP socket running
let socket = UdpSocket::bind("0.0.0.0:0")?;
// We'll send a packet to `149.56.84.18:7777`
let address: Ipv4Addr = "149.56.84.18".parse::<Ipv4Addr>().unwrap();
let port = 7777;
let mut packet = PacketBuilder::new(Opcodes::I, address, port)?;
// ...
packet.build()?; // This is needed in order to populate the data buffer with query data.
// Send the packet through the socket.
socket.send_to(packet.get_data().unwrap(), (address, port))?;
let mut recv_buf = [0u8; 2048];
socket.recv(&mut recv_buf)?;
let result: Result<Packet::InformationPacket, _> = (&recv_buf[..]).try_into();
// Use `result` as you please