libquic vbump

pull/2232/head
dr7ana 5 months ago
parent 9f0766f203
commit bf6e705cbd

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

@ -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};

@ -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); });

@ -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(

Loading…
Cancel
Save