mirror of
https://github.com/EasyTier/EasyTier.git
synced 2026-05-07 02:09:06 +00:00
1b03223537
This patch removes Tarpc & Tonic GRPC and implements a customized rpc framework, which can be used by peer rpc and cli interface. web config server can also use this rpc framework. moreover, rewrite the public server logic, use ospf route to implement public server based networking. this make public server mesh possible.
10 lines
116 B
Rust
10 lines
116 B
Rust
pub mod rpc_impl;
|
|
pub mod rpc_types;
|
|
|
|
pub mod cli;
|
|
pub mod common;
|
|
pub mod error;
|
|
pub mod peer_rpc;
|
|
|
|
pub mod tests;
|