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/24 16:16:13 UTC

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

Updated Branches:
  refs/heads/trunk c6e8f8fe6 -> 0ccee9843


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

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

Branch: refs/heads/trunk
Commit: 0ccee98438e5b551279a53a5ed57777cae7a0c10
Parents: c6e8f8f
Author: Timothy Bish <ta...@gmai.com>
Authored: Sun Nov 24 10:16:02 2013 -0500
Committer: Timothy Bish <ta...@gmai.com>
Committed: Sun Nov 24 10:16:02 2013 -0500

----------------------------------------------------------------------
 activemq-cpp/src/main/activemq/library/ActiveMQCPP.cpp | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq-cpp/blob/0ccee984/activemq-cpp/src/main/activemq/library/ActiveMQCPP.cpp
----------------------------------------------------------------------
diff --git a/activemq-cpp/src/main/activemq/library/ActiveMQCPP.cpp b/activemq-cpp/src/main/activemq/library/ActiveMQCPP.cpp
index 4c79136..376e6f4 100644
--- a/activemq-cpp/src/main/activemq/library/ActiveMQCPP.cpp
+++ b/activemq-cpp/src/main/activemq/library/ActiveMQCPP.cpp
@@ -110,6 +110,8 @@ void ActiveMQCPP::registerTransports() {
 
     TransportRegistry::getInstance().registerFactory("tcp", new TcpTransportFactory());
     TransportRegistry::getInstance().registerFactory("ssl", new SslTransportFactory());
+    TransportRegistry::getInstance().registerFactory("nio", new TcpTransportFactory());
+    TransportRegistry::getInstance().registerFactory("nio+ssl", new SslTransportFactory());
     TransportRegistry::getInstance().registerFactory("mock", new MockTransportFactory());
     TransportRegistry::getInstance().registerFactory("failover", new FailoverTransportFactory());
     TransportRegistry::getInstance().registerFactory("discovery", new DiscoveryTransportFactory());