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
path: root/conf
diff options
context:
space:
mode:
authorDmitrijs Goloscapovs <dmitrijs.goloscapovs@zabbix.com>2021-07-23 13:22:34 +0300
committerDmitrijs Goloscapovs <dmitrijs.goloscapovs@zabbix.com>2021-07-23 14:19:55 +0300
commit1c70b9a37f8fc52990ecc15baaa067266ac3add5 (patch)
treee2ca73192870d454412afcb43521b73e3ecc22b0 /conf
parent0756e4c212c2aba79693b9e6837d10d34e6a9ded (diff)
........S. [ZBXNEXT-6773] added cmoka tests for count, small code style fixes
Diffstat (limited to 'conf')
-rw-r--r--conf/zabbix_agentd.conf11
-rw-r--r--conf/zabbix_agentd.win.conf11
-rw-r--r--conf/zabbix_proxy.conf10
-rw-r--r--conf/zabbix_server.conf11
4 files changed, 43 insertions, 0 deletions
diff --git a/conf/zabbix_agentd.conf b/conf/zabbix_agentd.conf
index 12afc725ed0..d1b370a18ab 100644
--- a/conf/zabbix_agentd.conf
+++ b/conf/zabbix_agentd.conf
@@ -511,3 +511,14 @@ Hostname=Zabbix server
# Mandatory: no
# Default:
# TLSCipherAll=
+
+####### For advanced users - TCP-related fine-tuning parameters #######
+
+## Option: ListenBacklog
+# The maximum number of pending connections in the queue. This parameter is passed to
+# listen() function as argument 'backlog' (see "man listen").
+#
+# Mandatory: no
+# Range: 0 - INT_MAX (depends on system, too large values may be silently truncated to implementation-specified maximum)
+# Default: SOMAXCONN (hard-coded constant, depends on system)
+# ListenBacklog=
diff --git a/conf/zabbix_agentd.win.conf b/conf/zabbix_agentd.win.conf
index 9b5a18539c6..9eeed1140c8 100644
--- a/conf/zabbix_agentd.win.conf
+++ b/conf/zabbix_agentd.win.conf
@@ -470,3 +470,14 @@ Hostname=Windows host
# Mandatory: no
# Default:
# TLSCipherAll=
+
+####### For advanced users - TCP-related fine-tuning parameters #######
+
+## Option: ListenBacklog
+# The maximum number of pending connections in the queue. This parameter is passed to
+# listen() function as argument 'backlog' (see "man listen").
+#
+# Mandatory: no
+# Range: 0 - INT_MAX (depends on system, too large values may be silently truncated to implementation-specified maximum)
+# Default: SOMAXCONN (hard-coded constant, depends on system)
+# ListenBacklog=
diff --git a/conf/zabbix_proxy.conf b/conf/zabbix_proxy.conf
index 8ba915f3d69..92c17bca205 100644
--- a/conf/zabbix_proxy.conf
+++ b/conf/zabbix_proxy.conf
@@ -901,3 +901,13 @@ StatsAllowedIP=127.0.0.1
# Default:
# VaultDBPath=
+####### For advanced users - TCP-related fine-tuning parameters #######
+
+## Option: ListenBacklog
+# The maximum number of pending connections in the queue. This parameter is passed to
+# listen() function as argument 'backlog' (see "man listen").
+#
+# Mandatory: no
+# Range: 0 - INT_MAX (depends on system, too large values may be silently truncated to implementation-specified maximum)
+# Default: SOMAXCONN (hard-coded constant, depends on system)
+# ListenBacklog=
diff --git a/conf/zabbix_server.conf b/conf/zabbix_server.conf
index 70d4077d47c..a2f16eb3135 100644
--- a/conf/zabbix_server.conf
+++ b/conf/zabbix_server.conf
@@ -917,3 +917,14 @@ StatsAllowedIP=127.0.0.1
# Mandatory: no
# Default:
# WebServiceURL=
+
+####### For advanced users - TCP-related fine-tuning parameters #######
+
+## Option: ListenBacklog
+# The maximum number of pending connections in the queue. This parameter is passed to
+# listen() function as argument 'backlog' (see "man listen").
+#
+# Mandatory: no
+# Range: 0 - INT_MAX (depends on system, too large values may be silently truncated to implementation-specified maximum)
+# Default: SOMAXCONN (hard-coded constant, depends on system)
+# ListenBacklog=