libquic vbump

This commit is contained in:
dr7ana 2023-12-13 10:12:36 -08:00
parent fd21eb3a00
commit d6e5aca572
4 changed files with 1 additions and 13 deletions

@ -1 +1 @@
Subproject commit 357548ba0b6f3d99126148c27091afebac77aae9
Subproject commit 0e431b912eb4bf76a9219861afc06cd8ceafa781

View File

@ -11,7 +11,6 @@ namespace llarp::link
{
std::shared_ptr<oxen::quic::connection_interface> conn;
std::shared_ptr<oxen::quic::BTRequestStream> control_stream;
// std::optional<RemoteRC> remote_rc;
// one side of a connection will be responsible for some things, e.g. heartbeat
bool inbound{false};

View File

@ -135,13 +135,6 @@ namespace llarp
[this, msg = std::move(m)]() mutable { handle_fetch_bootstrap_rcs(std::move(msg)); });
});
// s->register_command("bfetch_rcs"s, [this](oxen::quic::message m) {
// _router.loop()->call(
// [this, msg = std::move(m)]() mutable { handle_fetch_bootstrap_rcs(std::move(msg)); });
// });
log::critical(logcat, "Registered `bfetch_rcs` (RID:{})", router_id);
s->register_command("path_build"s, [this, rid = router_id](oxen::quic::message m) {
_router.loop()->call(
[this, &rid, msg = std::move(m)]() mutable { handle_path_build(std::move(msg), rid); });

View File

@ -407,10 +407,6 @@ namespace llarp
// add to pending conns
auto [itr, b] = pending_conns.emplace(rid, nullptr);
// emplace immediately for connection open callback to find scid
// connid_map.emplace(conn_interface->scid(), rc.router_id());
// auto [itr, b] = conns.emplace(rc.router_id(), nullptr);
auto control_stream = conn_interface->template get_new_stream<oxen::quic::BTRequestStream>(
[](oxen::quic::Stream& s, uint64_t error_code) {
log::warning(