🐛 bug: use Result
parent
12fdd4c842
commit
2a58d86b5c
|
@ -289,7 +289,7 @@ pub async fn p4_expect_p5_request (
|
|||
bail! ("P4 expected CONNECT_P2_TO_P5 but P2 sent something different");
|
||||
}
|
||||
let mut port_buf = [0, 0];
|
||||
recv.read_exact (&mut port_buf).await;
|
||||
recv.read_exact (&mut port_buf).await?;
|
||||
let port = u16::from_le_bytes (port_buf);
|
||||
|
||||
Ok (P2ConnectToP5Request {
|
||||
|
|
Loading…
Reference in New Issue