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:
@@ -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::
|
||||
|
||||
+241
-191
File diff suppressed because it is too large
Load Diff
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user