mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-15 12:13:24 +00:00
libquic testing out verbose bparser stuff
This commit is contained in:
parent
cba6cd8398
commit
5004fbc364
2
external/oxen-libquic
vendored
2
external/oxen-libquic
vendored
@ -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…
Reference in New Issue
Block a user