The 32-bit windows support has been landed in the portable tree now
for a few days now. Please try it out and report and/or fix any issues
you find.
I did a 64-bit build earlier today and there are a few bad
pointer->long casts (long is < size_t on win64), but nothing major
that I saw.
On Sun, No
Not sure how much of an issue this would be, WSAPoll() is only
available on Windows Vista and above.
On Mon, 1 Dec 2014 14:10:44 +0800
Dongsheng Song wrote:
> Cool !
>
> I can see you do lot's of update on select->poll conversions.
> The code become more and more complex since you want it works
On Mon, Dec 1, 2014 at 2:25 PM, Brad Smith wrote:
> There is a URL posted at the bottom of that page that points out how it
> is broken and should not be used.
>
I don't think we must distinguish the timeout errors and connection
errors in the OpenSSL(1) tool, report ‘connection failed (or timeou
On 12/01/14 01:10, Dongsheng Song wrote:
Cool !
I can see you do lot's of update on select->poll conversions.
The code become more and more complex since you want it works more general.
Can we use simply WSAPoll[1] instead ?
--
#ifdef _WIN32
#define poll WSAPoll
#endif
--
[1]
http://msdn.mic
Cool !
I can see you do lot's of update on select->poll conversions.
The code become more and more complex since you want it works more general.
Can we use simply WSAPoll[1] instead ?
--
#ifdef _WIN32
#define poll WSAPoll
#endif
--
[1]
http://msdn.microsoft.com/en-us/library/windows/desktop/ms
I got a Windows 8.1 box running this weekend and spent some quality
time making poll(2) emulation more robust, so that it can deal with
more of the select->poll conversions in openssl(1) coming in the
future. I also got the upstream poll conversion patches themselves in
better working order. This W