ts_control 0.2.0

tailscale control client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod client;
pub use client::AsyncControlClient;

mod connect;
pub use connect::{
    CONTROL_PROTOCOL_VERSION, ConnectionError, connect, fetch_control_key, read_challenge_packet,
    upgrade_ts2021,
};

mod map_stream;
pub use map_stream::{FilterUpdate, MapStreamError, PeerUpdate, StateUpdate};

mod ping;
pub use ping::PingError;

mod register;

pub use register::{AuthResult, RegistrationError, register};