summaryrefslogtreecommitdiff
path: root/src/core/misc.h
diff options
context:
space:
mode:
authorSebastian Thorarensen <sebth@naju.se>2014-06-13 06:39:02 +0200
committerSebastian Thorarensen <sebth@naju.se>2014-07-06 23:24:09 +0200
commite6147fb8f2764392dd685fd8b28f1d69527609cd (patch)
treef24e6037b6bd3ac4b1d73949e0f82325a31e26ac /src/core/misc.h
parent43baf71efd8d7323a2d6ae939c3c6350fef70f72 (diff)
downloadirssi-e6147fb8f2764392dd685fd8b28f1d69527609cd.zip
Properly split long IRC messages
This commit adds handling of long IRC messages to the core. In contrast to the `splitlong.pl' plugin, multi-byte encoded and recoded messages are properly split. To allow for this, a new function has been added to the server struct: `split_message'. `split_message' returns a string array with the message splitted to substrings of a length that the server can handle. If a protocol module doesn't have any limit, it can simply return a singleton array with a copy of the message. The `MSG' chat command now calls `split_message' before `send_message', and emits `message own_public' / `message own_private' with each substring, so that the string splitting will be visible in the UI. `split_message' in the IRC module uses `recode_split' which in turn uses iconv to properly split multi-byte encoded (and recoded) messages.
Diffstat (limited to 'src/core/misc.h')
-rw-r--r--src/core/misc.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/misc.h b/src/core/misc.h
index 2cb8e66a..8fb5078f 100644
--- a/src/core/misc.h
+++ b/src/core/misc.h
@@ -115,4 +115,7 @@ uoff_t str_to_uofft(const char *str);
/* find `item' from a space separated `list' */
int find_substr(const char *list, const char *item);
+/* split `str' into `len' sized substrings */
+char **strsplit_len(const char *str, int len);
+
#endif