nsc/src/main.rs
zedddie 06d4e558cd
sniffing early work
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.
2026-03-15 14:59:11 +01:00

12 lines
122 B
Rust

mod config;
mod geoparsers;
mod sniffing;
mod startup;
use startup::init;
use std::io::Read;
fn main() {
init();
}