From b3e9f6de62fca1f6228741dc322258b087ac66db Mon Sep 17 00:00:00 2001 From: Thomas Karpiniec Date: Mon, 16 Jun 2025 20:59:28 +1000 Subject: [PATCH] Document reflector destination call --- tools/m17rt-netclient/src/main.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/m17rt-netclient/src/main.rs b/tools/m17rt-netclient/src/main.rs index 3204b5b..5fee7d6 100644 --- a/tools/m17rt-netclient/src/main.rs +++ b/tools/m17rt-netclient/src/main.rs @@ -72,6 +72,10 @@ fn main() { let input = args.get_one::("input"); let output = args.get_one::("output"); + // It is current convention that mrefd requires the destination of transmissions to match the reflector. + // If you are connected to "M17-XXX" on module B then you must set the dst to "M17-XXX B". + // This requirement is likely to change but for the purposes of this test client we'll hard-code the + // behaviour for the time being. let ref_with_mod = format!("{} {}", reflector, module); let Ok(reflector) = M17Address::from_callsign(&ref_with_mod) else { println!( -- 2.39.5