cap-notify: add cap-notify cap

This commit is contained in:
William Pitcock 2015-03-01 00:26:23 -06:00
parent 8f05076d50
commit 13de708352
2 changed files with 2 additions and 0 deletions

View file

@ -449,6 +449,7 @@ struct ListClient
#define CLICAP_AWAY_NOTIFY 0x0010
#define CLICAP_TLS 0x0020
#define CLICAP_USERHOST_IN_NAMES 0x0040
#define CLICAP_CAP_NOTIFY 0x0080
/*
* flags macros.

View file

@ -77,6 +77,7 @@ static struct clicap
_CLICAP("away-notify", CLICAP_AWAY_NOTIFY, 0, 0, 0),
_CLICAP("tls", CLICAP_TLS, 0, 0, 0),
_CLICAP("userhost-in-names", CLICAP_USERHOST_IN_NAMES, 0, 0, 0),
_CLICAP("cap-notify", CLICAP_CAP_NOTIFY, 0, 0, 0),
};
#define CLICAP_LIST_LEN (sizeof(clicap_list) / sizeof(struct clicap))