NETSERVER_MAXCHANNELS
/*
* Defines the available communication buffers in the
* communication server.
*
* BUFFERSIZE is the overall amount of memory to be used by
* all channels
* MAXCHANNELS defines the number of channels that may be handled
* concurrently.
*
* Since each channel needs separate send and receive channels
* the available communication buffer is BUFFERSIZE / (2*MAXCHANNELS)
(Most runtime use the default 4 Maxchannels:
[CmpChannelServer]
Buffersize=4000000
MaxChannels=4
Example: if you need to increase it to 8:
[CmpChannelServer]
Buffersize=1600000
MaxChannels=8