qsniffer 0.1.0

Qsniffer is an infrastructure component of the Qexed project, primarily used to validate and test the correctness of packet parsing functions. It's a development assistance tool that helps developers inspect network packet parsing logic.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[qexed_packet_macros::packet(id = 0x03)]
#[derive(Debug, Default, PartialEq, Clone)]
pub struct Compress {
    pub threshold:qexed_tcp_connect::net_types::var_int::VarInt,
}
impl Compress {
    pub fn new() -> Self {
        Compress {
            threshold:qexed_tcp_connect::net_types::var_int::VarInt(0),
        }
    }
}