ts_derp 0.4.0

tailscale derp client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use zerocopy::{FromBytes, Immutable, IntoBytes, KnownLayout};

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

/// How one derp node in a regional mesh subscribes to others in the region.
#[derive(Debug, Copy, Clone, PartialEq, KnownLayout, Immutable, IntoBytes, FromBytes)]
#[repr(C)]
pub struct WatchConns;

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