#[repr(u16)]pub enum Event {
Show 15 variants
DataIo = 32_768,
Association = 32769,
Address = 32770,
SendFailure = 32771,
PeerError = 32772,
Shutdown = 32773,
PartialDelivery = 32774,
AdaptationLayer = 32775,
Authentication = 32776,
SenderDry = 32777,
StreamReset = 32778,
AssociationReset = 32779,
StreamChange = 32780,
SendFailureEvent = 32781,
Unknown = 32782,
}
Expand description
Event: Used for Subscribing for SCTP Events
See sctp_subscribe_events
for the usage.
Variants§
DataIo = 32_768
Event to receive ancillary information with every sctp_recv
.
Association = 32769
Event related to association change.
Address = 32770
Event related to peer address change.
SendFailure = 32771
Event related to send failure.
PeerError = 32772
Event related to error received from the peer.
Shutdown = 32773
Event related to indicate peer shutdown.
PartialDelivery = 32774
Event related to indicate partial delivery.
AdaptationLayer = 32775
Event related to indicate peer’s partial indication.
Authentication = 32776
Authentication event.
SenderDry = 32777
Event related to sender having no outstanding user data.
StreamReset = 32778
Event related to stream reset.
AssociationReset = 32779
Event related to association reset.
StreamChange = 32780
Event related to stream change.
SendFailureEvent = 32781
Send Failure Event indication. (The actual received information is different from the one
received in the SendFailed
event.)
Unknown = 32782
Unknown Event: Used only when unknwon value is received as a Notification
.