Struct sctp_proto::EndpointConfig
source · [−]pub struct EndpointConfig { /* private fields */ }
Expand description
Global configuration for the endpoint, affecting all associations
Default values should be suitable for most internet applications.
Implementations
sourceimpl EndpointConfig
impl EndpointConfig
sourcepub fn aid_generator<F: Fn() -> Box<dyn AssociationIdGenerator> + Send + Sync + 'static>(
&mut self,
factory: F
) -> &mut Self
pub fn aid_generator<F: Fn() -> Box<dyn AssociationIdGenerator> + Send + Sync + 'static>(
&mut self,
factory: F
) -> &mut Self
Supply a custom Association ID generator factory
Called once by each Endpoint
constructed from this configuration to obtain the AID
generator which will be used to generate the AIDs used for incoming packets on all
associations involving that Endpoint
. A custom AID generator allows applications to embed
information in local association IDs, e.g. to support stateless packet-level load balancers.
EndpointConfig::new()
applies a default random AID generator factory. This functions
accepts any customized AID generator to reset AID generator factory that implements
the AssociationIdGenerator
trait.
sourcepub fn max_payload_size(&mut self, value: u32) -> &mut Self
pub fn max_payload_size(&mut self, value: u32) -> &mut Self
Maximum payload size accepted from peers.
The default is suitable for typical internet applications. Applications which expect to run on networks supporting Ethernet jumbo frames or similar should set this appropriately.
Trait Implementations
sourceimpl Clone for EndpointConfig
impl Clone for EndpointConfig
sourcefn clone(&self) -> EndpointConfig
fn clone(&self) -> EndpointConfig
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for EndpointConfig
impl Debug for EndpointConfig
Auto Trait Implementations
impl !RefUnwindSafe for EndpointConfig
impl Send for EndpointConfig
impl Sync for EndpointConfig
impl Unpin for EndpointConfig
impl !UnwindSafe for EndpointConfig
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more