Non blocking relay connection #44

Merged
CoCo_Sol merged 7 commits from relay-client into main 2024-02-12 14:31:56 +00:00
Showing only changes of commit 9e6c030697 - Show all commits

View file

@ -15,7 +15,7 @@ use tungstenite::{ClientHandshake, HandshakeError, Message, WebSocket};
/// The state of a [Connection].
#[derive(Debug)]
pub enum ConnectionState {
enum ConnectionState {
/// The [Connection] is not connected.
Disconnected,
@ -65,7 +65,7 @@ pub struct Connection {
receive_sender: Sender<(u32, Vec<u8>)>,
/// The state of the connection.
pub state: ConnectionState,
state: ConnectionState,
}
impl Connection {