aboutsummaryrefslogtreecommitdiffstats
path: root/irc.h
diff options
context:
space:
mode:
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 45fe131f..f694420d 100644
--- a/irc.h
+++ b/irc.h
@@ -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;