0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-07-28 05:18:59 +02:00

Hook up source-account-hostmask client protocol extension.

This commit is contained in:
William Pitcock 2010-04-06 17:14:44 -05:00
parent f02f338b31
commit c239b97f68
2 changed files with 3 additions and 1 deletions

View file

@ -443,6 +443,7 @@ struct ListClient
#define CLICAP_MULTI_PREFIX 0x0001
#define CLICAP_SASL 0x0002
#define CLICAP_ACCOUNT_HOSTMASK 0x0004
/*
* flags macros.

View file

@ -69,7 +69,8 @@ static struct clicap
int namelen;
} clicap_list[] = {
_CLICAP("multi-prefix", CLICAP_MULTI_PREFIX, 0, 0),
_CLICAP("sasl", CLICAP_SASL, 0, 0)
_CLICAP("sasl", CLICAP_SASL, 0, 0),
_CLICAP("source-account-hostmask", CLICAP_ACCOUNT_HOSTMASK, 0, 0),
};
#define CLICAP_LIST_LEN (sizeof(clicap_list) / sizeof(struct clicap))