[Libevent-users] [PATCH] client HTTPS with evhttp

2011-12-08 Thread Myk Taylor
I've written up a patch that allows evhttp to work for HTTPS where a second (or further) request is sent on a evhttp_connection that has previously timed out and closed its underlying TCP connection. Fortunately, it was a fairly simple addition. Here's a rundown of what it does: 1) adds the

Re: [Libevent-users] [PATCH] configure: don't disable check for pthreads on Windows

2011-12-08 Thread Nick Mathewson
On Thu, Dec 8, 2011 at 9:38 AM, Bobby Powers wrote: > The other option would be a configure flag, something like > '--enable-windows-pthreads' I think an explicit configure flag would be a good idea here. -- Nick *** To unsubs

Re: [Libevent-users] [PATCH] configure: don't disable check for pthreads on Windows

2011-12-08 Thread Bobby Powers
Hi Sebastian, Thanks for the comment. I believe this is a problem for me -- I have a application developed on Linux which fairly extensively uses pthreads and libevent for several different event loops. I will do some tests later, maybe I don't need libevent to have pthread support, I was going

Re: [Libevent-users] [PATCH] configure: don't disable check for pthreads on Windows

2011-12-08 Thread Sebastian Hahn
On Dec 8, 2011, at 2:41 PM, Bobby Powers wrote: > Hi folks, > > I ran into a small issue when building libevent 2.0.16-stable under mingw32. > The current configure script disables searching for pthreads when building > for Windows, but this is actually a pthreads implementation (pthreads-win32

[Libevent-users] [PATCH] configure: don't disable check for pthreads on Windows

2011-12-08 Thread Bobby Powers
Hi folks, I ran into a small issue when building libevent 2.0.16-stable under mingw32. The current configure script disables searching for pthreads when building for Windows, but this is actually a pthreads implementation (pthreads-win32) that may be available. This patch fixes configure to alwa