Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions crates/openplay-airplay/examples/pair_probe.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! Probes a real AirPlay receiver: feature negotiation, then HAP pair-setup.
//!
//! This is the hardware check that no unit test in this repository can perform.
//! It exists to answer the open question in issue #8 — whether the corrected
//! It exists to answer the open question in issue #27 — whether the corrected
//! RFC 5054 SRP group actually lets `pair_setup` succeed against real Apple
//! hardware, rather than merely removing a known blocker.
//!
Expand Down Expand Up @@ -104,7 +104,7 @@ async fn main() -> anyhow::Result<()> {
}
Err(e) => {
println!("\n❌ PAIR-SETUP FAILED: {e}");
println!("\n Where it failed is what matters for issue #8:");
println!("\n Where it failed is what matters for issue #27:");
println!(" - 'Server proof verification failed' (M4) → SRP still disagrees");
println!(" - missing salt/public key (M2) → receiver refused earlier");
println!(" - TLV8 error code in M4 → receiver rejected the PIN");
Expand Down
Loading