| Revision: | 5120 |
| Committed: | Thu Dec 25 16:04:40 2014 UTC (11 years, 7 months ago) by michael |
| Content type: | text/x-chdr |
| File size: | 334 byte(s) |
| Log Message: | - Style corrections |
| # | User | Rev | Content |
|---|---|---|---|
| 1 | michael | 5052 | #ifndef DNSBL_H |
| 2 | #define DNSBL_H | ||
| 3 | |||
| 4 | #include "firedns.h" | ||
| 5 | #include "scan.h" | ||
| 6 | |||
| 7 | michael | 5120 | |
| 8 | struct dnsbl_scan | ||
| 9 | { | ||
| 10 | struct scan_struct *ss; | ||
| 11 | struct BlacklistConf *bl; | ||
| 12 | }; | ||
| 13 | |||
| 14 | michael | 5052 | extern void dnsbl_add(struct scan_struct *); |
| 15 | extern void dnsbl_result(struct firedns_result *); | ||
| 16 | extern void dnsbl_cycle(void); | ||
| 17 | michael | 5120 | extern void dnsbl_report(struct scan_struct *); |
| 18 | michael | 5052 | #endif |