8c8d2187b3
refs #1131, #1136 Change-Id: Ica58341cdc1ea1dc421693a87f35fc50177a707d
65 lines
794 B
C++
65 lines
794 B
C++
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
|
|
/**
|
|
* Copyright (C) 2014 Named Data Networking Project
|
|
* See COPYING for copyright and distribution information.
|
|
*/
|
|
|
|
#include "face.hpp"
|
|
|
|
namespace nfd {
|
|
|
|
Face::Face()
|
|
: m_id(INVALID_FACEID)
|
|
{
|
|
}
|
|
|
|
Face::~Face()
|
|
{
|
|
}
|
|
|
|
FaceId
|
|
Face::getId() const
|
|
{
|
|
return m_id;
|
|
}
|
|
|
|
FaceId
|
|
Face::setId(FaceId faceId)
|
|
{
|
|
m_id = faceId;
|
|
}
|
|
|
|
bool
|
|
Face::isUp() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
void
|
|
Face::setDescription(const std::string& description)
|
|
{
|
|
m_description = description;
|
|
}
|
|
|
|
const std::string&
|
|
Face::getDescription() const
|
|
{
|
|
return m_description;
|
|
}
|
|
|
|
bool
|
|
Face::isMultiAccess() const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool
|
|
Face::isLocalControlHeaderEnabled() const
|
|
{
|
|
// TODO add local control header functionality
|
|
return false;
|
|
}
|
|
|
|
|
|
} //namespace nfd
|