mirror of
https://github.com/tribufu/rust-gamedig
synced 2026-06-01 09:42:41 +00:00
[Service] Add valve master server query service (#34)
* [Service] Add initial files * [Service] Add initial request packet * [Service] Add filters * [Service] Some clippy improvements * [Service] Make query a vector of ipv4addr and port * [Service] Add complete and singular query * [Crate] Update md files * [Service] Add docs and clippy adjustments * [Service] Add hasTags and fix filters * [Service] Use let some instead of match * [Service] Add other filters * [Service] Add nor and nand filters * [Service] Remove 0.0.0.0:0 from query * [Service] Remove dev testing test * [Service] Add valve_master_server_query example
This commit is contained in:
parent
348147b415
commit
4122d34cfa
8 changed files with 415 additions and 3 deletions
|
|
@ -22,6 +22,7 @@ pub mod errors;
|
|||
#[cfg(not(feature = "no_games"))]
|
||||
pub mod games;
|
||||
pub mod protocols;
|
||||
pub mod services;
|
||||
|
||||
mod bufferer;
|
||||
mod socket;
|
||||
|
|
@ -30,3 +31,4 @@ mod utils;
|
|||
pub use errors::*;
|
||||
#[cfg(not(feature = "no_games"))]
|
||||
pub use games::*;
|
||||
pub use services::*;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue