Struct Config
pub struct Config { /* private fields */ }
Available on crate feature
noise
only.Expand description
The configuration for the noise handshake.
Implementations§
§impl Config
impl Config
pub fn new(identity: &Keypair) -> Result<Config, Error>
pub fn new(identity: &Keypair) -> Result<Config, Error>
Construct a new configuration for the noise handshake using the XX handshake pattern.
pub fn with_prologue(self, prologue: Vec<u8>) -> Config
pub fn with_prologue(self, prologue: Vec<u8>) -> Config
Set the noise prologue.
pub fn with_webtransport_certhashes(
self,
certhashes: HashSet<Multihash<64>>,
) -> Config
pub fn with_webtransport_certhashes( self, certhashes: HashSet<Multihash<64>>, ) -> Config
Set WebTransport certhashes extension.
In case of initiator, these certhashes will be used to validate the ones reported by responder.
In case of responder, these certhashes will be reported to initiator.
Trait Implementations§
§impl<T> InboundConnectionUpgrade<T> for Config
impl<T> InboundConnectionUpgrade<T> for Config
§type Output = (PeerId, Output<T>)
type Output = (PeerId, Output<T>)
Output after the upgrade has been successfully negotiated and the handshake performed.
§type Future = Pin<Box<dyn Future<Output = Result<<Config as InboundConnectionUpgrade<T>>::Output, <Config as InboundConnectionUpgrade<T>>::Error>> + Send>>
type Future = Pin<Box<dyn Future<Output = Result<<Config as InboundConnectionUpgrade<T>>::Output, <Config as InboundConnectionUpgrade<T>>::Error>> + Send>>
Future that performs the handshake with the remote.
§fn upgrade_inbound(
self,
socket: T,
_: <Config as UpgradeInfo>::Info,
) -> <Config as InboundConnectionUpgrade<T>>::Future
fn upgrade_inbound( self, socket: T, _: <Config as UpgradeInfo>::Info, ) -> <Config as InboundConnectionUpgrade<T>>::Future
After we have determined that the remote supports one of the protocols we support, this
method is called to start the handshake. Read more
§impl<T> OutboundConnectionUpgrade<T> for Config
impl<T> OutboundConnectionUpgrade<T> for Config
§type Output = (PeerId, Output<T>)
type Output = (PeerId, Output<T>)
Output after the upgrade has been successfully negotiated and the handshake performed.
§type Future = Pin<Box<dyn Future<Output = Result<<Config as OutboundConnectionUpgrade<T>>::Output, <Config as OutboundConnectionUpgrade<T>>::Error>> + Send>>
type Future = Pin<Box<dyn Future<Output = Result<<Config as OutboundConnectionUpgrade<T>>::Output, <Config as OutboundConnectionUpgrade<T>>::Error>> + Send>>
Future that performs the handshake with the remote.
§fn upgrade_outbound(
self,
socket: T,
_: <Config as UpgradeInfo>::Info,
) -> <Config as OutboundConnectionUpgrade<T>>::Future
fn upgrade_outbound( self, socket: T, _: <Config as UpgradeInfo>::Info, ) -> <Config as OutboundConnectionUpgrade<T>>::Future
After we have determined that the remote supports one of the protocols we support, this
method is called to start the handshake. Read more
§impl UpgradeInfo for Config
impl UpgradeInfo for Config
§fn protocol_info(&self) -> <Config as UpgradeInfo>::InfoIter
fn protocol_info(&self) -> <Config as UpgradeInfo>::InfoIter
Returns the list of protocols that are supported. Used during the negotiation process.
Auto Trait Implementations§
impl Freeze for Config
impl RefUnwindSafe for Config
impl Send for Config
impl Sync for Config
impl Unpin for Config
impl UnwindSafe for Config
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> 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,
§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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> UpgradeInfoSend for Twhere
T: UpgradeInfo + Send + 'static,
<T as UpgradeInfo>::Info: Send + 'static,
<<T as UpgradeInfo>::InfoIter as IntoIterator>::IntoIter: Send + 'static,
impl<T> UpgradeInfoSend for Twhere
T: UpgradeInfo + Send + 'static,
<T as UpgradeInfo>::Info: Send + 'static,
<<T as UpgradeInfo>::InfoIter as IntoIterator>::IntoIter: Send + 'static,
§type Info = <T as UpgradeInfo>::Info
type Info = <T as UpgradeInfo>::Info
Equivalent to
UpgradeInfo::Info
.§type InfoIter = <<T as UpgradeInfo>::InfoIter as IntoIterator>::IntoIter
type InfoIter = <<T as UpgradeInfo>::InfoIter as IntoIterator>::IntoIter
Equivalent to
UpgradeInfo::InfoIter
.§fn protocol_info(&self) -> <T as UpgradeInfoSend>::InfoIter
fn protocol_info(&self) -> <T as UpgradeInfoSend>::InfoIter
Equivalent to
UpgradeInfo::protocol_info
.