Skip to content
Snippets Groups Projects
Commit 7134be06 authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

MSVC build issue: add magic to make openssl headers in aes.c work

parent 02d206a5
No related branches found
No related tags found
No related merge requests found
......@@ -10,6 +10,23 @@
**/
#include "orconfig.h"
#ifdef _WIN32 /*wrkard for dtls1.h >= 0.9.8m of "#include <winsock.h>"*/
#ifndef WIN32_WINNT
#define WIN32_WINNT 0x400
#endif
#ifndef _WIN32_WINNT
#define _WIN32_WINNT 0x400
#endif
#define WIN32_LEAN_AND_MEAN
#if defined(_MSC_VER) && (_MSC_VER < 1300)
#include <winsock.h>
#else
#include <winsock2.h>
#include <ws2tcpip.h>
#endif
#endif
#include <openssl/opensslv.h>
#include <assert.h>
#include <stdlib.h>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment