From 6971ef1fc8e2eb7d2b2b6023560c55051e53c7cf Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Thu, 1 May 2025 22:29:34 -0400 Subject: [PATCH] Rename PacketHeader's unk3 into "version" I know the name now, but it's still a mystery what it is? --- src/packet/parsing.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/packet/parsing.rs b/src/packet/parsing.rs index 654c0ae..30bd248 100644 --- a/src/packet/parsing.rs +++ b/src/packet/parsing.rs @@ -90,7 +90,7 @@ pub struct PacketHeader { pub size: u32, pub connection_type: ConnectionType, pub segment_count: u16, - pub unk3: u8, + pub version: u8, // it's just called this, but unsure what this is actually for? pub compression_type: CompressionType, pub unk4: u16, pub uncompressed_size: u32,