Use the host compiler for build tool c-ify.
[darkstat-debian] / acct.h
1 /* darkstat 3
2 * copyright (c) 2001-2012 Emil Mikulic.
3 *
4 * acct.h: traffic accounting
5 */
6
7 #include <stdint.h>
8
9 struct pktsummary;
10 struct local_ips;
11
12 extern uint64_t acct_total_packets, acct_total_bytes;
13
14 void acct_init_localnet(const char *spec);
15 void acct_for(const struct pktsummary * const sm,
16 const struct local_ips * const local_ips);
17
18 /* vim:set ts=3 sw=3 tw=80 expandtab: */