Global: collectd → libsortnetwork
[sort-networks.git] / src / pop_stats.h
1 /**
2  * libsortnetwork - src/pop_stats.h
3  * Copyright (C) 2009-2010  Florian octo Forster
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License as published by the
7  * Free Software Foundation; only version 2 of the License is applicable.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
17  *
18  * Authors:
19  *   Florian octo Forster <ff at octo.it>
20  **/
21
22 #ifndef POP_STATS_H
23 #define POP_STATS_H 1
24
25 struct pop_stats_s;
26 typedef struct pop_stats_s pop_stats_t;
27
28 pop_stats_t *pop_stats_create (void);
29 void pop_stats_destroy (pop_stats_t *);
30
31 int pop_stats_opt_file (pop_stats_t *, const char *file);
32 int pop_stats_opt_interval (pop_stats_t *, long interval);
33
34 int pop_stats_add_rating (pop_stats_t *, int);
35
36 #endif /* POP_STATS_H */
37
38 /* vim: set shiftwidth=2 softtabstop=2 et : */