We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8d6fe0 commit d90729dCopy full SHA for d90729d
quic/s2n-quic/src/provider/random.rs
@@ -25,7 +25,10 @@ mod rand {
25
use s2n_quic_core::random;
26
27
// Number of generated bytes after which to reseed the public and private random
28
- // generators. This value is based on THREAD_RNG_RESEED_THRESHOLD from rand::rngs::thread.rs
+ // generators.
29
+ //
30
+ // This value is based on THREAD_RNG_RESEED_THRESHOLD from
31
+ // [rand::rngs::thread.rs](https://github.com/rust-random/rand/blob/ef75e56cf5824d33c55622bf84a70ec6e22761ba/src/rngs/thread.rs#L39)
32
const RESEED_THRESHOLD: u64 = 1024 * 64;
33
34
#[derive(Debug, Default)]
0 commit comments