summaryrefslogtreecommitdiff
path: root/src/plugins/relay
AgeCommit message (Collapse)Author
2024-05-05relay/api: fix read of buffer lines when lines parameter is LONG_MINSébastien Helleu
2024-05-05relay/api: reply to preflight request OPTIONS received from browsers (CORS)Sébastien Helleu
This adds the support of Cross-Origin Resource Sharing (CORS) in the relay HTTP API.
2024-05-04relay/api: send all nicks when a buffer is openedSébastien Helleu
2024-05-04relay/remote: run callback based on event name instead of body typeSébastien Helleu
2024-05-04relay/remote: clear remote buffer when event "buffer_cleared" is receivedSébastien Helleu
2024-05-04relay/remote: fix close of remote bufferSébastien Helleu
2024-05-04relay/remote: fix alignment of variable in debug print to log fileSébastien Helleu
2024-05-04relay/remote: do not display error if the buffer is not found in a line/nick ↵Sébastien Helleu
event
2024-05-03relay/api: do not relay any signal received on a relay bufferSébastien Helleu
This fixes a creation of multiple fset buffers on remote when /fset is used on the server.
2024-05-02relay: fix use of uninitialized variable "ptr_buffer"Sébastien Helleu
2024-05-02relay: remove unused variable "i"Sébastien Helleu
2024-05-01relay/remote: set buffer local keys (issue #2066)Sébastien Helleu
2024-05-01relay/api: add buffer keys in GET /api/buffers (issue #2066)Sébastien Helleu
2024-05-01relay/remote: display lines on buffers with free content (issue #2066)Sébastien Helleu
2024-05-01relay: add option relay.api.remote_get_lines (issue #2066)Sébastien Helleu
2024-04-30relay/api: add support of nicklist in remote buffersSébastien Helleu
2024-04-29relay/api: add color names for groups and nicks in GET /api/buffersSébastien Helleu
2024-04-29relay/api: add nicklist boolean fields in GET /api/buffersSébastien Helleu
2024-04-29relay/api: rename field "nicklist" to "nicklist_root" in GET /api/buffersSébastien Helleu
2024-04-26relay: remove check of NULL pointers before calling ↵Sébastien Helleu
relay_websocket_deflate_free() (issue #865)
2024-04-26relay: remove check of NULL pointers before calling relay_server_free() ↵Sébastien Helleu
(issue #865)
2024-04-26relay: remove check of NULL pointers before calling ↵Sébastien Helleu
relay_http_response_free() (issue #865)
2024-04-26relay: remove check of NULL pointers before calling ↵Sébastien Helleu
weechat_completion_free() (issue #865)
2024-04-26plugins: remove check of NULL pointers before calling ↵Sébastien Helleu
weechat_infolist_free() (issue #865)
2024-04-26plugins: remove check of NULL pointers before calling ↵Sébastien Helleu
weechat_config_option_free() (issue #865)
2024-04-26plugins: remove check of NULL pointers before calling ↵Sébastien Helleu
weechat_string_dyn_free() (issue #865)
2024-04-26plugins: remove check of NULL pointers before calling ↵Sébastien Helleu
weechat_string_free_split() (issue #865)
2024-04-26plugins: remove check of NULL pointers before calling ↵Sébastien Helleu
weechat_hashtable_free() (issue #865)
2024-04-26plugins: remove check of NULL pointers before calling weechat_unhook() ↵Sébastien Helleu
(issue #865)
2024-04-25relay: remove check of NULL pointers before calling free() (issue #865)Sébastien Helleu
2024-04-24relay: add final '\0' in body when parsing HTTP responseSébastien Helleu
This fixes tests on Debian GNU/Hurd.
2024-04-23relay: fix default value of remote optionsSébastien Helleu
2024-04-14relay: ignore unused parameter "gnutls_rc"Sébastien Helleu
2024-04-14relay: remove commented variableSébastien Helleu
2024-04-14relay: add connection with proxy to remoteSébastien Helleu
2024-04-14relay: remove commented codeSébastien Helleu
2024-04-14relay: add TLS connection to remote, add remote option "tls_verify"Sébastien Helleu
2024-04-14relay: add missing proxy in output of `/remote listfull <name>`Sébastien Helleu
2024-04-14relay: fix read of remote name in infolistSébastien Helleu
2024-04-14relay: add check and change callbacks for remote option "url"Sébastien Helleu
2024-04-14relay: fix memory leak when adding a new remoteSébastien Helleu
2024-04-10relay/api: fix reconnection to remote after disconnectionSébastien Helleu
2024-04-10relay/api: free hook_url_handshake when disconnecting from remoteSébastien Helleu
2024-04-10relay/api: add tags in lines displayed in remote buffersSébastien Helleu
2024-04-09relay/api: fix decoding of large websocket frames in remote client (closes ↵Sébastien Helleu
#2107)
2024-04-09relay/api: read data on socket only if connectedSébastien Helleu
2024-04-09relay/api: free frames after useSébastien Helleu
2024-04-09relay: free frames only if they were allocated by function ↵Sébastien Helleu
relay_websocket_decode_frame
2024-04-09relay: free all data in remoteSébastien Helleu
2024-04-08relay/api: use function asprintf in JSON send functionsSébastien Helleu