Struct libp2p_kad::protocol::KademliaProtocolConfig [−][src]
pub struct KademliaProtocolConfig { /* fields omitted */ }
Configuration for a Kademlia connection upgrade. When applied to a connection, turns this
connection into a Stream + Sink
whose items are of type KadRequestMsg
and KadResponseMsg
.
Implementations
impl KademliaProtocolConfig
[src]
impl KademliaProtocolConfig
[src]pub fn protocol_name(&self) -> &[u8]
[src]
Returns the configured protocol name.
pub fn set_protocol_name(&mut self, name: impl Into<Cow<'static, [u8]>>)
[src]
Modifies the protocol name used on the wire. Can be used to create incompatibilities between networks on purpose.
pub fn set_max_packet_size(&mut self, size: usize)
[src]
Modifies the maximum allowed size of a single Kademlia packet.
Trait Implementations
impl Clone for KademliaProtocolConfig
[src]
impl Clone for KademliaProtocolConfig
[src]fn clone(&self) -> KademliaProtocolConfig
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Default for KademliaProtocolConfig
[src]
impl Default for KademliaProtocolConfig
[src]impl<C> InboundUpgrade<C> for KademliaProtocolConfig where
C: AsyncRead + AsyncWrite + Unpin,
[src]
impl<C> InboundUpgrade<C> for KademliaProtocolConfig where
C: AsyncRead + AsyncWrite + Unpin,
[src]type Output = KadInStreamSink<C>
Output after the upgrade has been successfully negotiated and the handshake performed.
type Future = Ready<Result<Self::Output, Error>>
Future that performs the handshake with the remote.
type Error = Error
Possible error during the handshake.
fn upgrade_inbound(self, incoming: C, _: Self::Info) -> Self::Future
[src]
impl<C> OutboundUpgrade<C> for KademliaProtocolConfig where
C: AsyncRead + AsyncWrite + Unpin,
[src]
impl<C> OutboundUpgrade<C> for KademliaProtocolConfig where
C: AsyncRead + AsyncWrite + Unpin,
[src]type Output = KadOutStreamSink<C>
Output after the upgrade has been successfully negotiated and the handshake performed.
type Future = Ready<Result<Self::Output, Error>>
Future that performs the handshake with the remote.
type Error = Error
Possible error during the handshake.
fn upgrade_outbound(self, incoming: C, _: Self::Info) -> Self::Future
[src]
impl UpgradeInfo for KademliaProtocolConfig
[src]
impl UpgradeInfo for KademliaProtocolConfig
[src]Auto Trait Implementations
impl RefUnwindSafe for KademliaProtocolConfig
impl Send for KademliaProtocolConfig
impl Sync for KademliaProtocolConfig
impl Unpin for KademliaProtocolConfig
impl UnwindSafe for KademliaProtocolConfig
Blanket Implementations
impl<C, U> InboundUpgradeExt<C> for U where
U: InboundUpgrade<C>,
[src]
impl<C, U> InboundUpgradeExt<C> for U where
U: InboundUpgrade<C>,
[src]pub fn map_inbound<F, T>(self, f: F) -> MapInboundUpgrade<Self, F> where
F: FnOnce(Self::Output) -> T,
[src]
F: FnOnce(Self::Output) -> T,
pub fn map_inbound_err<F, T>(self, f: F) -> MapInboundUpgradeErr<Self, F> where
F: FnOnce(Self::Error) -> T,
[src]
F: FnOnce(Self::Error) -> T,
impl<C, U> OutboundUpgradeExt<C> for U where
U: OutboundUpgrade<C>,
[src]
impl<C, U> OutboundUpgradeExt<C> for U where
U: OutboundUpgrade<C>,
[src]pub fn map_outbound<F, T>(self, f: F) -> MapOutboundUpgrade<Self, F> where
F: FnOnce(Self::Output) -> T,
[src]
F: FnOnce(Self::Output) -> T,
pub fn map_outbound_err<F, T>(self, f: F) -> MapOutboundUpgradeErr<Self, F> where
F: FnOnce(Self::Error) -> T,
[src]
F: FnOnce(Self::Error) -> T,