| 2878 | } |
| 2879 | |
| 2880 | int64_t PoissonNextSend(int64_t now, int average_interval_seconds) |
| 2881 | { |
| 2882 | return now + (int64_t)(log1p(GetRand(1ULL << 48) * -0.0000000000000035527136788 /* -1/2^48 */) * average_interval_seconds * -1000000.0 + 0.5); |
| 2883 | } |
| 2884 | |
| 2885 | CSipHasher CConnman::GetDeterministicRandomizer(uint64_t id) const |
| 2886 | { |
no test coverage detected