From 567c6f4f2c39976d170111b816806453636f8241 Mon Sep 17 00:00:00 2001 From: mat Date: Sun, 1 May 2022 21:54:03 -0500 Subject: Reduce usage of AsyncRead We already receive everything from the server when it tells us the length, so we can actually just treat the stream as a Read instead of an AsyncRead. --- .../src/packets/status/clientbound_status_response_packet.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'azalea-protocol/src/packets/status') diff --git a/azalea-protocol/src/packets/status/clientbound_status_response_packet.rs b/azalea-protocol/src/packets/status/clientbound_status_response_packet.rs index 884cf408..f5789ae3 100755 --- a/azalea-protocol/src/packets/status/clientbound_status_response_packet.rs +++ b/azalea-protocol/src/packets/status/clientbound_status_response_packet.rs @@ -1,3 +1,5 @@ +use std::io::Read; + use azalea_chat::component::Component; use serde::Deserialize; use serde_json::Value; @@ -43,10 +45,8 @@ impl ClientboundStatusResponsePacket { Ok(()) } - pub async fn read( - buf: &mut T, - ) -> Result { - let status_string = buf.read_utf().await?; + pub fn read(buf: &mut impl Read) -> Result { + let status_string = buf.read_utf()?; let status_json: Value = serde_json::from_str(status_string.as_str()).expect("Server status isn't valid JSON"); -- cgit v1.2.3