Re: [ovs-dev] [PATCH 2/4] stream-tcp: Use closesocket instead of close for sockets.

2014-03-28 Thread Ben Pfaff
On Fri, Mar 28, 2014 at 09:10:44AM -0700, Gurucharan Shetty wrote: > We should use closesocket() while closing sockets so that > closing sockets work fine on both POSIX and Windows. > (In POSIX, we #define closesocket close) > > Signed-off-by: Gurucharan Shetty Acked-by: Ben Pfaff _

[ovs-dev] [PATCH 2/4] stream-tcp: Use closesocket instead of close for sockets.

2014-03-28 Thread Gurucharan Shetty
We should use closesocket() while closing sockets so that closing sockets work fine on both POSIX and Windows. (In POSIX, we #define closesocket close) Signed-off-by: Gurucharan Shetty --- lib/stream-tcp.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/stream-tcp.c b/