From 1550d709e00a17b8961fa9cf8a82cf130225d712 Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Fri, 15 Jan 2016 18:48:14 +0900 Subject: [PATCH] nghttpx: Use std::mt19937 instead of std::random_device directly --- src/shrpx_connection_handler.cc | 12 ++++++------ src/shrpx_connection_handler.h | 2 ++ 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/src/shrpx_connection_handler.cc b/src/shrpx_connection_handler.cc index 536b3e16..87aab2f9 100644 --- a/src/shrpx_connection_handler.cc +++ b/src/shrpx_connection_handler.cc @@ -102,8 +102,12 @@ void thread_join_async_cb(struct ev_loop *loop, ev_async *w, int revent) { } } // namespace +namespace { +std::random_device rd; +} // namespace + ConnectionHandler::ConnectionHandler(struct ev_loop *loop) - : single_worker_(nullptr), loop_(loop), + : gen_(rd()), single_worker_(nullptr), loop_(loop), tls_ticket_key_memcached_get_retry_count_(0), tls_ticket_key_memcached_fail_count_(0), worker_round_robin_cnt_(0), graceful_shutdown_(false) { @@ -667,10 +671,6 @@ ConnectionHandler::get_tls_ticket_key_memcached_dispatcher() const { return tls_ticket_key_memcached_dispatcher_.get(); } -namespace { -std::random_device rd; -} // namespace - void ConnectionHandler::on_tls_ticket_key_network_error(ev_timer *w) { if (++tls_ticket_key_memcached_get_retry_count_ >= get_config()->tls_ticket_key_memcached_max_retry) { @@ -683,7 +683,7 @@ void ConnectionHandler::on_tls_ticket_key_network_error(ev_timer *w) { auto dist = std::uniform_int_distribution( 1, std::min(60, 1 << tls_ticket_key_memcached_get_retry_count_)); - auto t = dist(rd); + auto t = dist(gen_); LOG(WARN) << "Memcached: tls ticket get failed due to network error, retrying in " diff --git a/src/shrpx_connection_handler.h b/src/shrpx_connection_handler.h index f9c5b03a..36c5e40b 100644 --- a/src/shrpx_connection_handler.h +++ b/src/shrpx_connection_handler.h @@ -34,6 +34,7 @@ #include #include +#include #ifndef NOTHREADS #include #endif // NOTHREADS @@ -139,6 +140,7 @@ private: // Stores all SSL_CTX objects. std::vector all_ssl_ctx_; OCSPUpdateContext ocsp_; + std::mt19937 gen_; // ev_loop for each worker std::vector worker_loops_; // Worker instances when multi threaded mode (-nN, N >= 2) is used.