From 0b62d3e22f0e34d115b6effbe4c2fc7f45d64fd8 Mon Sep 17 00:00:00 2001 From: Siavash Sameni Date: Sun, 12 Apr 2026 13:09:26 +0400 Subject: [PATCH] fix(cli): add missing build_version fields to Offer/Answer CLI binary was missing the new caller_build_version and callee_build_version fields, causing E0063 compile errors on Linux relay/client builds. Co-Authored-By: Claude Opus 4.6 (1M context) --- crates/wzp-client/src/cli.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/wzp-client/src/cli.rs b/crates/wzp-client/src/cli.rs index bb4e61f..bb6fa49 100644 --- a/crates/wzp-client/src/cli.rs +++ b/crates/wzp-client/src/cli.rs @@ -774,6 +774,7 @@ async fn run_signal_mode( // relay-path. caller_reflexive_addr: None, caller_local_addrs: Vec::new(), + caller_build_version: None, }).await?; } @@ -807,6 +808,7 @@ async fn run_signal_mode( // so callee addr stays hidden from the caller. callee_reflexive_addr: None, callee_local_addrs: Vec::new(), + callee_build_version: None, }).await; } SignalMessage::DirectCallAnswer { call_id, accept_mode, .. } => {