pub struct Incoming { /* private fields */ }
Expand description
An incoming connection for which the server has not yet begun its part of the handshake.
Implementations§
Source§impl Incoming
impl Incoming
Sourcepub fn local_ip(&self) -> Option<IpAddr>
pub fn local_ip(&self) -> Option<IpAddr>
The local IP address which was used when the peer established the connection
This has the same behavior as Connection::local_ip
.
Sourcepub fn remote_address(&self) -> SocketAddr
pub fn remote_address(&self) -> SocketAddr
The peer’s UDP address
Sourcepub fn remote_address_validated(&self) -> bool
pub fn remote_address_validated(&self) -> bool
Whether the socket address that is initiating this connection has been validated
This means that the sender of the initial packet has proved that they can receive traffic
sent to self.remote_address()
.
If self.remote_address_validated()
is false, self.may_retry()
is guaranteed to be true.
The inverse is not guaranteed.
Sourcepub fn may_retry(&self) -> bool
pub fn may_retry(&self) -> bool
Whether it is legal to respond with a retry packet
If self.remote_address_validated()
is false, self.may_retry()
is guaranteed to be true.
The inverse is not guaranteed.
Sourcepub fn orig_dst_cid(&self) -> &ConnectionId
pub fn orig_dst_cid(&self) -> &ConnectionId
The original destination connection ID sent by the client