Change Transport connect to use the new ConnectionInfo object.
diff --git a/ndn-cpp/node.cpp b/ndn-cpp/node.cpp
index 44bd7e9..77befa3 100644
--- a/ndn-cpp/node.cpp
+++ b/ndn-cpp/node.cpp
@@ -78,7 +78,7 @@
   
   // TODO: Properly check if we are already connected to the expected host.
   if (!transport_->getIsConnected())
-    transport_->connect(*this);
+    transport_->connect(*connectionInfo_, *this);
   
   transport_->send(*encoding);
 }