aboutsummaryrefslogtreecommitdiffstats
path: root/irc.h
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2010-07-28 00:04:19 +0200
committerWilmer van der Gaast <wilmer@gaast.net>2010-07-28 00:04:19 +0200
commitf6f5eee77be1a91563da38337bb80b04cb2ae071 (patch)
treeb77471103840b98a6d351bd09d275cb64b84d8a2 /irc.h
parent82ca98619fc6fbef41de7235b5cc930961ef0cc0 (diff)
Source documentation update, including a short HACKING file.
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;