56 |
|
|
57 |
|
static const char *HeaderMessages[] = |
58 |
|
{ |
59 |
< |
":%s NOTICE AUTH :*** Looking up your hostname...", |
60 |
< |
":%s NOTICE AUTH :*** Found your hostname", |
61 |
< |
":%s NOTICE AUTH :*** Couldn't look up your hostname", |
62 |
< |
":%s NOTICE AUTH :*** Checking Ident", |
63 |
< |
":%s NOTICE AUTH :*** Got Ident response", |
64 |
< |
":%s NOTICE AUTH :*** No Ident response", |
65 |
< |
":%s NOTICE AUTH :*** Your forward and reverse DNS do not match, ignoring hostname.", |
66 |
< |
":%s NOTICE AUTH :*** Your hostname is too long, ignoring hostname" |
59 |
> |
":*** Looking up your hostname...", |
60 |
> |
":*** Found your hostname", |
61 |
> |
":*** Couldn't look up your hostname", |
62 |
> |
":*** Checking Ident", |
63 |
> |
":*** Got Ident response", |
64 |
> |
":*** No Ident response", |
65 |
> |
":*** Your forward and reverse DNS do not match, ignoring hostname.", |
66 |
> |
":*** Your hostname is too long, ignoring hostname" |
67 |
|
}; |
68 |
|
|
69 |
|
enum |
78 |
|
REPORT_HOST_TOOLONG |
79 |
|
}; |
80 |
|
|
81 |
< |
#define sendheader(c, i) sendto_one((c), HeaderMessages[(i)], me.name) |
81 |
> |
#define sendheader(c, i) sendto_one_notice((c), &me, HeaderMessages[(i)]) |
82 |
|
|
83 |
|
static dlink_list auth_doing_list = { NULL, NULL, 0 }; |
84 |
|
|