476 |
|
"No server %s for user %s[%s@%s] from %s", |
477 |
|
server, source_p->name, source_p->username, |
478 |
|
source_p->host, source_p->from->name); |
479 |
< |
kill_client(source_p->from, source_p, "%s (Server doesn't exist)", me.name); |
479 |
> |
sendto_one(source_p->from, |
480 |
> |
":%s KILL %s :%s (Ghosted, server %s doesn't exist)", |
481 |
> |
ID(&me), ID(source_p), me.name, server); |
482 |
|
|
483 |
|
AddFlag(source_p, FLAGS_KILLED); |
484 |
|
exit_client(source_p, "Ghosted Client"); |
492 |
|
source_p->from->name, source_p->name, source_p->username, |
493 |
|
source_p->host, source_p->servptr->name, |
494 |
|
target_p->name, target_p->from->name); |
495 |
< |
kill_client(source_p->from, source_p, |
496 |
< |
"%s (NICK from wrong direction (%s != %s))", |
497 |
< |
me.name, source_p->servptr->name, target_p->from->name); |
495 |
> |
sendto_one(source_p->from, |
496 |
> |
":%s KILL %s :%s (NICK from wrong direction (%s != %s))", |
497 |
> |
ID(&me), ID(source_p), me.name, source_p->servptr->name, |
498 |
> |
target_p->from->name); |
499 |
> |
|
500 |
|
AddFlag(source_p, FLAGS_KILLED); |
501 |
|
exit_client(source_p, "USER server wrong direction"); |
502 |
|
return; |