Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2011-05-23 21:27:12 +0400
committerJunio C Hamano <gitster@pobox.com>2011-05-23 21:27:12 +0400
commitc3c7797e1d151417333296ab3720614c1e235094 (patch)
treefdd4ab37eaacafbabafef367aa0556efb249becc /compat/mingw.h
parent3c0ae619e68398fe83d647b8460b399767ec103f (diff)
parenta7941795b1eb720f3bf3df2f4c68d58dd0fba7e1 (diff)
Merge branch 'js/mingw-shutdown'
* js/mingw-shutdown: Windows: add a wrapper for the shutdown() system call
Diffstat (limited to 'compat/mingw.h')
-rw-r--r--compat/mingw.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/compat/mingw.h b/compat/mingw.h
index 62eccd3391..547568b918 100644
--- a/compat/mingw.h
+++ b/compat/mingw.h
@@ -217,6 +217,9 @@ int mingw_bind(int sockfd, struct sockaddr *sa, size_t sz);
int mingw_setsockopt(int sockfd, int lvl, int optname, void *optval, int optlen);
#define setsockopt mingw_setsockopt
+int mingw_shutdown(int sockfd, int how);
+#define shutdown mingw_shutdown
+
int mingw_listen(int sockfd, int backlog);
#define listen mingw_listen