⚠️ VeridianOS Kernel Documentation -
This is low-level kernel code. All functions are unsafe unless explicitly marked otherwise.
no_std
veridian_kernel/services/lb/
mod.rs
1//! Load Balancer implementation
2//!
3//! Provides L4 (TCP/UDP) and L7 (HTTP) load balancing with multiple
4//! algorithms, health checks, rate limiting, and sticky sessions.
56#![allow(dead_code)]
78pub mod config;
9pub mod l4;
10pub mod l7;