diff options
author | Simon Warta <[email protected]> | 2017-10-03 17:19:43 +0200 |
---|---|---|
committer | Simon Warta <[email protected]> | 2017-10-03 17:21:13 +0200 |
commit | 1e4e9de9aa3b774b453ec05fa2199524e0e05fb6 (patch) | |
tree | 2e48427ec6b4ade19581232de7344bb6a4c09f6b /src/lib | |
parent | 3b50c4b50e25330860de69cf5ef86444e1ef66f7 (diff) |
Add missing include mem_ops.h in socket.cpp
cast_uint8_ptr_to_char is required by Winsock_Socket
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/utils/http_util/socket.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/utils/http_util/socket.cpp b/src/lib/utils/http_util/socket.cpp index 5f8cbcb05..0d94c9a8e 100644 --- a/src/lib/utils/http_util/socket.cpp +++ b/src/lib/utils/http_util/socket.cpp @@ -31,6 +31,8 @@ #endif #elif defined(BOTAN_TARGET_OS_TYPE_IS_WINDOWS) + #include <botan/mem_ops.h> + #define NOMINMAX 1 #if !defined(BOTAN_HAS_BOOST_ASIO) #include <winsock2.h> |