TELL ME WHEN IT WORKS

pull/2227/head
dr7ana 5 months ago
parent d00257b9f0
commit 8af38d3d44

@ -356,10 +356,10 @@ namespace llarp
std::move(on_close));
rv)
{
log::info(quic_cat, "Connection to {} successfully established!", remote_addr);
log::info(quic_cat, "Begun establishing connection to {}", remote_addr);
return;
}
log::warning(quic_cat, "Connection to {} successfully established!", remote_addr);
log::warning(quic_cat, "Failed to begin establishing connection to {}", remote_addr);
}
// TODO: should we add routes here now that Router::SessionOpen is gone?
@ -370,6 +370,12 @@ namespace llarp
const auto& scid = conn_interface.scid();
const auto& rid = ep.connid_map[scid];
log::critical(
logcat,
"SERVICE NODE (RID:{}) ESTABLISHED CONNECTION TO RID:{}",
_router.local_rid(),
rid);
// check to see if this connection was established while we were attempting to queue
// messages to the remote
if (auto itr = pending_conn_msg_queue.find(rid); itr != pending_conn_msg_queue.end())

@ -368,7 +368,6 @@ namespace llarp
}
std::vector<RouterID> needed;
const auto now = time_point_now();
for (const auto& [rid, rc] : rc_lookup)

@ -526,7 +526,7 @@ namespace llarp
void
Router::save_rc()
{
_node_db->put_rc(router_contact.view());
// _node_db->put_rc(router_contact.view());
log::info(logcat, "Saving RC file to {}", our_rc_file);
queue_disk_io([&]() { router_contact.write(our_rc_file); });
}

Loading…
Cancel
Save