Hook up source-account-hostmask client protocol extension.
This commit is contained in:
parent
f02f338b31
commit
c239b97f68
2 changed files with 3 additions and 1 deletions
|
@ -443,6 +443,7 @@ struct ListClient
|
|||
|
||||
#define CLICAP_MULTI_PREFIX 0x0001
|
||||
#define CLICAP_SASL 0x0002
|
||||
#define CLICAP_ACCOUNT_HOSTMASK 0x0004
|
||||
|
||||
/*
|
||||
* flags macros.
|
||||
|
|
|
@ -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))
|
||||
|
|
Loading…
Reference in a new issue