You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ta...@apache.org on 2013/11/08 23:27:44 UTC

git commit: https://issues.apache.org/jira/browse/AMQCPP-505

Updated Branches:
  refs/heads/trunk c6d121450 -> 12bb514c6


https://issues.apache.org/jira/browse/AMQCPP-505

Add include of tls1.h to fix issues with some openssl versions.

Project: http://git-wip-us.apache.org/repos/asf/activemq-cpp/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-cpp/commit/12bb514c
Tree: http://git-wip-us.apache.org/repos/asf/activemq-cpp/tree/12bb514c
Diff: http://git-wip-us.apache.org/repos/asf/activemq-cpp/diff/12bb514c

Branch: refs/heads/trunk
Commit: 12bb514c6c3d6a37db71c4cbc90170c6f98d8270
Parents: c6d1214
Author: Timothy Bish <ta...@gmai.com>
Authored: Fri Nov 8 17:27:35 2013 -0500
Committer: Timothy Bish <ta...@gmai.com>
Committed: Fri Nov 8 17:27:35 2013 -0500

----------------------------------------------------------------------
 .../src/main/decaf/internal/net/ssl/openssl/OpenSSLSocket.cpp       | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq-cpp/blob/12bb514c/activemq-cpp/src/main/decaf/internal/net/ssl/openssl/OpenSSLSocket.cpp
----------------------------------------------------------------------
diff --git a/activemq-cpp/src/main/decaf/internal/net/ssl/openssl/OpenSSLSocket.cpp b/activemq-cpp/src/main/decaf/internal/net/ssl/openssl/OpenSSLSocket.cpp
index f6c851e..e52f8e3 100644
--- a/activemq-cpp/src/main/decaf/internal/net/ssl/openssl/OpenSSLSocket.cpp
+++ b/activemq-cpp/src/main/decaf/internal/net/ssl/openssl/OpenSSLSocket.cpp
@@ -19,6 +19,7 @@
 
 #ifdef HAVE_OPENSSL
     #include <openssl/ssl.h>
+    #include <openssl/tls1.h>
     #include <openssl/x509.h>
     #include <openssl/x509v3.h>
     #include <openssl/bio.h>