try queueing

This commit is contained in:
dr7ana 2023-12-11 09:17:29 -08:00
parent 0bf3a3323a
commit efe5fd3b5b
1 changed files with 6 additions and 1 deletions

View File

@ -385,7 +385,12 @@ namespace llarp
ep.connid_map.emplace(scid, rid);
auto [itr, b] = ep.conns.emplace(rid, nullptr);
auto control_stream = ci.get_stream<oxen::quic::BTRequestStream>(0);
auto control_stream = ci.queue_stream<oxen::quic::BTRequestStream>([](oxen::quic::Stream& s,
uint64_t error_code) {
log::warning(
logcat, "BTRequestStream closed unexpectedly (ec:{}); closing connection...", error_code);
s.conn.close_connection(error_code);
});
itr->second = std::make_shared<link::Connection>(ci.shared_from_this(), control_stream, rc);
log::critical(logcat, "Successfully configured inbound connection fom {}; storing RC...", rid);
}