quilkin-system 0.10.1

Quilkin is a non-transparent UDP proxy specifically designed for use with large scale multiplayer dedicated game server deployments, to ensure security, access control, telemetry data, metrics and more.
Documentation
1
2
3
4
5
6
7
8
9
//! A collection of modules with opinionated standard components to provide a foundation for
//! running a production-ready application

pub mod net;

pub fn register_metrics(registry: &mut prometheus_client::registry::Registry) {
    #[cfg(feature = "http")]
    net::http::metrics::register_metrics(registry);
}