aboutsummaryrefslogtreecommitdiffstats
path: root/irc.h
diff options
context:
space:
mode:
Diffstat (limited to 'irc.h')
-rw-r--r--irc.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/irc.h b/irc.h
index 69f9dfd0..bbfeed82 100644
--- a/irc.h
+++ b/irc.h
@@ -44,10 +44,11 @@
typedef enum
{
USTATUS_OFFLINE = 0,
- USTATUS_AUTHORIZED = 1,
- USTATUS_LOGGED_IN = 2,
- USTATUS_IDENTIFIED = 4,
- USTATUS_SHUTDOWN = 8
+ USTATUS_AUTHORIZED = 1, /* Gave the correct server password (PASS). */
+ USTATUS_LOGGED_IN = 2, /* USER+NICK(+PASS) finished. */
+ USTATUS_IDENTIFIED = 4, /* To NickServ (root). */
+ USTATUS_SHUTDOWN = 8, /* Now used to indicate we're shutting down.
+ Currently just blocks irc_vawrite(). */
} irc_status_t;
struct irc_user;