Re: [libmicrohttpd] Problem with Keep-Alive and MHD_OPTION_CONNECTION_TIMEOUT in MHD_USE_THREAD_PER_CONNECTION mode

2015-12-08 Thread silvioprog
Evg, I love open source, you definitely K.I.L.L.E.D the problem! :-D I did many tests comparing MHD with NodeJS and now MHD is working fine on Windows. In my tests I used the MHD 32 bits and NodeJS 64 bits (5.1.1), and it was proposital, but MHD even in 32 bits worked like a charm and has a nice

Re: [libmicrohttpd] Problem with Keep-Alive and MHD_OPTION_CONNECTION_TIMEOUT in MHD_USE_THREAD_PER_CONNECTION mode

2015-12-08 Thread silvioprog
On Tue, Dec 8, 2015 at 3:33 PM, silvioprog wrote: > [...] > And Evg, sorry if I'm being boring, but, can you send me the compiled 32 > and 64 binaries? I can compile that, but I don't know if my environment is > the better to compile MHD. The 32 bit binary that I compiled

Re: [libmicrohttpd] Problem with Keep-Alive and MHD_OPTION_CONNECTION_TIMEOUT in MHD_USE_THREAD_PER_CONNECTION mode

2015-12-08 Thread silvioprog
I forgot other information... I use thread in my own app, so I disable the MHD threads, but MHD still depending on `libwinpthread-1.dll` lib. Is this a normal behaviour or I need to pass some flag before compile it? On Tue, Dec 8, 2015 at 5:29 PM, silvioprog wrote: >

Re: [libmicrohttpd] Problem with Keep-Alive and MHD_OPTION_CONNECTION_TIMEOUT in MHD_USE_THREAD_PER_CONNECTION mode

2015-12-08 Thread Evgeny Grin
MHD should use w32 threading on Windows.Could you show your configure output?-- Best Wishes,Evgeny Grin08.12.2015, 23:32, "silvioprog" :I forgot other information...I use thread in my own app, so I disable the MHD threads, but MHD still depending on `libwinpthread-1.dll` lib.

Re: [libmicrohttpd] Problem with Keep-Alive and MHD_OPTION_CONNECTION_TIMEOUT in MHD_USE_THREAD_PER_CONNECTION mode

2015-12-08 Thread Evgeny Grin
32-bit .dll file generated by Visual Studio is only 81 KiB. But it's without HTTPS support.-- Best Wishes,Evgeny Grin08.12.2015, 22:42, "silvioprog" :On Tue, Dec 8, 2015 at 3:33 PM, silvioprog wrote:[...] And Evg, sorry if I'm being boring, but, can you

Re: [libmicrohttpd] Problem with Keep-Alive and MHD_OPTION_CONNECTION_TIMEOUT in MHD_USE_THREAD_PER_CONNECTION mode

2015-12-08 Thread silvioprog
Hm... so I did something wrong there. The commands that I did was (built for production): *$ ./configure --disable-doc --disable-examples --disable-messages --enable-https=no --disable-bauth --disable-dauth --disable-curl* $ make $ make install Ie, without HTTPS support, and I used the latest