From 43ec0ddbcad432b74ee9fa0a3589d001ec6dc8d4 Mon Sep 17 00:00:00 2001 From: zedddie Date: Sun, 15 Mar 2026 21:17:05 +0100 Subject: a bunch of really (not)good tests --- src/lib.rs | 4 ++++ src/main.rs | 10 +++++----- src/sniffing/headers.rs | 4 ++-- 3 files changed, 11 insertions(+), 7 deletions(-) create mode 100644 src/lib.rs (limited to 'src') diff --git a/src/lib.rs b/src/lib.rs new file mode 100644 index 0000000..29905b0 --- /dev/null +++ b/src/lib.rs @@ -0,0 +1,4 @@ +pub mod sniffing; +pub mod config; +pub mod geoparsers; +pub mod startup; diff --git a/src/main.rs b/src/main.rs index 464146a..d90ae5d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,9 +1,9 @@ -mod config; -mod geoparsers; -pub mod sniffing; -mod startup; +// mod config; +// mod geoparsers; +// pub mod sniffing; +// mod startup; -use startup::init; +use nsc::startup::init; use std::io::Read; diff --git a/src/sniffing/headers.rs b/src/sniffing/headers.rs index c90a849..9b605b9 100644 --- a/src/sniffing/headers.rs +++ b/src/sniffing/headers.rs @@ -3,7 +3,7 @@ use tun::Error; // Here we will recieve bytes and try to get their destanation & apply Rules for them. use crate::config::Config; -#[derive(Debug)] +#[derive(Debug, PartialEq)] pub enum Protocol { TCP, UDP, @@ -12,7 +12,7 @@ pub enum Protocol { type Ipv4 = [u8; 4]; type Ipv6 = [u8; 16]; type Port = u16; -#[derive(Debug)] +#[derive(Debug, PartialEq)] pub enum PacketInfo { // V4 { -- cgit v1.2.3