Hi Nicolas, You should provide pool size with MHD_OPTION_THREAD_POOL_SIZE only if you are not using "thread per connection"."Thread pool" mode handle all connections by specified number of threads."Thread per connection" run one thread for watching for new incoming connection and separate thread fo
When using the flag MHD_USE_THREAD_PER_CONNECTION with MHD_start_daemon,
MHD recommends to explicitly enable flag MHD_USE_INTERNAL_POLLING_THREAD
too.
Is there a default thread pool size if we don't use the flag
MHD_OPTION_THREAD_POOL_SIZE? Should we set it to an arbitrary value? Or
should I