mirror of
https://github.com/xzcrpw/blackwall.git
synced 2026-05-10 14:22:36 +02:00
v2.0.0: adaptive eBPF firewall with AI honeypot and P2P threat mesh
This commit is contained in:
commit
37c6bbf5a1
133 changed files with 28073 additions and 0 deletions
24
hivemind/src/lib.rs
Executable file
24
hivemind/src/lib.rs
Executable file
|
|
@ -0,0 +1,24 @@
|
|||
//! HiveMind P2P Threat Intelligence Mesh.
|
||||
//!
|
||||
//! Library crate exposing the core P2P modules for the HiveMind daemon.
|
||||
//! Each module handles a specific aspect of the P2P networking stack:
|
||||
//!
|
||||
//! - `transport` — libp2p Swarm with Noise+QUIC, composite NetworkBehaviour
|
||||
//! - `dht` — Kademlia DHT for structured peer routing and IoC storage
|
||||
//! - `gossip` — GossipSub for epidemic IoC broadcast
|
||||
//! - `bootstrap` — Initial peer discovery (hardcoded nodes + mDNS)
|
||||
//! - `config` — TOML-based configuration
|
||||
|
||||
pub mod bootstrap;
|
||||
pub mod config;
|
||||
pub mod consensus;
|
||||
pub mod crypto;
|
||||
pub mod dht;
|
||||
pub mod gossip;
|
||||
pub mod identity;
|
||||
pub mod metrics_bridge;
|
||||
pub mod ml;
|
||||
pub mod reputation;
|
||||
pub mod sybil_guard;
|
||||
pub mod transport;
|
||||
pub mod zkp;
|
||||
Loading…
Add table
Add a link
Reference in a new issue