ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/hopm/trunk/src/stats.h
Revision: 5072
Committed: Mon Dec 22 15:33:29 2014 UTC (9 years, 3 months ago) by michael
Content type: text/x-chdr
File size: 429 byte(s)
Log Message:
- Fixed a bunch of compile warnings

File Contents

# Content
1 #ifndef STATS_H
2 #define STATS_H
3
4 #include "irc.h"
5 #include "config.h"
6
7 struct StatsHash
8 {
9 int type;
10 unsigned int count;
11 const char *name;
12 };
13
14 extern void stats_init(void);
15 extern void stats_openproxy(int);
16 extern void stats_connect(void);
17 extern void stats_dnsblrecv(struct BlacklistConf *);
18 extern void stats_dnsblsend(void);
19 extern void stats_output(char *);
20
21 extern void fdstats_output(char *);
22
23 #endif /* STATS_H */