1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-12 14:14:48 +02:00

irc: add tags "irc_cap" and "log3" in client capability request and SASL not supported messages

This commit is contained in:
Sébastien Helleu
2025-11-22 16:00:32 +01:00
parent c2ff484995
commit 953ede1200
2 changed files with 5 additions and 4 deletions
+1
View File
@@ -29,6 +29,7 @@ SPDX-License-Identifier: GPL-3.0-or-later
- relay/api: return an error 401 (Unauthorized) when header "x-weechat-totp" has an invalid value
- xfer: add buffer local variable "server" in DCC CHAT buffers
- core, irc, relay: add tag "tls" in gnutls messages
- irc: add tags "irc_cap" and "log3" in client capability request and SASL not supported messages
- build: require Curl ≥ 7.68.0 ([#2268](https://github.com/weechat/weechat/issues/2268))
- build: require GnuTLS ≥ 3.6.3 ([#2268](https://github.com/weechat/weechat/issues/2268))
- build: require libgcrypt ≥ 1.8.0 ([#2268](https://github.com/weechat/weechat/issues/2268))
+4 -4
View File
@@ -829,8 +829,8 @@ irc_protocol_cap_sync_req (struct t_irc_server *server,
ptr_caps_req = (new_caps_req) ? new_caps_req : caps_req;
if (ptr_caps_req && ptr_caps_req[0])
{
weechat_printf (
server->buffer,
weechat_printf_date_tags (
server->buffer, 0, "irc_cap,log3",
_("%s%s: client capability, requesting: %s"),
weechat_prefix ("network"), IRC_PLUGIN_NAME,
ptr_caps_req);
@@ -918,8 +918,8 @@ irc_protocol_cap_sync (struct t_irc_server *server, int sasl, int cap_new_receiv
irc_server_sendf (server, 0, NULL, "CAP END");
if (sasl_requested && !sasl_to_do && !cap_new_received)
{
weechat_printf (
server->buffer,
weechat_printf_date_tags (
server->buffer, 0, "irc_cap,log3",
_("%s%s: client capability: SASL not supported"),
weechat_prefix ("network"), IRC_PLUGIN_NAME);