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:
authorBrian Smith <brian@briansmith.org>2015-01-28 09:32:08 +0300
committerAdam Langley <agl@google.com>2015-01-28 23:24:09 +0300
commit33970e6ce0de1a553bd57d5b42527cd95292acae (patch)
tree2829eaa1e43c4a55e6a98cad876a826090c2fed2 /tool/tool.cc
parent9a9a193388f0b144388bfbb62c4cc4a5c8fd82f9 (diff)
Enable bssl client/s_client and server/s_server on Windows.
Change-Id: Iea9bd25176724b56ebb21bded6925f5d30176548 Reviewed-on: https://boringssl-review.googlesource.com/3071 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'tool/tool.cc')
-rw-r--r--tool/tool.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/tool/tool.cc b/tool/tool.cc
index 3b24be5a..36e3de9f 100644
--- a/tool/tool.cc
+++ b/tool/tool.cc
@@ -26,10 +26,8 @@
#endif
-#if !defined(OPENSSL_WINDOWS)
bool Client(const std::vector<std::string> &args);
bool Server(const std::vector<std::string> &args);
-#endif
bool MD5Sum(const std::vector<std::string> &args);
bool SHA1Sum(const std::vector<std::string> &args);
bool SHA224Sum(const std::vector<std::string> &args);
@@ -49,12 +47,10 @@ struct Tool {
static const Tool kTools[] = {
{ "speed", Speed },
{ "pkcs12", DoPKCS12 },
-#if !defined(OPENSSL_WINDOWS)
{ "client", Client },
{ "s_client", Client },
{ "server", Server },
{ "s_server", Server },
-#endif
{ "md5sum", MD5Sum },
{ "sha1sum", SHA1Sum },
{ "sha224sum", SHA224Sum },