From 7adeb1876612018ea4b04715f7201ef18cfd243e Mon Sep 17 00:00:00 2001 From: dev0 Date: Wed, 16 Oct 2024 23:22:21 +1100 Subject: [PATCH] cargo fmt --- clash_lib/src/proxy/hysteria2/codec.rs | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/clash_lib/src/proxy/hysteria2/codec.rs b/clash_lib/src/proxy/hysteria2/codec.rs index 2e50e8ec1..ab58609cb 100644 --- a/clash_lib/src/proxy/hysteria2/codec.rs +++ b/clash_lib/src/proxy/hysteria2/codec.rs @@ -28,7 +28,10 @@ impl Decoder for Hy2TcpCodec { type Error = std::io::Error; type Item = Hy2TcpResp; - fn decode(&mut self, src: &mut BytesMut) -> Result, Self::Error> { + fn decode( + &mut self, + src: &mut BytesMut, + ) -> Result, Self::Error> { if !src.has_remaining() { return Err(ErrorKind::UnexpectedEof.into()); } @@ -42,8 +45,8 @@ impl Decoder for Hy2TcpCodec { } let msg: Vec = src.split_to(msg_len).into(); - let msg: String = - String::from_utf8(msg).map_err(|e| std::io::Error::new(ErrorKind::InvalidData, e))?; + let msg: String = String::from_utf8(msg) + .map_err(|e| std::io::Error::new(ErrorKind::InvalidData, e))?; let padding_len = VarInt::decode(src) .map_err(|_| ErrorKind::UnexpectedEof)? @@ -68,7 +71,12 @@ pub fn padding(range: std::ops::RangeInclusive) -> Vec { impl Encoder<&'_ SocksAddr> for Hy2TcpCodec { type Error = std::io::Error; - fn encode(&mut self, item: &'_ SocksAddr, buf: &mut BytesMut) -> Result<(), Self::Error> { + + fn encode( + &mut self, + item: &'_ SocksAddr, + buf: &mut BytesMut, + ) -> Result<(), Self::Error> { const REQ_ID: VarInt = VarInt::from_u32(0x401); let padding = padding(64..=512);