1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00

try queueing

This commit is contained in:
dr7ana 2023-12-11 09:17:29 -08:00
parent 0bf3a3323a
commit efe5fd3b5b

View file

@ -385,7 +385,12 @@ namespace llarp
ep.connid_map.emplace(scid, rid); ep.connid_map.emplace(scid, rid);
auto [itr, b] = ep.conns.emplace(rid, nullptr); 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); 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); log::critical(logcat, "Successfully configured inbound connection fom {}; storing RC...", rid);
} }