Enum iroh_relay::ReceivedMessage
source · pub enum ReceivedMessage {
ReceivedPacket {
remote_node_id: NodeId,
data: Bytes,
},
NodeGone(NodeId),
Ping([u8; 8]),
Pong([u8; 8]),
KeepAlive,
Health {
problem: Option<String>,
},
ServerRestarting {
reconnect_in: Duration,
try_for: Duration,
},
}
Expand description
The type of message received by the Conn
from a relay server.
Variants§
ReceivedPacket
Represents an incoming packet.
Fields
remote_node_id: NodeId
The [NodeId
] of the packet sender.
data: Bytes
The received packet bytes.
NodeGone(NodeId)
Indicates that the client identified by the underlying public key had previously sent you a packet but has now disconnected from the server.
Ping([u8; 8])
Request from a client or server to reply to the
other side with a ReceivedMessage::Pong
with the given payload.
Pong([u8; 8])
Reply to a ReceivedMessage::Ping
from a client or server
with the payload sent previously in the ping.
KeepAlive
A one-way empty message from server to client, just to
keep the connection alive. It’s like a ReceivedMessage::Ping
, but doesn’t solicit
a reply from the client.
Health
A one-way message from server to client, declaring the connection health state.
Fields
problem: Option<String>
If set, is a description of why the connection is unhealthy.
If None
means the connection is healthy again.
The default condition is healthy, so the server doesn’t broadcast a ReceivedMessage::Health
until a problem exists.
ServerRestarting
A one-way message from server to client, advertising that the server is restarting.
Trait Implementations§
source§impl Clone for ReceivedMessage
impl Clone for ReceivedMessage
source§fn clone(&self) -> ReceivedMessage
fn clone(&self) -> ReceivedMessage
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more