]> git.sesse.net Git - vlc/commitdiff
Winsock seems to timeout half-closed TCP sockets.
authorRémi Denis-Courmont <rem@videolan.org>
Wed, 13 Feb 2008 17:53:52 +0000 (17:53 +0000)
committerRémi Denis-Courmont <rem@videolan.org>
Wed, 13 Feb 2008 17:53:52 +0000 (17:53 +0000)
src/misc/objects.c

index f08685591fc3825db9a7b7498698f497b381fbb8..00539ffb4e3f3de4d16a969068969f0219c7aba1 100644 (file)
@@ -505,8 +505,8 @@ static int pipe (int fd[2])
         goto error;
 
     closesocket (l);
-    shutdown (a, 0);
-    shutdown (c, 1);
+    //shutdown (a, 0);
+    //shutdown (c, 1);
     fd[0] = c;
     fd[1] = a;
     return 0;