network fixes, still a lot more to do for tcp

This commit is contained in:
John Smith
2022-01-01 13:38:39 -05:00
parent 0e0209a54b
commit c2c5e3c299
10 changed files with 30 additions and 20 deletions

View File

@@ -945,9 +945,12 @@ impl RPCProcessor {
// Possibly from an alternate port
let network_manager = self.network_manager();
network_manager
.send_direct_receipt(dial_info, rcpt_data, alternate_port)
.send_direct_receipt(&dial_info, rcpt_data, alternate_port)
.await
.map_err(map_error_string!())?;
.map_err(map_error_string!())
.map_err(
logthru_net!(error "failed to send direct receipt to dial info: {}, alternate_port={}", dial_info, alternate_port),
)?;
Ok(())
}