Initial import (again)
[srvx.git] / src / policer.h
1 /* policer.h - Leaky bucket
2  * Copyright 2000-2001 srvx Development Team
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.  Important limitations are
8  * listed in the COPYING file that accompanies this software.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, email srvx-maintainers@srvx.net.
17  */
18
19 #ifndef POLICER_H
20 #define POLICER_H
21
22 struct policer_params;
23
24 struct policer_params *policer_params_new(void);
25 int policer_params_set(struct policer_params *params, const char *param, const char *value);
26 void policer_params_delete(struct policer_params *params);
27
28 struct policer {
29     double level;
30     time_t last_req;
31     struct policer_params *params;
32 };
33
34 int policer_conforms(struct policer *pol, time_t reqtime, double weight);
35 void policer_delete(struct policer *pol);
36
37 #endif /* ndef POLICER_H */