tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 189375fb5dfb6757f1aa0ed36532d933fc382e1e
parent c77f57d37bbea4e7281c2de95a9f19b885290111
Author: Nick Mathewson <nickm@torproject.org>
Date:   Wed,  9 Oct 2019 13:09:44 -0400

ratelim.h: use COCCI to hide an initializer.

Diffstat:
Msrc/lib/log/ratelim.h | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/src/lib/log/ratelim.h b/src/lib/log/ratelim.h @@ -45,7 +45,9 @@ typedef struct ratelim_t { int n_calls_since_last_time; } ratelim_t; +#ifndef COCCI #define RATELIM_INIT(r) { (r), 0, 0 } +#endif #define RATELIM_TOOMANY (16*1000*1000) char *rate_limit_log(ratelim_t *lim, time_t now);