| 306 |
|
++ServerStats.is_ref; |
| 307 |
|
sendto_one_notice(source_p, &me, ":*** Notice -- You need to install " |
| 308 |
|
"identd to use this server"); |
| 309 |
< |
exit_client(source_p, &me, "Install identd"); |
| 309 |
> |
exit_client(source_p, "Install identd"); |
| 310 |
|
return; |
| 311 |
|
} |
| 312 |
|
|
| 332 |
|
++ServerStats.is_ref; |
| 333 |
|
|
| 334 |
|
sendto_one_numeric(source_p, &me, ERR_PASSWDMISMATCH); |
| 335 |
< |
exit_client(source_p, &me, "Bad Password"); |
| 335 |
> |
exit_client(source_p, "Bad Password"); |
| 336 |
|
return; |
| 337 |
|
} |
| 338 |
|
} |
| 363 |
|
"Too many clients, rejecting %s[%s].", |
| 364 |
|
source_p->name, source_p->host); |
| 365 |
|
++ServerStats.is_ref; |
| 366 |
< |
exit_client(source_p, &me, "Sorry, server is full - try later"); |
| 366 |
> |
exit_client(source_p, "Sorry, server is full - try later"); |
| 367 |
|
return; |
| 368 |
|
} |
| 369 |
|
|
| 378 |
|
++ServerStats.is_ref; |
| 379 |
|
snprintf(tmpstr2, sizeof(tmpstr2), "Invalid username [%s]", |
| 380 |
|
source_p->username); |
| 381 |
< |
exit_client(source_p, &me, tmpstr2); |
| 381 |
> |
exit_client(source_p, tmpstr2); |
| 382 |
|
return; |
| 383 |
|
} |
| 384 |
|
|
| 479 |
|
kill_client(source_p->from, source_p, "%s (Server doesn't exist)", me.name); |
| 480 |
|
|
| 481 |
|
AddFlag(source_p, FLAGS_KILLED); |
| 482 |
< |
exit_client(source_p, &me, "Ghosted Client"); |
| 482 |
> |
exit_client(source_p, "Ghosted Client"); |
| 483 |
|
return; |
| 484 |
|
} |
| 485 |
|
|
| 494 |
|
"%s (NICK from wrong direction (%s != %s))", |
| 495 |
|
me.name, source_p->servptr->name, target_p->from->name); |
| 496 |
|
AddFlag(source_p, FLAGS_KILLED); |
| 497 |
< |
exit_client(source_p, &me, "USER server wrong direction"); |
| 497 |
> |
exit_client(source_p, "USER server wrong direction"); |
| 498 |
|
return; |
| 499 |
|
} |
| 500 |
|
|
| 1126 |
|
source_p->sockhost); |
| 1127 |
|
|
| 1128 |
|
++ServerStats.is_ref; |
| 1129 |
< |
exit_client(source_p, &me, "Bad user info"); |
| 1129 |
> |
exit_client(source_p, "Bad user info"); |
| 1130 |
|
return 1; |
| 1131 |
|
} |
| 1132 |
|
|