show nodes version correctly
This commit is contained in:
Generated
+21
@@ -1557,6 +1557,7 @@ dependencies = [
|
|||||||
"futures",
|
"futures",
|
||||||
"futures-util",
|
"futures-util",
|
||||||
"gethostname 0.5.0",
|
"gethostname 0.5.0",
|
||||||
|
"git-version",
|
||||||
"globwalk",
|
"globwalk",
|
||||||
"http 1.1.0",
|
"http 1.1.0",
|
||||||
"humansize",
|
"humansize",
|
||||||
@@ -2299,6 +2300,26 @@ dependencies = [
|
|||||||
"winapi",
|
"winapi",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "git-version"
|
||||||
|
version = "0.3.9"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "1ad568aa3db0fcbc81f2f116137f263d7304f512a1209b35b85150d3ef88ad19"
|
||||||
|
dependencies = [
|
||||||
|
"git-version-macro",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "git-version-macro"
|
||||||
|
version = "0.3.9"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "53010ccb100b96a67bc32c0175f0ed1426b31b655d562898e57325f81c023ac0"
|
||||||
|
dependencies = [
|
||||||
|
"proc-macro2",
|
||||||
|
"quote",
|
||||||
|
"syn 2.0.74",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "glib"
|
name = "glib"
|
||||||
version = "0.18.5"
|
version = "0.18.5"
|
||||||
|
|||||||
@@ -29,6 +29,8 @@ path = "src/lib.rs"
|
|||||||
test = false
|
test = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
git-version = "0.3.9"
|
||||||
|
|
||||||
tracing = { version = "0.1", features = ["log"] }
|
tracing = { version = "0.1", features = ["log"] }
|
||||||
tracing-subscriber = { version = "0.3", features = [
|
tracing-subscriber = { version = "0.3", features = [
|
||||||
"env-filter",
|
"env-filter",
|
||||||
|
|||||||
+13
-10
@@ -129,6 +129,18 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
|
|||||||
#[cfg(target_os = "windows")]
|
#[cfg(target_os = "windows")]
|
||||||
WindowsBuild::check_for_win();
|
WindowsBuild::check_for_win();
|
||||||
|
|
||||||
|
let proto_files = [
|
||||||
|
"src/proto/peer_rpc.proto",
|
||||||
|
"src/proto/common.proto",
|
||||||
|
"src/proto/error.proto",
|
||||||
|
"src/proto/tests.proto",
|
||||||
|
"src/proto/cli.proto",
|
||||||
|
];
|
||||||
|
|
||||||
|
for proto_file in &proto_files {
|
||||||
|
println!("cargo:rerun-if-changed={}", proto_file);
|
||||||
|
}
|
||||||
|
|
||||||
prost_build::Config::new()
|
prost_build::Config::new()
|
||||||
.type_attribute(".common", "#[derive(serde::Serialize, serde::Deserialize)]")
|
.type_attribute(".common", "#[derive(serde::Serialize, serde::Deserialize)]")
|
||||||
.type_attribute(".error", "#[derive(serde::Serialize, serde::Deserialize)]")
|
.type_attribute(".error", "#[derive(serde::Serialize, serde::Deserialize)]")
|
||||||
@@ -142,16 +154,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
|
|||||||
.type_attribute("common.RpcDescriptor", "#[derive(Hash, Eq)]")
|
.type_attribute("common.RpcDescriptor", "#[derive(Hash, Eq)]")
|
||||||
.service_generator(Box::new(rpc_build::ServiceGenerator::new()))
|
.service_generator(Box::new(rpc_build::ServiceGenerator::new()))
|
||||||
.btree_map(&["."])
|
.btree_map(&["."])
|
||||||
.compile_protos(
|
.compile_protos(&proto_files, &["src/proto/"])
|
||||||
&[
|
|
||||||
"src/proto/peer_rpc.proto",
|
|
||||||
"src/proto/common.proto",
|
|
||||||
"src/proto/error.proto",
|
|
||||||
"src/proto/tests.proto",
|
|
||||||
"src/proto/cli.proto",
|
|
||||||
],
|
|
||||||
&["src/proto/"],
|
|
||||||
)
|
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
check_locale();
|
check_locale();
|
||||||
|
|||||||
@@ -22,3 +22,9 @@ macro_rules! set_global_var {
|
|||||||
define_global_var!(MANUAL_CONNECTOR_RECONNECT_INTERVAL_MS, u64, 1000);
|
define_global_var!(MANUAL_CONNECTOR_RECONNECT_INTERVAL_MS, u64, 1000);
|
||||||
|
|
||||||
pub const UDP_HOLE_PUNCH_CONNECTOR_SERVICE_ID: u32 = 2;
|
pub const UDP_HOLE_PUNCH_CONNECTOR_SERVICE_ID: u32 = 2;
|
||||||
|
|
||||||
|
pub const EASYTIER_VERSION: &str = git_version::git_version!(
|
||||||
|
args = ["--abbrev=8", "--always", "--dirty=~"],
|
||||||
|
prefix = concat!(env!("CARGO_PKG_VERSION"), "-"),
|
||||||
|
suffix = ""
|
||||||
|
);
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ use std::{
|
|||||||
use crate::{
|
use crate::{
|
||||||
common::{
|
common::{
|
||||||
config::{ConfigLoader, TomlConfigLoader},
|
config::{ConfigLoader, TomlConfigLoader},
|
||||||
|
constants::EASYTIER_VERSION,
|
||||||
global_ctx::GlobalCtxEvent,
|
global_ctx::GlobalCtxEvent,
|
||||||
stun::StunInfoCollectorTrait,
|
stun::StunInfoCollectorTrait,
|
||||||
},
|
},
|
||||||
@@ -141,7 +142,7 @@ impl EasyTierLauncher {
|
|||||||
.map(|x| x.to_string())
|
.map(|x| x.to_string())
|
||||||
.unwrap_or_default(),
|
.unwrap_or_default(),
|
||||||
hostname: global_ctx_c.get_hostname(),
|
hostname: global_ctx_c.get_hostname(),
|
||||||
version: env!("CARGO_PKG_VERSION").to_string(),
|
version: EASYTIER_VERSION.to_string(),
|
||||||
ips: global_ctx_c.get_ip_collector().collect_ip_addrs().await,
|
ips: global_ctx_c.get_ip_collector().collect_ip_addrs().await,
|
||||||
stun_info: global_ctx_c.get_stun_info_collector().get_stun_info(),
|
stun_info: global_ctx_c.get_stun_info_collector().get_stun_info(),
|
||||||
listeners: global_ctx_c
|
listeners: global_ctx_c
|
||||||
|
|||||||
+1
-1
@@ -14,4 +14,4 @@ pub mod launcher;
|
|||||||
pub mod tunnel;
|
pub mod tunnel;
|
||||||
pub mod utils;
|
pub mod utils;
|
||||||
|
|
||||||
pub const VERSION: &str = env!("CARGO_PKG_VERSION");
|
pub const VERSION: &str = common::constants::EASYTIER_VERSION;
|
||||||
|
|||||||
@@ -19,7 +19,10 @@ use tokio::{
|
|||||||
use tokio_stream::wrappers::ReceiverStream;
|
use tokio_stream::wrappers::ReceiverStream;
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
common::{error::Error, global_ctx::ArcGlobalCtx, stun::StunInfoCollectorTrait, PeerId},
|
common::{
|
||||||
|
constants::EASYTIER_VERSION, error::Error, global_ctx::ArcGlobalCtx,
|
||||||
|
stun::StunInfoCollectorTrait, PeerId,
|
||||||
|
},
|
||||||
peers::{
|
peers::{
|
||||||
peer_conn::PeerConn,
|
peer_conn::PeerConn,
|
||||||
peer_rpc::PeerRpcManagerTransport,
|
peer_rpc::PeerRpcManagerTransport,
|
||||||
@@ -746,7 +749,7 @@ impl PeerManager {
|
|||||||
.map(|x| x.to_string())
|
.map(|x| x.to_string())
|
||||||
.collect(),
|
.collect(),
|
||||||
config: self.global_ctx.config.dump(),
|
config: self.global_ctx.config.dump(),
|
||||||
version: env!("CARGO_PKG_VERSION").to_string(),
|
version: EASYTIER_VERSION.to_string(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -23,10 +23,12 @@ use tokio::{
|
|||||||
};
|
};
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
common::{global_ctx::ArcGlobalCtx, stun::StunInfoCollectorTrait, PeerId},
|
common::{
|
||||||
|
constants::EASYTIER_VERSION, global_ctx::ArcGlobalCtx, stun::StunInfoCollectorTrait, PeerId,
|
||||||
|
},
|
||||||
peers::route_trait::{Route, RouteInterfaceBox},
|
peers::route_trait::{Route, RouteInterfaceBox},
|
||||||
proto::common::{NatType, StunInfo},
|
|
||||||
proto::{
|
proto::{
|
||||||
|
common::{NatType, StunInfo},
|
||||||
peer_rpc::{
|
peer_rpc::{
|
||||||
OspfRouteRpc, OspfRouteRpcClientFactory, OspfRouteRpcServer, PeerIdVersion,
|
OspfRouteRpc, OspfRouteRpcClientFactory, OspfRouteRpcServer, PeerIdVersion,
|
||||||
RoutePeerInfo, RoutePeerInfos, SyncRouteInfoError, SyncRouteInfoRequest,
|
RoutePeerInfo, RoutePeerInfos, SyncRouteInfoError, SyncRouteInfoRequest,
|
||||||
@@ -99,6 +101,7 @@ impl RoutePeerInfo {
|
|||||||
udp_stun_info: 0,
|
udp_stun_info: 0,
|
||||||
last_update: Some(SystemTime::now().into()),
|
last_update: Some(SystemTime::now().into()),
|
||||||
version: 0,
|
version: 0,
|
||||||
|
easytier_version: EASYTIER_VERSION.to_string(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -122,6 +125,8 @@ impl RoutePeerInfo {
|
|||||||
// following fields do not participate in comparison.
|
// following fields do not participate in comparison.
|
||||||
last_update: self.last_update,
|
last_update: self.last_update,
|
||||||
version: self.version,
|
version: self.version,
|
||||||
|
|
||||||
|
easytier_version: EASYTIER_VERSION.to_string(),
|
||||||
};
|
};
|
||||||
|
|
||||||
let need_update_periodically = if let Ok(Ok(d)) =
|
let need_update_periodically = if let Ok(Ok(d)) =
|
||||||
@@ -162,7 +167,7 @@ impl Into<crate::proto::cli::Route> for RoutePeerInfo {
|
|||||||
Some(stun_info)
|
Some(stun_info)
|
||||||
},
|
},
|
||||||
inst_id: self.inst_id.map(|x| x.to_string()).unwrap_or_default(),
|
inst_id: self.inst_id.map(|x| x.to_string()).unwrap_or_default(),
|
||||||
version: env!("CARGO_PKG_VERSION").to_string(),
|
version: self.easytier_version,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -16,6 +16,8 @@ message RoutePeerInfo {
|
|||||||
common.NatType udp_stun_info = 7;
|
common.NatType udp_stun_info = 7;
|
||||||
google.protobuf.Timestamp last_update = 8;
|
google.protobuf.Timestamp last_update = 8;
|
||||||
uint32 version = 9;
|
uint32 version = 9;
|
||||||
|
|
||||||
|
string easytier_version = 10;
|
||||||
}
|
}
|
||||||
|
|
||||||
message PeerIdVersion {
|
message PeerIdVersion {
|
||||||
|
|||||||
Reference in New Issue
Block a user