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

2014-02-10 Thread Gurucharan Shetty
On Mon, Feb 10, 2014 at 1:14 PM, Ben Pfaff wrote: > On Mon, Feb 10, 2014 at 11:16:22AM -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 v2 3/3] stream-ssl: Add support for windows platform.

2014-02-10 Thread Ben Pfaff
On Mon, Feb 10, 2014 at 11:16:22AM -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 v2 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