ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/hopm/trunk/src/dnsbl.h
Revision: 5052
Committed: Mon Dec 22 11:56:03 2014 UTC (11 years, 7 months ago) by michael
Content type: text/x-chdr
File size: 337 byte(s)
Log Message:
- Initial import of bopm 3.1.3

File Contents

# User Rev Content
1 michael 5052 #ifndef DNSBL_H
2     #define DNSBL_H
3    
4     #include "firedns.h"
5     #include "scan.h"
6    
7     extern void dnsbl_add(struct scan_struct *);
8     extern void dnsbl_result(struct firedns_result *);
9     extern void dnsbl_cycle(void);
10     extern void dnsbl_report(struct scan_struct *ss);
11    
12    
13     struct dnsbl_scan {
14     struct scan_struct *ss;
15     struct BlacklistConf *bl;
16     };
17    
18     #endif