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) <noreply@anthropic.com>
This commit is contained in:
@@ -774,6 +774,7 @@ async fn run_signal_mode(
|
|||||||
// relay-path.
|
// relay-path.
|
||||||
caller_reflexive_addr: None,
|
caller_reflexive_addr: None,
|
||||||
caller_local_addrs: Vec::new(),
|
caller_local_addrs: Vec::new(),
|
||||||
|
caller_build_version: None,
|
||||||
}).await?;
|
}).await?;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -807,6 +808,7 @@ async fn run_signal_mode(
|
|||||||
// so callee addr stays hidden from the caller.
|
// so callee addr stays hidden from the caller.
|
||||||
callee_reflexive_addr: None,
|
callee_reflexive_addr: None,
|
||||||
callee_local_addrs: Vec::new(),
|
callee_local_addrs: Vec::new(),
|
||||||
|
callee_build_version: None,
|
||||||
}).await;
|
}).await;
|
||||||
}
|
}
|
||||||
SignalMessage::DirectCallAnswer { call_id, accept_mode, .. } => {
|
SignalMessage::DirectCallAnswer { call_id, accept_mode, .. } => {
|
||||||
|
|||||||
Reference in New Issue
Block a user