]> git.eshelyaron.com Git - emacs.git/commitdiff
(sys_shutdown): New function.
authorGeoff Voelker <voelker@cs.washington.edu>
Thu, 10 Jul 1997 20:10:09 +0000 (20:10 +0000)
committerGeoff Voelker <voelker@cs.washington.edu>
Thu, 10 Jul 1997 20:10:09 +0000 (20:10 +0000)
src/w32.c

index 734d6276e8fe934d88f34cbef21d91f5da251f8a..b0646c91e9697bcc9b16f9d4d0d66671ce90df94 100644 (file)
--- a/src/w32.c
+++ b/src/w32.c
@@ -73,6 +73,7 @@ Boston, MA 02111-1307, USA.
 #undef gethostname
 #undef gethostbyname
 #undef getservbyname
+#undef shutdown
 #endif
 
 #include "w32.h"
@@ -1779,6 +1780,29 @@ sys_getservbyname(const char * name, const char * proto)
   return serv;
 }
 
+int
+sys_shutdown (int s, int how)
+{
+  int rc;
+
+  if (winsock_lib == NULL)
+    {
+      h_errno = ENETDOWN;
+      return SOCKET_ERROR;
+    }
+
+  check_errno ();
+  if (fd_info[s].flags & FILE_SOCKET)
+    {
+      int rc = pfn_shutdown (SOCK_HANDLE (s), how);
+      if (rc == SOCKET_ERROR)
+       set_errno ();
+      return rc;
+    }
+  h_errno = ENOTSOCK;
+  return SOCKET_ERROR;
+}
+
 #endif /* HAVE_SOCKETS */