Skip to content
Snippets Groups Projects
Commit 634e733d authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Increase default MAX_CLIENTS value from 10 to 100 clients

It is almost 2024 after all. :-)
parent 33bbb7c6
No related branches found
No related tags found
No related merge requests found
...@@ -29,7 +29,7 @@ typedef struct { ...@@ -29,7 +29,7 @@ typedef struct {
STARTUP_COMMON_ELEMENTS STARTUP_COMMON_ELEMENTS
uint16_t port; uint16_t port;
uint16_t max_clients; uint16_t max_clients;
#define FTP_DEFAULT_MAX_CLIENTS 10 #define FTP_DEFAULT_MAX_CLIENTS 100
uint16_t max_inactivity; uint16_t max_inactivity;
#define FTP_DEFAULT_MAX_INACTIVITY 300 #define FTP_DEFAULT_MAX_INACTIVITY 300
uint16_t qwk_timeout; uint16_t qwk_timeout;
......
...@@ -34,7 +34,7 @@ typedef struct { ...@@ -34,7 +34,7 @@ typedef struct {
uint16_t submission_port; uint16_t submission_port;
uint16_t submissions_port; uint16_t submissions_port;
uint16_t max_clients; uint16_t max_clients;
#define MAIL_DEFAULT_MAX_CLIENTS 10 #define MAIL_DEFAULT_MAX_CLIENTS 100
uint16_t max_inactivity; uint16_t max_inactivity;
#define MAIL_DEFAULT_MAX_INACTIVITY 120 #define MAIL_DEFAULT_MAX_INACTIVITY 120
uint16_t max_delivery_attempts; uint16_t max_delivery_attempts;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment