This repository has been archived on 2025-03-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
tcp-over-http/src/base/structs.rs

8 lines
176 B
Rust

#[derive(serde::Serialize, serde::Deserialize, Copy, Clone, Debug)]
pub struct RelayedPort {
pub id: usize,
pub port: u16,
}
pub type RemoteConfig = Vec<RelayedPort>;