libquic testing out verbose bparser stuff

pull/2232/head
dr7ana 4 months ago
parent cba6cd8398
commit 5004fbc364

@ -1 +1 @@
Subproject commit 1742b9edc5ea41c108c7a830c7ccc7b69ae1477e
Subproject commit 4abc38b7198ab42bcd2933c8a601afb3099db4b3

@ -403,12 +403,12 @@ namespace llarp
if (ci.is_inbound())
{
log::critical(logcat, "Inbound connection from {} (remote:{})", rid);
log::critical(logcat, "Inbound connection from {}", rid);
on_inbound_conn(ci);
}
else
{
log::critical(logcat, "Outbound connection to {} (remote:{})", rid);
log::critical(logcat, "Outbound connection to {}", rid);
on_outbound_conn(ci);
}
// _router.loop()->call([this, &conn_interface = ci, is_snode = _is_service_node]() {

@ -910,7 +910,7 @@ namespace llarp
{
log::info(logcat, "Pruning RC for {}, as it is too old to keep.", itr->first);
known_rcs.erase(itr->second);
rc_lookup.erase(itr);
itr = rc_lookup.erase(itr);
continue;
}
itr++;

@ -613,7 +613,7 @@ namespace llarp
auto [_in, _out, _relay, _client] = _link_manager->connection_stats();
auto [_rcs, _rids, _bstraps] = _node_db->db_stats();
return "{} RCs, {} RIDs, {} bstraps, conns [{}:{} in:out, {}:{} relay:client"_format(
return "{} RCs, {} RIDs, {} bstraps, conns [{}:{} in:out, {}:{} relay:client]"_format(
_rcs, _rids, _bstraps, _in, _out, _relay, _client);
}

Loading…
Cancel
Save