[][src]Struct tox_packet::dht::NodesResponse

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

Nodes response packet struct. When DHT node receives NodesRequest it should respond with NodesResponse that contains up to to 4 closest nodes to requested public key. Ping id should be the same as it was in NodesRequest.

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

LengthContent
10x04
32Public Key
24Nonce
1Number of Response Nodes
[25,229]Payload

where Payload is encrypted NodesResponsePayload

Fields

pk: PublicKey

public key used for payload encryption

nonce: Nonce

one time serial number

payload: Vec<u8>

encrypted payload

Implementations

impl NodesResponse[src]

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

create new NodesResponse object

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

Decrypt payload and try to parse it as NodesResponsePayload.

Returns Error in case of failure:

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

Trait Implementations

impl Clone for NodesResponse[src]

impl Debug for NodesResponse[src]

impl Eq for NodesResponse[src]

impl FromBytes for NodesResponse[src]

impl PartialEq<NodesResponse> for NodesResponse[src]

impl StructuralEq for NodesResponse[src]

impl StructuralPartialEq for NodesResponse[src]

impl ToBytes for NodesResponse[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.