msq-rs

Rust library implementation of the legacy Master Server Query Protocol.

License

msq-rs is released under the MIT License

Dependencies

Instructions

Direct from the repository

crates.io

Quick Start

```rust // Startup the client let mut client = MSQClient::new().await?;

// Connect to the master server client.connect("hl2master.steampowered.com:27011").await?;

// Maximum amount of servers we wanted to query client.maxserverson_query(256);

// Do a query, which is restricted to the Europe region // and filter by appid 240 (CS:S), maps that are not // dedust2, and gametype tags of friendlyfire and alltalk let servers = client .query(Region::Europe, Filter::new().appid(240) .nand() .map("dedust2")) .end() .gametype(&vec!["friendlyfire", "alltalk"]) .await?; ```

Misc

The following library goes well with this one: * Source A2S Queries: a2s-rs