commit | 432c8be9fb440ff337bc8a960c3185e56f0f242e | [log] [tgz] |
---|---|---|
author | Jeff Thompson <jefft0@gmail.com> | Fri Aug 09 16:16:08 2013 -0700 |
committer | Jeff Thompson <jefft0@gmail.com> | Fri Aug 09 16:16:08 2013 -0700 |
tree | d8bb30cebc25aa1723c9743db615ad76e9a6d3b4 | |
parent | 2d27e2f70afc5485acdda73f7b8db49ce3648c97 [diff] [blame] |
Added support for processEvents to Transport and Face. Removed tempReceive.
diff --git a/ndn-cpp/face.cpp b/ndn-cpp/face.cpp index c5be3d2..89462d6 100644 --- a/ndn-cpp/face.cpp +++ b/ndn-cpp/face.cpp
@@ -24,7 +24,12 @@ transport_->connect(*this); transport_->send(*encoding); } - + +void Face::processEvents() +{ + transport_->processEvents(); +} + void Face::shutdown() { transport_->close();