mirror of
https://github.com/EasyTier/EasyTier.git
synced 2026-09-02 01:03:54 +00:00
513695297c
* [OHOS.with ai] 将配置管理/配置分享/路由聚合/实例状态解析下沉至 Rust 内核,收敛职责并提升性能 (#2209) * feat: add ohrs config store and startup error logging * feat: full ability core for ohos * feat: full ability core for ohos * feat: clean code --------- Co-authored-by: FrankHan <frankhan@FrankHans-Mac-mini.local> * fix: 添加缺失文件 * fix: 修复更新路由启动两次TUN问题,并调整日志 * fix: rustfmt * fix: 适配Cidr忽略/32格式路由 * fix: 修复Option适配错误 * fix: rustfmt * fix: rustfmt --------- Co-authored-by: FrankHan <frankhan@FrankHans-Mac-mini.local>
22 lines
442 B
Rust
22 lines
442 B
Rust
pub mod rpc_impl;
|
|
pub mod rpc_types;
|
|
|
|
pub mod acl;
|
|
pub mod api;
|
|
pub mod common;
|
|
pub mod error;
|
|
#[cfg(feature = "magic-dns")]
|
|
pub mod magic_dns;
|
|
pub mod peer_rpc;
|
|
pub mod web;
|
|
|
|
#[cfg(test)]
|
|
pub mod tests;
|
|
pub mod utils;
|
|
|
|
pub const DESCRIPTOR_POOL_BYTES: &[u8] =
|
|
include_bytes!(concat!(env!("OUT_DIR"), "/file_descriptor_set.bin"));
|
|
|
|
pub const ALL_DESCRIPTOR_BYTES: &[u8] =
|
|
include_bytes!(concat!(env!("OUT_DIR"), "/descriptors.bin"));
|