(&self)
| 1153 | } |
| 1154 | |
| 1155 | async fn handle_passive_roaming_tx_ack(&self) -> Result<()> { |
| 1156 | trace!("Handle passive-roaming tx-ack"); |
| 1157 | |
| 1158 | tx_ack::TxAck::handle(gw::DownlinkTxAck { |
| 1159 | downlink_id: self.downlink_frame.downlink_id, |
| 1160 | items: vec![gw::DownlinkTxAckItem { |
| 1161 | status: gw::TxAckStatus::Ok.into(), |
| 1162 | }], |
| 1163 | ..Default::default() |
| 1164 | }) |
| 1165 | .await; |
| 1166 | |
| 1167 | Ok(()) |
| 1168 | } |
| 1169 | |
| 1170 | async fn _request_custom_channel_reconfiguration(&mut self) -> Result<()> { |
| 1171 | trace!("Requesting custom channel re-configuration"); |
no test coverage detected