Struct sctp_proto::Association [−][src]
pub struct Association { /* fields omitted */ }
Expand description
Association represents an SCTP association
Implementations
Returns application-facing event
Connections should be polled for events after:
- a call was made to
handle_transmit
- a call was made to
handle_timeout
Return endpoint-facing event
Returns the next time at which handle_timeout
should be called
The value returned may change after:
- the application performed some I/O on the connection
- a call was made to
handle_transmit
- a call to
poll_transmit
returnedSome
- a call was made to
handle_timeout
Returns packets to transmit
Associations should be polled for transmit after:
- the application performed some I/O on the Association
- a call was made to
handle_event
- a call was made to
handle_timeout
Process timer expirations
Executes protocol logic, potentially preparing signals (including application Event
s,
EndpointEvent
s and outgoing datagrams) that should be extracted through the relevant
methods.
It is most efficient to call this immediately after the system clock reaches the latest
Instant
that was output by poll_timeout
; however spurious extra calls will simply
no-op and therefore are safe.
Process AssociationEvent
s generated by the associated Endpoint
Will execute protocol logic upon receipt of an association event, in turn preparing signals
(including application Event
s, EndpointEvent
s and outgoing datagrams) that should be
extracted through the relevant methods.
Whether the Association is in the process of being established
If this returns false
, the Association may be either established or closed, signaled by the
emission of a Connected
or ConnectionLost
message respectively.
Whether the Association is closed
Closed Associations cannot transport any further data. A connection becomes closed when either peer application intentionally closes it, or when either transport layer detects an error such as a time-out or certificate validation failure.
A ConnectionLost
event is emitted with details when the connection becomes closed.
The latest socket address for this Association’s peer
Current best estimate of this Association’s latency (round-trip-time)
The local IP address which was used when the peer established the connection
This can be different from the address the endpoint is bound to, in case
the endpoint is bound to a wildcard address like 0.0.0.0
or ::
.
This will return None
for clients.
Retrieving the local IP address is currently supported on the following platforms:
- Linux
On all non-supported platforms the local IP address will not be available,
and the method will return None
.
Shutdown initiates the shutdown sequence. The method blocks until the shutdown sequence is completed and the connection is closed, or until the passed context is done, in which case the context’s error is returned.
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for Association
impl Send for Association
impl Sync for Association
impl Unpin for Association
impl !UnwindSafe for Association
Blanket Implementations
Mutably borrows from an owned value. Read more
pub fn vzip(self) -> V
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more