ts_derp 0.4.0

tailscale derp client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use ts_keys::NodePublicKey;
use zerocopy::{FromBytes, Immutable, IntoBytes, KnownLayout};

use crate::frame::{Body, FrameType};

/// Send a packet to the peer with the specified key.
///
/// The data payload follows this message immediately.
#[derive(Debug, Copy, Clone, PartialEq, KnownLayout, Immutable, IntoBytes, FromBytes)]
#[repr(C)]
pub struct SendPacket {
    /// The peer to send the data to.
    pub dest: NodePublicKey,
}

impl Body for SendPacket {
    const FRAME_TYPE: FrameType = FrameType::SendPacket;
}