You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: noq-proto/src/connection/mod.rs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -6175,19 +6175,19 @@ impl Connection {
6175
6175
if max_initial_paths.as_u32() < max_remote_addresses asu32 + 1{
6176
6176
// in this case the client might try to open `max_remote_addresses` new
6177
6177
// paths, but the current multipath configuration will not allow it
6178
-
warn!(%max_initial_paths, %max_remote_addresses,"local client configuration might cause nat traversal issues")
6178
+
debug!(%max_initial_paths, %max_remote_addresses,"local client configuration might cause nat traversal issues")
6179
6179
}elseif max_local_addresses asu64
6180
6180
> params.active_connection_id_limit.into_inner()
6181
6181
{
6182
6182
// the server allows us to send at most `params.active_connection_id_limit`
6183
6183
// but they might need at least `max_local_addresses` to effectively send
6184
6184
// `PATH_CHALLENGE` frames to each advertised local address
6185
-
warn!(%max_local_addresses, remote_cid_limit=%params.active_connection_id_limit.into_inner(),"remote server configuration might cause nat traversal issues")
6185
+
debug!(%max_local_addresses, remote_cid_limit=%params.active_connection_id_limit.into_inner(),"remote server configuration might cause nat traversal issues")
0 commit comments