1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-07 00:45:41 +02:00

relay: fix slow send of data to clients when SSL is enabled

This commit is contained in:
Sébastien Helleu
2020-05-01 18:52:08 +02:00
parent b3478fa712
commit 5b4d690ed7
3 changed files with 243 additions and 191 deletions
+1
View File
@@ -42,6 +42,7 @@ Bug fixes::
* core: fix resize of a bar when its size is 0 (automatic) (issue #1470)
* fifo: fix errors when writing in the FIFO pipe (issue #713)
* python: fix crash when invalid UTF-8 string is in a WeeChat hashtable converted to a Python dict (issue #1463)
* relay: fix slow send of data to clients when SSL is enabled
* trigger: do not hide values of options with /set command in cmd_pass trigger
Documentation::
File diff suppressed because it is too large Load Diff
+1
View File
@@ -109,6 +109,7 @@ struct t_relay_client
time_t start_time; /* time of client connection */
time_t end_time; /* time of client disconnection */
struct t_hook *hook_fd; /* hook for socket or child pipe */
struct t_hook *hook_timer_send; /* timer to quickly flush outqueue */
time_t last_activity; /* time of last byte received/sent */
unsigned long long bytes_recv; /* bytes received from client */
unsigned long long bytes_sent; /* bytes sent to client */