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
16
17
#[derive(Clone, Debug)]
pub struct TcpSettings {
    pub new_client_ratelimit: u32,
    pub new_client_ratelimit_burst: u32,
    pub tcp_no_delay: bool,
}

impl Default for TcpSettings {
    fn default() -> Self {
        Self {
            new_client_ratelimit: 5,
            new_client_ratelimit_burst: 32,
            tcp_no_delay: true,
        }
    }
}