Re: [ovs-dev] [PATCH 07/14] socket-util: drain_rcvbuf() for Windows.

2014-02-20 Thread Ben Pfaff
On Wed, Feb 19, 2014 at 03:36:18PM -0800, Gurucharan Shetty wrote: > drain_rcvbuf() is currenlty called from netlink-socket.c and > netdev-linux.c. As of now, I don't see it being used for Windows. > > Signed-off-by: Gurucharan Shetty Is this because of the MSG_DONTWAIT here too? If so, then I

[ovs-dev] [PATCH 07/14] socket-util: drain_rcvbuf() for Windows.

2014-02-19 Thread Gurucharan Shetty
drain_rcvbuf() is currenlty called from netlink-socket.c and netdev-linux.c. As of now, I don't see it being used for Windows. Signed-off-by: Gurucharan Shetty --- lib/socket-util.c |2 ++ lib/socket-util.h |2 ++ 2 files changed, 4 insertions(+) diff --git a/lib/socket-util.c b/lib/soc