allow more max. number of clients to be connected to the server since with the new multithreaded implementation the capacity of the server should increase
This commit is contained in:
parent
f1abe15616
commit
91d99fbd81
1 changed files with 1 additions and 1 deletions
|
@ -180,7 +180,7 @@ LED bar: lbr
|
||||||
#define YELLOW_BOUND_LED_BAR 5
|
#define YELLOW_BOUND_LED_BAR 5
|
||||||
|
|
||||||
// maximum number of connected clients at the server (must not be larger than 256)
|
// maximum number of connected clients at the server (must not be larger than 256)
|
||||||
#define MAX_NUM_CHANNELS 50 // max number channels for server
|
#define MAX_NUM_CHANNELS 100 // max number channels for server
|
||||||
|
|
||||||
// actual number of used channels in the server
|
// actual number of used channels in the server
|
||||||
// this parameter can safely be changed from 1 to MAX_NUM_CHANNELS
|
// this parameter can safely be changed from 1 to MAX_NUM_CHANNELS
|
||||||
|
|
Loading…
Reference in a new issue