0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-10-06 07:38:52 +02:00

authd: tag rejection type.

This commit is contained in:
Elizabeth Myers 2016-03-10 11:27:07 -06:00
parent c2222d7e9a
commit df32819e04

View file

@ -142,8 +142,26 @@ void provider_done(struct auth_client *auth, provider_t id)
void reject_client(struct auth_client *auth, provider_t id, const char *reason)
{
uint16_t cid = auth->cid;
char reject;
rb_helper_write(authd_helper, "R %x :%s", auth->cid, reason);
switch(id)
{
case PROVIDER_RDNS:
reject = 'D';
break;
case PROVIDER_IDENT:
reject = 'I';
break;
case PROVIDER_BLACKLIST:
reject = 'B';
break;
case PROVIDER_NULL:
default:
reject = 'N';
break;
}
rb_helper_write(authd_helper, "R %x %c :%s", auth->cid, reject, reason);
unset_provider(auth, id);