use `tun` crate examope for starters, to map all traffic through tun virtual interface, in next commits will push these packets to sniffing module which will deciede further modifications of proxies based by user's Config.
12 lines
122 B
Rust
12 lines
122 B
Rust
mod config;
|
|
mod geoparsers;
|
|
mod sniffing;
|
|
mod startup;
|
|
|
|
use startup::init;
|
|
|
|
use std::io::Read;
|
|
|
|
fn main() {
|
|
init();
|
|
}
|