mirror of
https://mirror.suhoan.cn/https://github.com/EasyTier/EasyTier.git
synced 2025-12-14 13:47:24 +08:00
↩ revert: 兼容性
This commit is contained in:
@@ -68,7 +68,7 @@ struct RoutePeerInfo {
|
||||
cost: u8,
|
||||
ipv4_addr: Option<Ipv4Addr>,
|
||||
proxy_cidrs: Vec<String>,
|
||||
hostname: String,
|
||||
hostname: Option<String>,
|
||||
udp_stun_info: i8,
|
||||
last_update: SystemTime,
|
||||
version: Version,
|
||||
@@ -82,7 +82,7 @@ impl RoutePeerInfo {
|
||||
cost: 0,
|
||||
ipv4_addr: None,
|
||||
proxy_cidrs: Vec::new(),
|
||||
hostname: String::new(),
|
||||
hostname: None,
|
||||
udp_stun_info: 0,
|
||||
last_update: SystemTime::now(),
|
||||
version: 0,
|
||||
@@ -101,7 +101,7 @@ impl RoutePeerInfo {
|
||||
.map(|x| x.to_string())
|
||||
.chain(global_ctx.get_vpn_portal_cidr().map(|x| x.to_string()))
|
||||
.collect(),
|
||||
hostname: global_ctx.get_hostname(),
|
||||
hostname: Some(global_ctx.get_hostname()),
|
||||
udp_stun_info: global_ctx
|
||||
.get_stun_info_collector()
|
||||
.get_stun_info()
|
||||
@@ -138,7 +138,7 @@ impl Into<crate::rpc::Route> for RoutePeerInfo {
|
||||
next_hop_peer_id: 0,
|
||||
cost: self.cost as i32,
|
||||
proxy_cidrs: self.proxy_cidrs.clone(),
|
||||
hostname: self.hostname,
|
||||
hostname: self.hostname.unwrap_or_default(),
|
||||
stun_info: {
|
||||
let mut stun_info = StunInfo::default();
|
||||
if let Ok(udp_nat_type) = NatType::try_from(self.udp_stun_info as i32) {
|
||||
|
||||
@@ -36,7 +36,7 @@ pub struct SyncPeerInfo {
|
||||
pub cost: u32,
|
||||
pub ipv4_addr: Option<Ipv4Addr>,
|
||||
pub proxy_cidrs: Vec<String>,
|
||||
pub hostname: String,
|
||||
pub hostname: Option<String>,
|
||||
pub udp_stun_info: i8,
|
||||
}
|
||||
|
||||
@@ -52,7 +52,7 @@ impl SyncPeerInfo {
|
||||
.map(|x| x.to_string())
|
||||
.chain(global_ctx.get_vpn_portal_cidr().map(|x| x.to_string()))
|
||||
.collect(),
|
||||
hostname: global_ctx.get_hostname(),
|
||||
hostname: Some(global_ctx.get_hostname()),
|
||||
udp_stun_info: global_ctx
|
||||
.get_stun_info_collector()
|
||||
.get_stun_info()
|
||||
@@ -585,7 +585,7 @@ impl Route for BasicRoute {
|
||||
route.next_hop_peer_id = route_info.peer_id;
|
||||
route.cost = route_info.cost as i32;
|
||||
route.proxy_cidrs = route_info.proxy_cidrs.clone();
|
||||
route.hostname = route_info.hostname.clone();
|
||||
route.hostname = route_info.hostname.clone().unwrap_or_default();
|
||||
|
||||
let mut stun_info = StunInfo::default();
|
||||
if let Ok(udp_nat_type) = NatType::try_from(route_info.udp_stun_info as i32) {
|
||||
|
||||
Reference in New Issue
Block a user