~ubuntu-branches/ubuntu/intrepid/darkstat/intrepid

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/* darkstat 3
 * copyright (c) 2006, 2007 Emil Mikulic.
 *
 * graph_db.h: round robin database for graph data
 */

#ifdef linux
# include <stdint.h> /* for uint64_t */
#endif

enum graph_dir {
   MIN_GRAPH_DIR = 1,
   GRAPH_IN = 1,
   GRAPH_OUT = 2,
   MAX_GRAPH_DIR = 2
};

void graph_init(void);
void graph_reset(void);
void graph_free(void);
void graph_acct(uint64_t amount, enum graph_dir dir);
void graph_rotate(void);
int graph_import(const int fd);
int graph_export(const int fd);

struct str *html_front_page(void);
struct str *xml_graphs(void);

/* vim:set ts=3 sw=3 tw=78 expandtab: */