blob: 3510eba95bb57bcb167ae9d0d0f7c90e75ed8e50 [file] [log] [blame]
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2005,2006,2007 INRIA
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation;
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Authors: Alexander Afanasyev <alexander.afanasyev@ucla.edu>
Ilya Moiseenko <iliamo@cs.ucla.edu>
*/
#ifndef CCNX_LOCAL_FACE_H
#define CCNX_LOCAL_FACE_H
#include "ccnx-face.h"
namespace ns3
{
/**
* \ingroup ccnx-face
* \brief Implementation of application CCNx face
*
* This class defines basic functionality of CCNx face. Face is core
* component responsible for actual delivery of data packet to and
* from CCNx stack
*
* \see CcnxLocalFace, CcnxNetDeviceFace, CcnxIpv4Face, CcnxUdpFace
*/
class CcnxLocalFace : public CcnxFace
{
public:
/**
* \brief Interface ID
*
* \return interface ID
*/
static TypeId GetTypeId (void);
/**
* \brief Default constructor
*/
CcnxLocalFace ();
virtual ~CcnxLocalFace();
////////////////////////////////////////////////////////////////////
// methods overloaded from CcnxFace
virtual void RegisterProtocolHandler (ProtocolHandler handler);
virtual void Send (Ptr<Packet> p);
void Receive (Ptr<Packet> p);
////////////////////////////////////////////////////////////////////
/// \todo Need methods to implement application hooks
protected:
virtual void DoDispose (void);
private:
CcnxLocalFace (const CcnxLocalFace &); ///< \brief Disabled copy constructor
CcnxLocalFace& operator= (const CcnxLocalFace &); ///< \brief Disabled copy operator
};
std::ostream& operator<< (std::ostream& os, const CcnxLocalFace &localFace);
} // namespace ns3
#endif