diff options
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/levels.c | 1 | ||||
-rw-r--r-- | src/core/levels.h | 11 |
2 files changed, 7 insertions, 5 deletions
diff --git a/src/core/levels.c b/src/core/levels.c index 8618f340..e5b64887 100644 --- a/src/core/levels.c +++ b/src/core/levels.c @@ -40,6 +40,7 @@ static const char *levels[] = "INVITES", "NICKS", "DCC", + "DCCMSGS", "CLIENTNOTICES", "CLIENTCRAP", "CLIENTERRORS", diff --git a/src/core/levels.h b/src/core/levels.h index ccaf6daa..ad4bcf05 100644 --- a/src/core/levels.h +++ b/src/core/levels.h @@ -24,12 +24,13 @@ #define MSGLEVEL_INVITES 0x0004000 #define MSGLEVEL_NICKS 0x0008000 #define MSGLEVEL_DCC 0x0010000 -#define MSGLEVEL_CLIENTNOTICE 0x0020000 -#define MSGLEVEL_CLIENTCRAP 0x0040000 -#define MSGLEVEL_CLIENTERROR 0x0080000 -#define MSGLEVEL_HILIGHT 0x0100000 +#define MSGLEVEL_DCCMSGS 0x0020000 +#define MSGLEVEL_CLIENTNOTICE 0x0040000 +#define MSGLEVEL_CLIENTCRAP 0x0080000 +#define MSGLEVEL_CLIENTERROR 0x0100000 +#define MSGLEVEL_HILIGHT 0x0200000 -#define MSGLEVEL_ALL 0x01fffff +#define MSGLEVEL_ALL 0x03fffff #define MSGLEVEL_NOHILIGHT 0x1000000 /* Don't try to hilight words in this message */ #define MSGLEVEL_NO_ACT 0x2000000 /* Don't trigger channel activity */ |