mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 12:53:42 +02:00
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.
This commit is contained in:
parent
43baf71efd
commit
e6147fb8f2
7 changed files with 147 additions and 5 deletions
|
|
@ -966,3 +966,20 @@ char *ascii_strdown(char *str)
|
|||
*s = g_ascii_tolower (*s);
|
||||
return str;
|
||||
}
|
||||
|
||||
char **strsplit_len(const char *str, int len)
|
||||
{
|
||||
char **ret;
|
||||
int n = strlen(str) / len;
|
||||
int i;
|
||||
|
||||
if (strlen(str) % len)
|
||||
n++;
|
||||
|
||||
ret = g_new(char *, n + 1);
|
||||
for (i = 0; i < n; i++, str += len)
|
||||
ret[i] = g_strndup(str, len);
|
||||
ret[n] = NULL;
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue