diff options
Diffstat (limited to 'irc.h')
-rw-r--r-- | irc.h | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -108,10 +108,8 @@ typedef struct irc_user irc_user_flags_t flags; - char *sendbuf; - int sendbuf_len; - guint sendbuf_timer; - //int sendbuf_flags; + GString *pastebuf; + guint pastebuf_timer; struct bee_user *bu; @@ -150,6 +148,9 @@ typedef struct irc_channel GSList *users; struct set *set; + GString *pastebuf; + guint pastebuf_timer; + const struct irc_channel_funcs *f; void *data; } irc_channel_t; |