fix: refresh ACL groups and enable TCP_NODELAY for WebSocket (#2118)

* fix: refresh ACL groups and enable TCP_NODELAY for WebSocket
* add remove_peers to remove list of peer id in ospf route
* fix secure tunnel for unreliable udp tunnel
* fix(web-client): timeout secure tunnel handshake
* fix(web-server): tolerate delayed secure hello
* fix quic endpoint panic
* fix replay check
This commit is contained in:
KKRainbow
2026-04-19 10:37:39 +08:00
committed by GitHub
parent c49c56612b
commit 2db655bd6d
14 changed files with 7823 additions and 1037 deletions
+5
View File
@@ -611,6 +611,11 @@ impl QuicStreamReceiver {
}
_ = self.tasks.join_next(), if !self.tasks.is_empty() => {}
else => {
info!("quic stream receiver endpoint closed, exiting");
break;
}
}
}
}