diff options
| author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-07-28 00:04:19 +0200 | 
|---|---|---|
| committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-07-28 00:04:19 +0200 | 
| commit | f6f5eee77be1a91563da38337bb80b04cb2ae071 (patch) | |
| tree | b77471103840b98a6d351bd09d275cb64b84d8a2 /irc.h | |
| parent | 82ca98619fc6fbef41de7235b5cc930961ef0cc0 (diff) | |
Source documentation update, including a short HACKING file.
Diffstat (limited to 'irc.h')
| -rw-r--r-- | irc.h | 9 | 
1 files changed, 5 insertions, 4 deletions
| @@ -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; | 
