Re: [ovs-dev] [PATCH v3 3/3] stream-ssl: Add support for windows platform.

2014-02-11 Thread Gurucharan Shetty
On Tue, Feb 11, 2014 at 8:17 AM, Ben Pfaff wrote: > On Mon, Feb 10, 2014 at 03:25:38PM -0800, Gurucharan Shetty wrote: >> This commit creates events and through poll_fd_wait_event() >> associates them with socket file descriptors to get woken up >> from poll_block(). >> >> Some other changes: >> >

Re: [ovs-dev] [PATCH v3 3/3] stream-ssl: Add support for windows platform.

2014-02-11 Thread Ben Pfaff
On Mon, Feb 10, 2014 at 03:25:38PM -0800, Gurucharan Shetty wrote: > This commit creates events and through poll_fd_wait_event() > associates them with socket file descriptors to get woken up > from poll_block(). > > Some other changes: > > * Windows does not have sys/fcntl.h but has a fcntl.h >

[ovs-dev] [PATCH v3 3/3] stream-ssl: Add support for windows platform.

2014-02-10 Thread Gurucharan Shetty
This commit creates events and through poll_fd_wait_event() associates them with socket file descriptors to get woken up from poll_block(). Some other changes: * Windows does not have sys/fcntl.h but has a fcntl.h On Linux, there is fctnl.h too. * include to handle different C-Runtime linking o