Mercurial > dnsbl
comparison src/dnsbl.h @ 242:d8ee4c97b9ab stable-6-0-26
64 bit fixes for libresolv.a
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Fri, 19 Nov 2010 13:01:07 -0800 |
parents | 7b818a4e21a4 |
children | 15bf4f68a0b2 |
comparison
equal
deleted
inserted
replaced
241:315c53fbbb77 | 242:d8ee4c97b9ab |
---|---|
29 bool eom; // are we in eom function, so progress function can be called? | 29 bool eom; // are we in eom function, so progress function can be called? |
30 // connection specific data | 30 // connection specific data |
31 CONFIG *pc; // global filtering configuration | 31 CONFIG *pc; // global filtering configuration |
32 int fd; // to talk to dns resolver process | 32 int fd; // to talk to dns resolver process |
33 bool err; // did we get any errors on the resolver socket? | 33 bool err; // did we get any errors on the resolver socket? |
34 int ip; // ip4 address of the smtp client | 34 int32_t ip; // ip4 address of the smtp client |
35 const char *helo; // helo from client | 35 const char *helo; // helo from client |
36 map<DNSBLP, bool> checked; // map of dnsblp to result of (ip listed on that dnsbl) | 36 map<DNSBLP, bool> checked; // map of dnsblp to result of (ip listed on that dnsbl) |
37 // message specific data | 37 // message specific data |
38 const char *mailaddr; // envelope from value | 38 const char *mailaddr; // envelope from value |
39 const char *queueid; // sendmail queue id | 39 const char *queueid; // sendmail queue id |