From: Valentine Krasnobaeva Date: Tue, 9 Jul 2024 12:01:51 +0000 (+0200) Subject: MINOR: defaults: update MASTER_MAXCONN description X-Git-Tag: v3.1-dev10~45 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fb7bef781db1ff64e03652659dd1d0dd5399d547;p=thirdparty%2Fhaproxy.git MINOR: defaults: update MASTER_MAXCONN description This is a one of the commits to prepare the removal of MODE_MWORKER_WAIT support, as it became redundant with MODE_MWORKER due to moving master-worker fork in init(). --- diff --git a/include/haproxy/defaults.h b/include/haproxy/defaults.h index baafe219c0..88ab35b467 100644 --- a/include/haproxy/defaults.h +++ b/include/haproxy/defaults.h @@ -322,11 +322,9 @@ #define DEFAULT_MAXFD 1048576 #endif -/* Define a maxconn which will be used in the master process once it re-exec to - * the MODE_MWORKER_WAIT and won't change when SYSTEM_MAXCONN is set. - * - * 100 must be enough for the master since it only does communication between - * the master and the workers, and the master CLI. +/* Define a maxconn which will be used in the master process and won't change + * when SYSTEM_MAXCONN is set. 100 must be enough for the master since it only + * does communication between the master and the workers, and the master CLI. */ #ifndef MASTER_MAXCONN #define MASTER_MAXCONN 100