From d0b4e88c50caa2c5785a31b9ef13c8f27c8639bc Mon Sep 17 00:00:00 2001 From: gixxpunk Date: Tue, 11 Jul 2017 18:21:27 +0200 Subject: [PATCH] increase HTTPD_MAX_CONNECTIONS to 50 This fixes crashes/problems caused by FHEM plugins. https://forum.fhem.de/index.php/topic,54481.msg460625.html#msg460625 Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/873d056d2e6fcd990c712339cf5eafe16040f3d4 Author: gixxpunk Date: 2017-07-11 (Tue, 11 Jul 2017) Origin message was: ------------------ - increase HTTPD_MAX_CONNECTIONS to 50 This fixes crashes/problems caused by FHEM plugins. https://forum.fhem.de/index.php/topic,54481.msg460625.html#msg460625 ------------------ This commit was generated by Migit --- src/nhttpd/yconfig.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nhttpd/yconfig.h b/src/nhttpd/yconfig.h index d3444671a..01eaecb32 100644 --- a/src/nhttpd/yconfig.h +++ b/src/nhttpd/yconfig.h @@ -90,7 +90,7 @@ #undef HTTPD_NAME #define HTTPD_NAME "nhttpd" #define HTTPD_STANDARD_PORT 80 -#define HTTPD_MAX_CONNECTIONS 10 +#define HTTPD_MAX_CONNECTIONS 50 #define HTTPD_REQUEST_LOG "/tmp/httpd_log" #define SSL_PEMFILE HTTPD_CONFIGDIR "/server.pem" #define SSL_CA_FILE HTTPD_CONFIGDIR "/cacert.pem"