degesch: support CASEMAPPING=rfc1459-strict
This commit is contained in:
@@ -5669,12 +5669,11 @@ static void
|
||||
irc_handle_isupport_casemapping (struct server *s, char *value)
|
||||
{
|
||||
if (!strcmp (value, "ascii"))
|
||||
irc_set_casemapping (s, tolower_ascii, tolower_ascii_strxfrm);
|
||||
irc_set_casemapping (s, tolower_ascii, tolower_ascii_strxfrm);
|
||||
else if (!strcmp (value, "rfc1459"))
|
||||
irc_set_casemapping (s, irc_tolower, irc_strxfrm);
|
||||
irc_set_casemapping (s, irc_tolower, irc_strxfrm);
|
||||
else if (!strcmp (value, "rfc1459-strict"))
|
||||
// TODO: implement
|
||||
irc_set_casemapping (s, irc_tolower, irc_strxfrm);
|
||||
irc_set_casemapping (s, irc_tolower_strict, irc_strxfrm_strict);
|
||||
}
|
||||
|
||||
static void
|
||||
|
||||
Reference in New Issue
Block a user