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

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Langley <agl@chromium.org>2014-08-01 02:23:51 +0400
committerAdam Langley <agl@google.com>2014-08-12 02:10:02 +0400
commitded93581f1674f81faa0dba4b15a842756066ab2 (patch)
tree3ef888c2d7c3fda23863a147ba3552173318e33a /crypto/bio
parentd83f38c13a1f943db651cf5e85f9b2f04e80c4a6 (diff)
Windows build fixes.
Windows doesn't have ssize_t, sadly. There's SSIZE_T, but defining an OPENSSL_SSIZE_T seems worse than just using an int. Change-Id: I09bb5aa03f96da78b619e551f92ed52ce24d9f3f Reviewed-on: https://boringssl-review.googlesource.com/1352 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'crypto/bio')
-rw-r--r--crypto/bio/internal.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/bio/internal.h b/crypto/bio/internal.h
index b0c9c316..dd3d8007 100644
--- a/crypto/bio/internal.h
+++ b/crypto/bio/internal.h
@@ -68,6 +68,7 @@ typedef unsigned short u_short;
#include <sys/socket.h>
#else
#include <WinSock2.h>
+#include <WS2tcpip.h>
#endif
#if defined(__cplusplus)