aboutsummaryrefslogtreecommitdiffstats
path: root/irc.h
diff options
context:
space:
mode:
Diffstat (limited to 'irc.h')
-rw-r--r--irc.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/irc.h b/irc.h
index f694420d..1bbb564a 100644
--- a/irc.h
+++ b/irc.h
@@ -108,8 +108,9 @@ typedef struct irc_user
irc_user_flags_t flags;
- GString *pastebuf;
+ GString *pastebuf; /* Paste buffer (combine lines into a multiline msg). */
guint pastebuf_timer;
+ time_t away_reply_timeout; /* Only send a 301 if this time passed. */
struct bee_user *bu;
@@ -145,10 +146,10 @@ typedef struct irc_channel
char *topic_who;
time_t topic_time;
- GSList *users;
+ GSList *users; /* struct irc_channel_user */
struct set *set;
- GString *pastebuf;
+ GString *pastebuf; /* Paste buffer (combine lines into a multiline msg). */
guint pastebuf_timer;
const struct irc_channel_funcs *f;