playit-agent-core 0.20.1

Contains the logic to create a playit.gg agent
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[derive(Clone, Debug)]
pub struct UdpSettings {
    pub new_client_ratelimit: u32,
    pub new_client_ratelimit_burst: u32,
}

impl Default for UdpSettings {
    fn default() -> Self {
        UdpSettings {
            new_client_ratelimit: 16,
            new_client_ratelimit_burst: 32,
        }
    }
}