Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladislavs Sokurenko <vladislavs.sokurenko@zabbix.com>2021-09-23 18:17:46 +0300
committerVladislavs Sokurenko <vladislavs.sokurenko@zabbix.com>2021-09-23 18:17:46 +0300
commit81ae0b94d305d1546a3960d5c7befb55bcf34a47 (patch)
tree8cb8368144a66e9012a04d4d54d55f4251140717 /include/comms.h
parent98648704b5a58f38f366e2167c7570951ab4d2db (diff)
...G...... [ZBXNEXT-6923] pass connection timeout as separate parameter
Diffstat (limited to 'include/comms.h')
-rw-r--r--include/comms.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/comms.h b/include/comms.h
index 3af5480ebd5..7a923e0ed2d 100644
--- a/include/comms.h
+++ b/include/comms.h
@@ -200,7 +200,7 @@ int zbx_send_response_ext(zbx_socket_t *sock, int result, const char *info, cons
int zbx_recv_response(zbx_socket_t *sock, int timeout, char **error);
int connect_to_server(zbx_socket_t *sock, const char *source_ip, zbx_vector_ptr_t *addrs, int timeout,
- unsigned int tls_connect, int retry_interval);
+ int connect_timeout, unsigned int tls_connect, int retry_interval);
void disconnect_server(zbx_socket_t *sock);
int get_data_from_server(zbx_socket_t *sock, char **buffer, size_t buffer_size, size_t reserved, char **error);