215 |
|
* identifing process fail, it is aborted and the user is given a username |
216 |
|
* of "unknown". |
217 |
|
*/ |
218 |
< |
static int |
218 |
> |
static void |
219 |
|
start_auth_query(struct AuthRequest *auth) |
220 |
|
{ |
221 |
|
struct irc_ssaddr localaddr; |
229 |
|
report_error(L_ALL, "creating auth stream socket %s:%s", |
230 |
|
get_client_name(auth->client, SHOW_IP), errno); |
231 |
|
++ServerStats.is_abad; |
232 |
< |
return 0; |
232 |
> |
return; |
233 |
|
} |
234 |
|
|
235 |
|
SetDoingAuth(auth); |
252 |
|
(struct sockaddr *)&localaddr, localaddr.ss_len, auth_connect_callback, |
253 |
|
auth, auth->client->connection->ip.ss.ss_family, |
254 |
|
GlobalSetOptions.ident_timeout); |
255 |
– |
return 1; /* We suceed here for now */ |
255 |
|
} |
256 |
|
|
257 |
|
/* |