2007-02-12 19:28:19 +01:00
|
|
|
/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
|
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) 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:
|
|
|
|
|
* Mathieu Lacage <mathieu.lacage@sophia.inria.fr>,
|
|
|
|
|
*/
|
|
|
|
|
#ifndef IPV4_LOOPBACK_INTERFACE_H
|
|
|
|
|
#define IPV4_LOOPBACK_INTERFACE_H
|
|
|
|
|
|
|
|
|
|
#include "ipv4-interface.h"
|
2007-05-10 07:35:53 +02:00
|
|
|
#include "ns3/ptr.h"
|
2007-02-12 19:28:19 +01:00
|
|
|
|
|
|
|
|
namespace ns3 {
|
|
|
|
|
|
2007-06-04 16:17:01 +02:00
|
|
|
class Node;
|
2007-05-16 16:39:32 -04:00
|
|
|
/**
|
|
|
|
|
* \brief An IPv4 loopback interface
|
|
|
|
|
*/
|
2007-02-12 19:28:19 +01:00
|
|
|
class Ipv4LoopbackInterface : public Ipv4Interface
|
|
|
|
|
{
|
2008-05-25 11:07:08 -07:00
|
|
|
public:
|
|
|
|
|
static TypeId GetTypeId (void);
|
2008-03-11 13:30:12 -07:00
|
|
|
Ipv4LoopbackInterface ();
|
2007-02-12 19:28:19 +01:00
|
|
|
virtual ~Ipv4LoopbackInterface ();
|
|
|
|
|
|
2008-03-11 13:30:12 -07:00
|
|
|
virtual Ptr<NetDevice> GetDevice (void) const;
|
|
|
|
|
|
|
|
|
|
void SetNode (Ptr<Node> node);
|
|
|
|
|
|
2007-02-12 19:28:19 +01:00
|
|
|
private:
|
2007-10-01 14:15:56 +02:00
|
|
|
virtual void SendTo (Ptr<Packet> p, Ipv4Address dest);
|
2007-02-12 19:28:19 +01:00
|
|
|
|
2007-06-04 16:17:01 +02:00
|
|
|
Ptr<Node> m_node;
|
2007-02-12 19:28:19 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}//namespace ns3
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* IPV4_LOOPBACK_INTERFACE_H */
|