[][src]Struct tox_packet::dht::NodesRequest

pub struct NodesRequest {
    pub pk: PublicKey,
    pub nonce: Nonce,
    pub payload: Vec<u8>,
}

Nodes request packet struct. It's used to get up to 4 closest nodes to requested public key. Every 20 seconds DHT node sends NodesRequest packet to a random node in ktree and its known friends list.

https://zetok.github.io/tox-spec/#dht-packet

LengthContent
10x02
32Public Key
24Nonce
56Payload

where Payload is encrypted NodesRequestPayload

Fields

pk: PublicKey

public key used for payload encryption

nonce: Nonce

one time serial number

payload: Vec<u8>

encrypted payload

Implementations

impl NodesRequest[src]

pub fn new(
    shared_secret: &PrecomputedKey,
    pk: &PublicKey,
    payload: &NodesRequestPayload
) -> NodesRequest
[src]

create new NodesRequest object

pub fn get_payload(
    &self,
    shared_secret: &PrecomputedKey
) -> Result<NodesRequestPayload, GetPayloadError>
[src]

Decrypt payload and try to parse it as NodesRequestPayload.

Returns Error in case of failure:

  • fails to decrypt
  • fails to parse as given packet type

Trait Implementations

impl Clone for NodesRequest[src]

impl Debug for NodesRequest[src]

impl Eq for NodesRequest[src]

impl FromBytes for NodesRequest[src]

impl PartialEq<NodesRequest> for NodesRequest[src]

impl StructuralEq for NodesRequest[src]

impl StructuralPartialEq for NodesRequest[src]

impl ToBytes for NodesRequest[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.