diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2014-01-23 19:11:35 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2014-01-23 19:11:35 +0000 |
commit | 3408dd8c218a267139d9c4d64e3c6eb90502373a (patch) | |
tree | f822abd81f37ed9a93992f9765b03a0e1dc11f12 /include | |
parent | 4794646cb6c696141411a34f2359d255e5ad9bad (diff) |
- Implemented "userhost-in-names" client capability
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@2911 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'include')
-rw-r--r-- | include/client.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/client.h b/include/client.h index ad9c69b..6f9ffdc 100644 --- a/include/client.h +++ b/include/client.h @@ -99,9 +99,11 @@ struct MaskItem; #define CAP_MULTI_PREFIX 0x00000001 #define CAP_AWAY_NOTIFY 0x00000002 +#define CAP_UHNAMES 0x00000004 #define HasCap(x, y) ((x)->localClient->cap_active & (y)) + /* housekeeping flags */ #define FLAGS_PINGSENT 0x00000001 /**< Unreplied ping sent */ #define FLAGS_DEADSOCKET 0x00000002 /**< Local socket is dead--Exiting soon */ |