[][src]Struct grin_p2p::handshake::Handshake

pub struct Handshake {
    pub addrs: Arc<RwLock<VecDeque<PeerAddr>>>,
    // some fields omitted
}

Handles the handshake negotiation when two peers connect and decides on protocol.

Fields

addrs: Arc<RwLock<VecDeque<PeerAddr>>>

Ring buffer of self addr(s) collected from PeerWithSelf detection (by nonce).

Methods

impl Handshake[src]

pub fn new(genesis: Hash, config: P2PConfig) -> Handshake[src]

Creates a new handshake handler

pub fn initiate(
    &self,
    capab: Capabilities,
    total_difficulty: Difficulty,
    self_addr: PeerAddr,
    conn: &mut TcpStream
) -> Result<PeerInfo, Error>
[src]

pub fn accept(
    &self,
    capab: Capabilities,
    total_difficulty: Difficulty,
    conn: &mut TcpStream
) -> Result<PeerInfo, Error>
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> UnsafeAny for T where
    T: Any

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Erased for T

impl<T> SafeBorrow<T> for T where
    T: ?Sized

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,