(ufs: UplinkFrameSet, jr: JoinRequestPayload)
| 30 | } |
| 31 | |
| 32 | async fn _start_pr(ufs: UplinkFrameSet, jr: JoinRequestPayload) -> Result<()> { |
| 33 | let mut ctx = JoinRequest { |
| 34 | uplink_frame_set: ufs, |
| 35 | join_request: jr, |
| 36 | home_net_id: None, |
| 37 | client: None, |
| 38 | pr_start_ans: None, |
| 39 | }; |
| 40 | |
| 41 | ctx.filter_rx_info_by_public_only()?; |
| 42 | ctx.get_home_net_id().await?; |
| 43 | ctx.get_client().await?; |
| 44 | ctx.start_roaming().await?; |
| 45 | ctx.save_roaming_session().await?; |
| 46 | |
| 47 | Ok(()) |
| 48 | } |
| 49 | |
| 50 | fn filter_rx_info_by_public_only(&mut self) -> Result<()> { |
| 51 | trace!("Filtering rx_info by public gateways only"); |
nothing calls this directly
no test coverage detected