A Discrete-Event Network Simulator
API
loopback-net-device.h
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2008 INRIA
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 as
7  * published by the Free Software Foundation;
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17  *
18  * Author: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
19  */
20 #ifndef LOOPBACK_NET_DEVICE_H
21 #define LOOPBACK_NET_DEVICE_H
22 
23 #include "ns3/net-device.h"
24 #include "ns3/mac48-address.h"
25 #include <stdint.h>
26 #include <string>
27 
28 namespace ns3 {
29 
30 class Node;
31 
43 {
44 public:
49  static TypeId GetTypeId (void);
51 
52  // inherited from NetDevice base class.
53  virtual void SetIfIndex (const uint32_t index);
54  virtual uint32_t GetIfIndex (void) const;
55  virtual Ptr<Channel> GetChannel (void) const;
56  virtual void SetAddress (Address address);
57  virtual Address GetAddress (void) const;
58  virtual bool SetMtu (const uint16_t mtu);
59  virtual uint16_t GetMtu (void) const;
60  virtual bool IsLinkUp (void) const;
61  virtual void AddLinkChangeCallback (Callback<void> callback);
62  virtual bool IsBroadcast (void) const;
63  virtual Address GetBroadcast (void) const;
64  virtual bool IsMulticast (void) const;
65  virtual Address GetMulticast (Ipv4Address multicastGroup) const;
66  virtual bool IsPointToPoint (void) const;
67  virtual bool IsBridge (void) const;
68  virtual bool Send (Ptr<Packet> packet, const Address& dest, uint16_t protocolNumber);
69  virtual bool SendFrom (Ptr<Packet> packet, const Address& source, const Address& dest, uint16_t protocolNumber);
70  virtual Ptr<Node> GetNode (void) const;
71  virtual void SetNode (Ptr<Node> node);
72  virtual bool NeedsArp (void) const;
74 
75  virtual Address GetMulticast (Ipv6Address addr) const;
76 
78  virtual bool SupportsSendFrom (void) const;
79 
80 protected:
81  virtual void DoDispose (void);
82 private:
91  void Receive (Ptr<Packet> packet, uint16_t protocol, Mac48Address to, Mac48Address from);
92 
97 
102 
104  uint16_t m_mtu;
105  uint32_t m_ifIndex;
107 };
108 
109 } // namespace ns3
110 
111 #endif /* LOOPBACK_NET_DEVICE_H */
virtual bool SendFrom(Ptr< Packet > packet, const Address &source, const Address &dest, uint16_t protocolNumber)
uint32_t m_ifIndex
interface index
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:73
virtual Address GetMulticast(Ipv4Address multicastGroup) const
Make and return a MAC multicast address using the provided multicast group.
virtual Address GetAddress(void) const
virtual void SetNode(Ptr< Node > node)
Mac48Address m_address
NetDevice MAC address.
virtual void SetReceiveCallback(NetDevice::ReceiveCallback cb)
virtual bool IsPointToPoint(void) const
Return true if the net device is on a point-to-point link.
NetDevice::ReceiveCallback m_rxCallback
The callback used to notify higher layers that a packet has been received.
virtual bool SupportsSendFrom(void) const
a polymophic address class
Definition: address.h:90
virtual void SetPromiscReceiveCallback(PromiscReceiveCallback cb)
virtual bool Send(Ptr< Packet > packet, const Address &dest, uint16_t protocolNumber)
uint16_t m_mtu
device MTU
virtual bool IsBroadcast(void) const
NetDevice::PromiscReceiveCallback m_promiscCallback
The callback used to notify higher layers that a packet has been received in promiscuous mode...
virtual bool IsBridge(void) const
Return true if the net device is acting as a bridge.
virtual bool IsLinkUp(void) const
virtual uint16_t GetMtu(void) const
Every class exported by the ns3 library is enclosed in the ns3 namespace.
an EUI-48 address
Definition: mac48-address.h:43
virtual uint32_t GetIfIndex(void) const
virtual bool SetMtu(const uint16_t mtu)
virtual Address GetBroadcast(void) const
Describes an IPv6 address.
Definition: ipv6-address.h:48
virtual void DoDispose(void)
Destructor implementation.
Ipv4 addresses are stored in host order in this class.
Definition: ipv4-address.h:40
Virtual network interface that loops back any data sent to it to be immediately received on the same ...
virtual Ptr< Channel > GetChannel(void) const
Network layer to device interface.
Definition: net-device.h:405
virtual void SetIfIndex(const uint32_t index)
virtual bool NeedsArp(void) const
Ptr< Node > m_node
the node this NetDevice is associated with
virtual bool IsMulticast(void) const
void Receive(Ptr< Packet > packet, uint16_t protocol, Mac48Address to, Mac48Address from)
Receive a packet from tge Loopback NetDevice.
virtual Ptr< Node > GetNode(void) const
tuple address
Definition: first.py:37
static TypeId GetTypeId(void)
Get the type ID.
a unique identifier for an interface.
Definition: type-id.h:58
virtual void SetAddress(Address address)
Set the address of this interface.
virtual void AddLinkChangeCallback(Callback< void > callback)