Increased number of possible socket connections from 10 to 100

This commit is contained in:
Stefan Ritt 2014-10-23 09:22:53 +02:00
parent 214ac17c1b
commit 09ec13b966

View File

@ -28088,8 +28088,8 @@ void decode_post(char *logbook, LOGBOOK * lbs, const char *string, const char *b
/*------------------------------------------------------------------*/
#define N_MAX_CONNECTION 10
#define KEEP_ALIVE_TIME 60
#define N_MAX_CONNECTION 100
#define KEEP_ALIVE_TIME 60
int ka_sock[N_MAX_CONNECTION];
int ka_time[N_MAX_CONNECTION];