aboutsummaryrefslogtreecommitdiffstats
path: root/irc.h
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2012-03-19 21:01:50 +0000
committerWilmer van der Gaast <wilmer@gaast.net>2012-03-19 21:01:50 +0000
commitfda194fe19a3e91b12387aeb9eda544580e48381 (patch)
tree7f0651fc729cdca3dd1bfcfd0c7e347a8d8e06d1 /irc.h
parentd18dee42088f0bef9d09dbc7903590d755d19a50 (diff)
Allow identify -noload/-force without typing a password. (/OPER)
Patch from trac3r, bug #814.
Diffstat (limited to 'irc.h')
-rw-r--r--irc.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/irc.h b/irc.h
index 930b90b3..97d56ea1 100644
--- a/irc.h
+++ b/irc.h
@@ -56,9 +56,11 @@ typedef enum
to logfiles) is the /OPER command, try to use that command for
stuff that matters. */
OPER_HACK_IDENTIFY = 0x100,
+ OPER_HACK_IDENTIFY_NOLOAD = 0x01100,
+ OPER_HACK_IDENTIFY_FORCE = 0x02100,
OPER_HACK_REGISTER = 0x200,
OPER_HACK_ACCOUNT_ADD = 0x400,
- OPER_HACK_ANY = 0x700, /* To check for them all at once. */
+ OPER_HACK_ANY = 0x3700, /* To check for them all at once. */
} irc_status_t;
struct irc_user;