commit | 10e3438a570e680c7b2c1482761b72cd226ec928 | [log] [tgz] |
---|---|---|
author | Jeff Thompson <jefft0@gmail.com> | Thu Aug 22 13:34:46 2013 -0700 |
committer | Jeff Thompson <jefft0@gmail.com> | Thu Aug 22 13:34:46 2013 -0700 |
tree | d9c59fea3a563f2a18a39e5cafc85572a1f6b004 | |
parent | a40569725b8198acb2fd6aa043bc5fca7e0e388c [diff] [blame] |
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); }