diff options
author | Jeffrey Walton <noloader@gmail.com> | 2018-08-17 23:55:39 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-17 23:55:39 -0400 |
commit | f2171cbe2f498e05298f80ee671b011302e73c28 (patch) | |
tree | e7facf7f3bb39cea81d707956cdccdcefb047028 /cryptlib.cpp | |
parent | 522da15b13ab11613d9c7d7beae42b3d91a90596 (diff) | |
download | cryptopp-git-f2171cbe2f498e05298f80ee671b011302e73c28.tar.gz |
Remove Thread and Socket classes (GH #208, PR #703)
Also see https://groups.google.com/forum/#!topic/cryptopp-users/5btwLoxXXD4.
Diffstat (limited to 'cryptlib.cpp')
-rw-r--r-- | cryptlib.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/cryptlib.cpp b/cryptlib.cpp index 8c1de4e2..81ff4b16 100644 --- a/cryptlib.cpp +++ b/cryptlib.cpp @@ -22,17 +22,11 @@ #include "fips140.h"
#include "argnames.h"
#include "fltrimpl.h"
-#include "trdlocal.h"
#include "osrng.h"
#include "secblock.h"
#include "smartptr.h"
#include "stdcpp.h"
-// http://www.cygwin.com/faq.html#faq.api.winsock
-#if (defined(__CYGWIN__) || defined(__CYGWIN32__)) && defined(PREFER_WINDOWS_STYLE_SOCKETS)
-# error Cygwin does not support Windows style sockets. See http://www.cygwin.com/faq.html#faq.api.winsock
-#endif
-
NAMESPACE_BEGIN(CryptoPP)
CRYPTOPP_COMPILE_ASSERT(sizeof(byte) == 1);
|