summaryrefslogtreecommitdiff
path: root/src/plugins/irc/irc-protocol.c
AgeCommit message (Collapse)Author
2019-05-14irc: fix crash when the nick in incoming message is not found in channelSébastien Helleu
2019-05-12irc: rename server variable "nick_host" to "host"Sébastien Helleu
2019-05-10irc: add variable "nick_host" in server structureSébastien Helleu
2019-05-10irc: fix parsing of MODE command when there are colons after the first mode ↵Sébastien Helleu
argument (closes #1296)
2019-04-13api: return allocated string in hook_info callback and function info_getSébastien Helleu
2019-03-18irc: fix update of channels modes with arguments when joining a channel ↵Sébastien Helleu
(closes #1324)
2019-03-10core: replace argument "keep_eol" by "flags" in function string_split ↵Sébastien Helleu
(closes #1322)
2019-02-28irc: quote argument to NICKMatthew Martin
2019-01-31irc: fix crash in parsing of IRC channel modes (issue #1296, closes #1297)Sébastien Helleu
Regression was introduced by commit b38b2abe3b397af1133951fb5326cc5cbb80807e.
2019-01-29irc: fix parsing of MODE, 341 (invite) and CHGHOST commands when there are ↵Sébastien Helleu
colons (closes #1296)
2019-01-13irc: do not use strptime to parse a time as float number (issue #1289)Sébastien Helleu
2019-01-13irc: check return code of calls to strptime (issue #1289)Sébastien Helleu
2019-01-11irc: fix parsing of "time" message tag on FreeBSD (issue #1289)Sébastien Helleu
2019-01-01core: update copyright datesSébastien Helleu
2018-12-01core: use https for links in commentsSébastien Helleu
2018-11-29core: use https for links to GNU GPL licenseSébastien Helleu
2018-10-21irc: fix uninitialized variables in function irc_protocol_cap_syncSébastien Helleu
2018-10-01irc: remove useless test on argcSébastien Helleu
2018-07-11irc: add nick, host and log tags in message displayed in private buffer when ↵Sébastien Helleu
the nick comes back on the server (closes #1221)
2018-06-24irc: add channel color in message 354 with missing parameters (issue #1212)Sébastien Helleu
2018-06-24irc: do not display message 354 with missing parameters if there's an ↵Sébastien Helleu
automatic check of WHOX on the channel (issue #1212)
2018-06-23irc: display message 354 (WHOX) received with missing parameters (closes #1212)Sébastien Helleu
2018-05-21irc: update ircv3 URLs in commentsSébastien Helleu
2018-05-21irc: display an error if memory can not be allocated in chghost callbackSébastien Helleu
2018-05-21Merge remote-tracking branch 'origin/pr/640'Sébastien Helleu
2018-05-20irc: add space before capability only if the string is not emptySébastien Helleu
2018-05-20irc: add missing space between capabilities in display of supported/enabled ↵Sébastien Helleu
capabilities
2018-05-20Merge remote-tracking branch 'origin/pr/639'Sébastien Helleu
2018-05-20irc: replace calls to sprintf by snprintfSébastien Helleu
2018-05-20irc: use dynamic string functions to display supported/enabled capabilitiesSébastien Helleu
2018-05-20irc: fix code styleSébastien Helleu
2018-05-20Merge remote-tracking branch 'origin/pr/623' into irc-3.2-capSébastien Helleu
2018-04-02irc: always set nick away status on WHO response (sent manually or ↵Sébastien Helleu
automatically with server option "away_check")
2018-03-25irc: send whole IRC message including IRCv3 tags in the signals irc_in, ↵Sébastien Helleu
irc_in2, irc_raw_in and irc_raw_in2 (issue #787)
2018-03-25irc: factorize code to set state of modelists in a channelSébastien Helleu
2018-03-24irc: clear the modelist if nothing was received before the end of list ↵Sébastien Helleu
(invite/exception/ban/quiet)
2018-03-24irc: fix messages on exception to make them easier to translateSébastien Helleu
2018-03-24irc: fix some stylesSébastien Helleu
2018-03-24irc: add indexed ban list, add completion for /unban and /unquiet (closes ↵Simmo Saan
#597, task #11374, task #10876)
2018-02-05irc: allow ${irc_server.xxx} and ${server} in server evaluated options ↵Sébastien Helleu
(closes #1144) The server option "ssl_fingerprint" is now evaluated when it is used (during SSL connection), instead of when it is set with command /set.
2018-01-07core: fix some stylesSébastien Helleu
2018-01-05core: update copyright datesSébastien Helleu
2017-11-05irc: add smart filtering for chghost messagesSimmo Saan
2017-11-05irc: display chghost messages in buffersSimmo Saan
2017-11-05irc: add support for IRCv3.2 chghostSimmo Saan
2017-06-17irc: add support for IRCv3.2 Client Capability Negotiation (closes #586)Simmo Saan
2017-06-17irc: add hashtables to keep track of all capabilitiesSimmo Saan
2017-03-25irc: send signal "irc_server_lag_changed", store lag in server bufferSébastien Helleu
The lag is stored in the local variable "lag" of the server buffer. When there is no lag, the local variable does not exist.
2017-02-19irc: fix parsing of message 324 (modes) when there is a colon before the ↵Sébastien Helleu
modes (closes #913)
2017-01-01Merge pull request #876 from sim642/switch-join-forwardedSébastien Helleu
irc: fix buffer switching on manual join for forwarded channels