summaryrefslogtreecommitdiff
path: root/src/sniffing
diff options
context:
space:
mode:
authorzedddie <rust@zedddie.rs>2026-03-15 14:59:11 +0100
committertuturuu <zedddiezxc@gmail.com>2026-03-15 14:59:11 +0100
commit06d4e558cdf97b64e4cbc95becf1b25c1c24950e (patch)
tree885b243d572a31d15e9007b05aa310f27307bc11 /src/sniffing
parentcb61a2eda096bd9900878034c77145baf1fbf416 (diff)
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.
Diffstat (limited to 'src/sniffing')
-rw-r--r--src/sniffing/headers.rs1
-rw-r--r--src/sniffing/mod.rs2
2 files changed, 3 insertions, 0 deletions
diff --git a/src/sniffing/headers.rs b/src/sniffing/headers.rs
index e69de29..836cf32 100644
--- a/src/sniffing/headers.rs
+++ b/src/sniffing/headers.rs
@@ -0,0 +1 @@
+// Here we will recieve bytes and try to get their destanation & apply Rules for them.
diff --git a/src/sniffing/mod.rs b/src/sniffing/mod.rs
new file mode 100644
index 0000000..dec0be3
--- /dev/null
+++ b/src/sniffing/mod.rs
@@ -0,0 +1,2 @@
+pub mod headers;
+mod metadata;