blob: 7b0d3eadfcfb47dc69d7a5f9975b4b48c2e2f137 [file] [log] [blame]
Jeff Thompsonaa4e6db2013-07-15 17:25:23 -07001/**
2 * @author: Jeff Thompson
3 * See COPYING for copyright and distribution information.
4 */
5
Jeff Thompsonb9e3c8e2013-08-02 11:42:51 -07006#include "face.hpp"
Jeff Thompsonaa4e6db2013-07-15 17:25:23 -07007
Jeff Thompsonb982b6d2013-07-15 18:15:45 -07008using namespace std;
9
Jeff Thompsonaa4e6db2013-07-15 17:25:23 -070010namespace ndn {
Jeff Thompson9657bda2013-07-16 16:23:41 -070011
Jeff Thompson517ffa82013-08-05 16:04:34 -070012void Face::shutdown()
13{
Jeff Thompsonbf50a1a2013-08-20 18:01:01 -070014 node_.shutdown();
Jeff Thompsonaa4e6db2013-07-15 17:25:23 -070015}
16
17}