Follow up changes in rand 0.9.0

In rand 0.9.0 (2025-01-27), `SeedableRng::from_entropy` has been renamed to `from_os_rng`. This change will lead to build error, and this commit fixed it. 
See also: 0bc3f652c4/rand_core/CHANGELOG.md (L19)
This commit is contained in:
SH Weng 2025-02-09 14:22:15 +08:00 committed by GitHub
parent 62f0278c1a
commit 67fc2e1977
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -402,7 +402,7 @@ impl Stack {
/// Connects to the remote end. `None` returned means
/// the connection attempt failed.
pub async fn connect(&mut self, addr: SocketAddr) -> Option<Socket> {
let mut rng = SmallRng::from_entropy();
let mut rng = SmallRng::from_os_rng();
for local_port in rng.gen_range(32768..=60999)..=60999 {
let local_addr = SocketAddr::new(
if addr.is_ipv4() {