- Timestamp:
- 2010-06-26T21:26:41Z (14 years ago)
- Branches:
- master
- Children:
- e907683
- Parents:
- 41d415b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
irc.h
r41d415b r92c8d41 66 66 struct irc_user *user; 67 67 68 char *last_root_cmd; 68 char *last_root_cmd; /* Either the nickname from which the last root 69 msg came, or the last channel root was talked 70 to. */ 69 71 70 72 char *password; /* HACK: Used to save the user's password, but before … … 80 82 struct irc_channel *default_channel; 81 83 GHashTable *nick_user_hash; 82 GHashTable *watches; 84 GHashTable *watches; /* See irc_cmd_watch() */ 83 85 84 86 gint r_watch_source_id; … … 91 93 typedef enum 92 94 { 93 IRC_USER_PRIVATE = 1,95 /* Replaced with iu->last_channel IRC_USER_PRIVATE = 1, */ 94 96 IRC_USER_AWAY = 2, 95 97 } irc_user_flags_t; … … 108 110 109 111 irc_user_flags_t flags; 112 struct irc_channel *last_channel; 110 113 111 114 GString *pastebuf; /* Paste buffer (combine lines into a multiline msg). */
Note: See TracChangeset
for help on using the changeset viewer.