From 06d4e558cdf97b64e4cbc95becf1b25c1c24950e Mon Sep 17 00:00:00 2001 From: zedddie Date: Sun, 15 Mar 2026 14:59:11 +0100 Subject: 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. --- src/main.rs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index 438b85e..958e39d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,6 +1,12 @@ mod config; mod geoparsers; +mod sniffing; +mod startup; + +use startup::init; + +use std::io::Read; fn main() { - println!("Hello, world!"); + init(); } -- cgit v1.2.3