mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-15 12:13:24 +00:00
TELL ME WHEN IT WORKS
This commit is contained in:
parent
6a32148402
commit
aeb0798a6f
@ -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…
Reference in New Issue
Block a user