fix(cli): missing l4_protocol field initialization

This commit is contained in:
ospab 2026-06-23 00:58:04 +03:00
parent 71ecf0da86
commit aae9d22038
2 changed files with 2 additions and 1 deletions

View File

@ -1881,6 +1881,7 @@ async fn run_app() -> Result<()> {
outbound = Some(ostp_server::OutboundConfig {
enabled: true,
protocol: "socks5".to_string(),
l4_protocol: "all".to_string(),
address: server,
port,
rules,

View File

@ -252,7 +252,7 @@ Write-Output ""
Write-Output "--- Phase 3: CI/CD release ---"
Write-Output "Pushing version metadata..."
& git add Cargo.toml Cargo.lock
& git add Cargo.toml Cargo.lock ostp-gui/src-tauri/tauri.conf.json ostp-flutter/pubspec.yaml
& git commit -m "CI/CD: release version v$Version" --allow-empty | Out-Null
& git push origin master | Out-Null