Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-09-28 | relay: add quotes in comment | Sébastien Helleu | |
2014-09-28 | relay: don't print ::ffff: in v4-mapped addresses. | Anders Bergh | |
2014-09-26 | relay: fix send of signals "relay_client_xxx" (closes #214) | Sébastien Helleu | |
The signals about relay client status changes were sent only when the client has ended. Now it is went on any status change. | |||
2014-08-29 | api: use microseconds instead of milliseconds in functions util_timeval_diff ↵ | Sébastien Helleu | |
and util_timeval_add | |||
2014-08-09 | relay: fix memory leak during handshake on websocket | Sébastien Helleu | |
2014-08-09 | relay: fix memory leak when receiving several lines from client (weechat ↵ | Sébastien Helleu | |
protocol) | |||
2014-08-09 | relay: fix memory leak when receiving commands from client (weechat protocol) | Sébastien Helleu | |
2014-08-09 | relay: remove dead assignment | Sébastien Helleu | |
2014-08-09 | relay: fix crash when an IRC "MODE" command is received from client without ↵ | Sébastien Helleu | |
arguments | |||
2014-08-02 | relay: fix number of bytes sent/received on 32-bit systems | Sébastien Helleu | |
2014-05-29 | relay: don't send signals "buffer_clear" and "buffer_line_added" for relay ↵ | Sébastien Helleu | |
raw/list buffers to clients (weechat protocol) | |||
2014-05-24 | relay: check pointers received in hdata command to prevent crashes with bad ↵ | Sébastien Helleu | |
pointers (WeeChat protocol) | |||
2014-05-24 | relay: remove warning on /reload of relay.conf when ports are defined | Sébastien Helleu | |
2014-05-08 | relay: add message "_buffer_cleared" | Sébastien Helleu | |
2014-05-08 | relay: reformat comment | Sébastien Helleu | |
2014-05-08 | relay: fix disconnection of client on empty websocket frames | Tor Hveem | |
WeeChat disconnects any client when a frame with length 0 is recieved. | |||
2014-05-07 | relay: add support of Internet Explorer websocket (closes #73) | Sébastien Helleu | |
2014-04-13 | relay: add signal "relay_client_auth_ok" for irc and weechat protocols | Sébastien Helleu | |
2014-04-12 | core: fix crash on "weechat --upgrade" if no .upgrade files are found | Sébastien Helleu | |
2014-04-12 | core: use lower case for CMake keywords | Sébastien Helleu | |
2014-04-05 | relay: add messages "_buffer_hidden" and "_buffer_unhidden" | Sébastien Helleu | |
2014-04-03 | core: close .upgrade files before deleting them after /upgrade | Sébastien Helleu | |
2014-03-19 | core: fix use of reserved C identifiers in headers (closes #31) | Sebastien Helleu | |
2014-03-11 | relay: search buffers by full name | Sebastien Helleu | |
2014-03-07 | relay: fix crash on /upgrade received from a client (weechat protocol) | Sebastien Helleu | |
Some commands like /upgrade sent by relay client can cause problems, because they were executed immediately (while relay code is running). The /upgrade command unloads all plugins, so the result is unpredictable (it can cause a crash). This commit adds a timer (1 millisecond) to delay the execution of command after we go back in the WeeChat main loop. | |||
2014-03-05 | relay: add info "relay_client_count" with optional status name as argument | Sebastien Helleu | |
Use in evaluated strings (for example in /eval or triggers): - "${info:relay_client_count}": total number of relay clients (any status) With a specific status: - "${info:relay_client_count,connecting}" - "${info:relay_client_count,waiting_auth}" - "${info:relay_client_count,connected}" - "${info:relay_client_count,auth_failed}" - "${info:relay_client_count,disconnected}" | |||
2014-03-05 | relay: add signals "relay_client_xxx" for client status changes (closes #2) | Sebastien Helleu | |
New signals: - relay_client_connecting - relay_client_waiting_auth - relay_client_connected - relay_client_auth_failed - relay_client_disconnected | |||
2014-02-28 | relay: fix size used in a snprintf | Sebastien Helleu | |
2014-02-23 | relay: add option relay.network.clients_purge_delay | Sebastien Helleu | |
2014-02-23 | relay: fix freeze after /upgrade when many disconnected clients still exist | Sebastien Helleu | |
The hooks for the WeeChat disconnected clients are not created again after /upgrade (they were removed on client disconnection, so there is no reason to create them again). The hooks like nicklist sync are called often (for example on irc disconnection), which can cause long freeze if many WeeChat disconnected clients exist in relay. | |||
2014-02-22 | relay: remove dead assignment in function relay_client_recv_cb | Sebastien Helleu | |
2014-02-22 | relay: remove dead assignment in function relay_irc_get_line_info | Sebastien Helleu | |
2014-02-22 | relay: fix NULL pointer when reading buffer lines for irc backlog | Sebastien Helleu | |
2014-02-21 | relay: return WEECHAT_RC_ERROR in command /relay if arguments are wrong/missing | Sebastien Helleu | |
2014-02-10 | api: add integer return code for functions hook_{signal|hsignal}_send | Sebastien Helleu | |
2014-01-31 | relay: send backlog for irc private buffers | Sebastien Helleu | |
2014-01-18 | core: reformat hook_command arguments | Sebastien Helleu | |
2014-01-09 | core: add "POSIX extended" in description of options/commands/functions ↵ | Sebastien Helleu | |
using regular expressions | |||
2014-01-09 | relay: fix memory leak on unload of relay plugin | Sebastien Helleu | |
2014-01-05 | core: fix crash with hdata_update on shared strings, add hdata type ↵ | Sebastien Helleu | |
"shared_string" (bug #41104) | |||
2014-01-01 | core: update copyright dates | Sebastien Helleu | |
2013-12-22 | relay: use syntax \xNN instead of \NN for control chars in raw buffer | Sebastien Helleu | |
2013-11-09 | relay: load plugin even if options can not be read in relay.conf (with warnings) | Sebastien Helleu | |
2013-10-05 | core: move the "-no-undefined" from LDFLAGS in configure.ac to Makefile.am ↵ | Sebastien Helleu | |
in plugins This "-no-undefined" was causing an error when detecting "ld" lib on Cygwin. | |||
2013-10-05 | relay: fix decoding of websocket frames when there are multiple frames in a ↵ | Sebastien Helleu | |
single message received (only the first one was decoded) | |||
2013-09-19 | relay: add support of secured data in option relay.network.password ↵ | Sebastien Helleu | |
(evaluate content) (patch from Nils Görs) | |||
2013-07-20 | core: replace obsolete INCLUDES by AM_CPPFLAGS in files Makefile.am | Sebastien Helleu | |
2013-07-11 | core: sort config options by name in sources | Sebastien Helleu | |
2013-06-09 | relay: add command "ping" in weechat protocol (task #12689) | Sebastien Helleu | |
2013-05-30 | relay: fix binding to an IP address (bug #39119) | Mantas Mikulėnas | |