diff --git a/azalea-protocol/src/read.rs b/azalea-protocol/src/read.rs index 4f8b52af..b249e3d7 100755 --- a/azalea-protocol/src/read.rs +++ b/azalea-protocol/src/read.rs @@ -138,22 +138,29 @@ pub async fn read_packet<'a, P: ProtocolPacket, R>( where R: AsyncRead + std::marker::Unpin + std::marker::Send + std::marker::Sync, { + // let start_time = std::time::Instant::now(); + + // println!("decrypting packet ({}ms)", start_time.elapsed().as_millis()); // if we were given a cipher, decrypt the packet let mut encrypted_stream = EncryptedStream { cipher: Cell::new(cipher), stream: &mut Pin::new(stream), }; + // println!("splitting packet ({}ms)", start_time.elapsed().as_millis()); let mut buf = frame_splitter(&mut encrypted_stream).await?; if let Some(compression_threshold) = compression_threshold { + // println!( + // "decompressing packet ({}ms)", + // start_time.elapsed().as_millis() + // ); buf = compression_decoder(&mut buf.as_slice(), compression_threshold).await?; } - let start_time = std::time::Instant::now(); - println!("decoding packet"); + // println!("decoding packet ({}ms)", start_time.elapsed().as_millis()); let packet = packet_decoder(&mut buf.as_slice(), flow).await?; - println!("decoded packet in {}ms", start_time.elapsed().as_millis()); + // println!("decoded packet ({}ms)", start_time.elapsed().as_millis()); Ok(packet) }