diff options
author | valerino <valerino@te4i.com> | 2010-05-22 03:02:32 +0200 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2010-05-24 11:46:54 -0400 |
commit | 076063ca90cc784363127e24a83e38bd54b0e003 (patch) | |
tree | 33d780ea00896dc38e9f82dbe4f3dd7a0b08196e /src/common/tortls.c | |
parent | 8d31141ccbdbeee9589d04ea99819af7aa35193b (diff) | |
download | tor-076063ca90cc784363127e24a83e38bd54b0e003.tar.gz tor-076063ca90cc784363127e24a83e38bd54b0e003.zip |
moved wince related includes and defs to compat.h where possible, removed unused/redundant wince includes
Diffstat (limited to 'src/common/tortls.c')
-rw-r--r-- | src/common/tortls.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/common/tortls.c b/src/common/tortls.c index 218f110d8c..6732d55b8a 100644 --- a/src/common/tortls.c +++ b/src/common/tortls.c @@ -16,6 +16,10 @@ #include "orconfig.h" +#if defined (WINCE) +#include <WinSock2.h> +#endif + #include <assert.h> #include <openssl/ssl.h> #include <openssl/ssl3.h> |