ratrod 0.6.3

A TCP / UDP tunneler that uses public / private key authentication with encryption.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Ratrod
//!
//! A TCP tunneler that uses public / private key authentication with encryption.
//! Basically, it's `ssh -L`.  This is useful for tunneling through a machine that doesn't support SSH.

#![feature(coverage_attribute)]
#![feature(const_type_name)]
#![feature(duration_constructors)]

pub use tokio;

pub mod base;
pub mod buffed_stream;
pub mod connect;
pub mod protocol;
pub mod security;
pub mod serve;
pub mod utils;