Merge remote-tracking branch 'origin/feat/server/stealth-mode'

# Conflicts:
#	crates/wraith-core/src/error.rs
#	crates/wraith-core/src/server/mod.rs
This commit is contained in:
2026-06-02 11:14:06 +00:00
3 changed files with 226 additions and 1 deletions

View File

@@ -74,6 +74,11 @@ pub enum ForwardError {
#[source]
source: Box<dyn std::error::Error + Send + Sync>,
},
#[error("connect to local target failed")]
LocalConnectFailed {
#[source]
source: io::Error,
},
}
#[cfg(test)]