snocat 0.8.0-alpha.7

Streaming Network Overlay Connection Arbitration Tunnel
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license OR Apache 2.0
//! Types supporting authentication of Snocat tunnel connections
#[deny(unused_imports)]
mod traits;
pub use traits::*;

mod no_op_authentication;
pub use no_op_authentication::NoOpAuthenticationHandler;

mod simple_ack_authentication;
pub use simple_ack_authentication::SimpleAckAuthenticationHandler;