summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-05-22core: fix delete of previous/next word (keys Ctrl+w and Alt+d) (closes #1195)Sébastien Helleu
2018-05-22core: unhook TLS handshake fd before calling connect callbackSimon Arlott
When there are multiple addresses for a server and a TLS handshake failure occurs, the next server in the list will connect and then timeout without performing any TLS handshake. This is because irc_server_close_connection closes server->sock so the next pipe to be created reuses that fd, but the hook for the handshake fd still exists when the next connection attempt is started. The hook for network_connect_child_read_cb is never added because a hook for the reused fd number still exists. Resolve this by removing the handshake hook before calling the connect callback.
2018-05-21irc: update ircv3 URLs in commentsSébastien Helleu
2018-05-21core: add issue #219 in ChangeLogSébastien Helleu
2018-05-21doc: update German auto-generated filesSébastien Helleu
2018-05-21core: add contributor in AUTHORS.adoc (issue #826)Sébastien Helleu
2018-05-21core: update ChangeLogSébastien Helleu
2018-05-21doc: add note about "list" options for curl in function ↵Sébastien Helleu
hook_process_hashtable (plugin API reference)
2018-05-21doc: add example of URL with custom HTTP headers in function ↵Sébastien Helleu
hook_process_hashtable (plugin API reference)
2018-05-21doc: update auto-generated files with URL optionsSébastien Helleu
2018-05-21build: fix path to auto-generated plugin API files in CMakeListsSébastien Helleu
2018-05-21core: use function string_split to split list itemsSébastien Helleu
2018-05-21core: uncomment CURL option PROXY_SSL_CIPHER_LISTSébastien Helleu
2018-05-21core: handle lists in hook_process_hashtable for urls (closes #219)Joseph Kichline
2018-05-21core: update German translationsNils Görs
2018-05-21core: update ChangeLogSébastien Helleu
2018-05-21core: update translationsSé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-20core: update ChangeLogSébastien Helleu
2018-05-20core: update translationsSébastien Helleu
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-20core: update ChangeLogSébastien Helleu
2018-05-20core: update translationsSébastien Helleu
2018-05-20doc: update auto-generated files with hdataSébastien Helleu
2018-05-20irc: use dynamic string functions to display supported/enabled capabilitiesSébastien Helleu
2018-05-20irc: add missing "cap_extended_join" in commentSébastien Helleu
2018-05-20irc: fix code styleSébastien Helleu
2018-05-20irc: do a case-sensitive comparison of CAP commandSébastien Helleu
2018-05-20core: remove unneeded commentSébastien Helleu
2018-05-20core: fix code style in function hashtable_add_from_infolistSébastien Helleu
2018-05-20core: return an error if the infolist has no pointer to current item in ↵Sébastien Helleu
function hashtable_add_from_infolist
2018-05-20doc: add translations for function hashtable_add_from_infolist (plugin API ↵Sébastien Helleu
reference)
2018-05-20doc: fix styles in plugin API referenceSébastien Helleu
2018-05-20irc: replace version x.y.z by 2.2 in commentSébastien Helleu
2018-05-20doc: replace version x.y.z by 2.2 in plugin API referenceSébastien Helleu
2018-05-20Merge remote-tracking branch 'origin/pr/623' into irc-3.2-capSébastien Helleu
2018-05-19doc: update German auto-generated filesSébastien Helleu
2018-05-19core: update German translationsNils Görs
2018-05-19buflist: add example of format for two bar items using a ternary operator in ↵Sébastien Helleu
/help buflist.format.buffer
2018-05-19irc: display current nick on connected servers in output of /server ↵Sébastien Helleu
list|listfull (closes #1193)
2018-05-19irc: remove unneeded check on variable posSébastien Helleu
2018-05-19relay: remove unneeded check on variable irc_argvSébastien Helleu
The variable "irc_argv" is always set if irc_argc > 0.
2018-05-19exec: fix minimal length of unquoted stringSébastien Helleu
2018-05-19core: remove unneeded test on variable argvSébastien Helleu
2018-05-19core: remove unused variableSébastien Helleu
2018-05-18script: fix memory leak in case of invalid XML content in list of scriptsSébastien Helleu