[][src]Struct tox_packet::dht::PingResponse

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

Ping response packet struct. When PingRequest is received DHT node should respond with PingResponse that contains the same ping id inside it's encrypted payload as it got from PingRequest.

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

LengthContent
10x01
32Public Key
24Nonce
25Payload

where Payload is encrypted PingResponsePayload

Fields

pk: PublicKey

public key used for payload encryption

nonce: Nonce

one time serial number

payload: Vec<u8>

encrypted payload

Implementations

impl PingResponse[src]

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

create new PingResponse object

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

Decrypt payload and try to parse it as PingResponsePayload.

Returns Error in case of failure:

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

Trait Implementations

impl Clone for PingResponse[src]

impl Debug for PingResponse[src]

impl Eq for PingResponse[src]

impl FromBytes for PingResponse[src]

impl PartialEq<PingResponse> for PingResponse[src]

impl StructuralEq for PingResponse[src]

impl StructuralPartialEq for PingResponse[src]

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