[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:
CosminPerRam 2023-04-28 18:00:04 +03:00 committed by GitHub
parent 348147b415
commit 4122d34cfa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 415 additions and 3 deletions

View file

@ -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::*;