Struct iroh_relay::server::QuicConfig
source · pub struct QuicConfig {
pub bind_addr: SocketAddr,
pub server_config: ServerConfig,
}
Available on crate feature
server
only.Expand description
Configuration for the QUIC server.
Fields§
§bind_addr: SocketAddr
The socket address on which the QUIC server should bind.
Normally you’d chose port 7842
, see crate::defaults::DEFAULT_RELAY_QUIC_PORT
.
server_config: ServerConfig
The TLS server configuration for the QUIC server.
If this [rustls::ServerConfig
] does not support TLS 1.3, the QUIC server will fail
to spawn.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for QuicConfig
impl !RefUnwindSafe for QuicConfig
impl Send for QuicConfig
impl Sync for QuicConfig
impl Unpin for QuicConfig
impl !UnwindSafe for QuicConfig
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more