blob: a44ef70db4f7bbfd4a8d0aa57c3b7d2968531af9 [file] [log] [blame]
Lennart Poettering03467c82010-08-17 03:33:07 +02001/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
Lennart Poettering1e2e8132010-01-29 04:42:57 +01002
3#ifndef fooratelimithfoo
4#define fooratelimithfoo
5
Lennart Poetteringa7334b02010-02-03 13:03:47 +01006/***
7 This file is part of systemd.
8
9 Copyright 2010 Lennart Poettering
10
11 systemd is free software; you can redistribute it and/or modify it
12 under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2 of the License, or
14 (at your option) any later version.
15
16 systemd is distributed in the hope that it will be useful, but
17 WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 General Public License for more details.
20
21 You should have received a copy of the GNU General Public License
22 along with systemd; If not, see <http://www.gnu.org/licenses/>.
23***/
24
Lennart Poettering1e2e8132010-01-29 04:42:57 +010025#include "util.h"
26
27typedef struct RateLimit {
28 usec_t interval;
Lennart Poettering9d58f1d2010-04-21 04:01:24 +020029 usec_t begin;
Lennart Poettering1e2e8132010-01-29 04:42:57 +010030 unsigned burst;
Harald Hoyer4ce9faa2011-02-21 15:32:18 +010031 unsigned num;
Lennart Poettering1e2e8132010-01-29 04:42:57 +010032} RateLimit;
33
Lennart Poettering47be8702010-02-03 14:21:48 +010034#define RATELIMIT_DEFINE(_name, _interval, _burst) \
35 RateLimit _name = { \
36 .interval = (_interval), \
37 .burst = (_burst), \
Harald Hoyer4ce9faa2011-02-21 15:32:18 +010038 .num = 0, \
Lennart Poettering47be8702010-02-03 14:21:48 +010039 .begin = 0 \
Lennart Poettering1e2e8132010-01-29 04:42:57 +010040 }
41
Lennart Poettering47be8702010-02-03 14:21:48 +010042#define RATELIMIT_INIT(v, _interval, _burst) \
43 do { \
44 RateLimit *_r = &(v); \
45 _r->interval = (_interval); \
46 _r->burst = (_burst); \
Harald Hoyer4ce9faa2011-02-21 15:32:18 +010047 _r->num = 0; \
Lennart Poettering47be8702010-02-03 14:21:48 +010048 _r->begin = 0; \
Lennart Poettering1e2e8132010-01-29 04:42:57 +010049 } while (false);
50
51bool ratelimit_test(RateLimit *r);
52
53#endif