Skip to main content

gsc_fq/
lib.rs

1//! GSC-FQ 高性能数据流代理转发CLI工具
2//!
3//! 这个库提供了一个高性能的TCP代理转发工具,支持:
4//! - TOML配置文件
5//! - 多网卡数据流向控制
6//! - Zero-Copy数据传输
7//! - 自动TCP参数优化
8//! - 智能内存和连接池管理
9
10pub mod config;
11pub mod crypto;
12pub mod error;
13pub mod monitoring;
14pub mod proxy;
15pub mod reverse_proxy;
16pub mod utils;
17
18// 重新导出主要类型和函数
19pub use config::{ConfigFile, ConfigLoader, ProxySection, ReverseProxySection, ServerSection};
20pub use error::{AppError, ConfigError, NetworkError, ProxyError, Result};