diff options
author | attilamolnar <attilamolnar@hush.com> | 2013-08-13 14:22:07 +0200 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2013-08-13 14:22:07 +0200 |
commit | 19cc8380fb9060add68852e40846b10e4d1f18f5 (patch) | |
tree | 8b8a60b706e66b8e4433da198c743b54d9730927 /include | |
parent | 37394a80c2b4a3948e4f0e850710c9518d9ba259 (diff) |
Store oper types and opers in separate containers
Diffstat (limited to 'include')
-rw-r--r-- | include/configreader.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include/configreader.h b/include/configreader.h index ee58c3bc9..2aab0a075 100644 --- a/include/configreader.h +++ b/include/configreader.h @@ -507,11 +507,14 @@ class CoreExport ServerConfig */ bool FullHostInTopic; - /** Oper block and type index. - * For anonymous oper blocks (type only), prefix with a space. + /** Oper blocks keyed by their name */ OperIndex oper_blocks; + /** Oper types keyed by their name + */ + OperIndex OperTypes; + /** Max channels per user */ unsigned int MaxChans; |