process: make max number of children (connections) configurable
At least some Panasonic clients try to open more than 5 simultaneous connections to the server. If we keep the default of 5 max children, it results in choppy playback on those clients. Make this setting configurable, and default to 50 max connections. Our process is pretty lightweight, so 50 children should not be a problem on most systems.
This commit is contained in:
@ -56,7 +56,8 @@ enum upnpconfigoptions {
|
||||
ENABLE_DLNA_STRICT, /* strictly adhere to DLNA specs */
|
||||
ROOT_CONTAINER, /* root ObjectID (instead of "0") */
|
||||
USER_ACCOUNT, /* user account to run as */
|
||||
FORCE_SORT_CRITERIA /* force sorting by a given sort criteria */
|
||||
FORCE_SORT_CRITERIA, /* force sorting by a given sort criteria */
|
||||
MAX_CONNECTIONS /* maximum number of simultaneous connections */
|
||||
};
|
||||
|
||||
/* readoptionsfile()
|
||||
|
Reference in New Issue
Block a user