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
28namespace ns3 {
29
30class Node;
31
43{
44public:
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
80protected:
81 virtual void DoDispose (void);
82private:
91 void Receive (Ptr<Packet> packet, uint16_t protocol, Mac48Address to, Mac48Address from);
92
97
102
104 uint16_t m_mtu;
107};
108
109} // namespace ns3
110
111#endif /* LOOPBACK_NET_DEVICE_H */
a polymophic address class
Definition: address.h:91
Ipv4 addresses are stored in host order in this class.
Definition: ipv4-address.h:41
Describes an IPv6 address.
Definition: ipv6-address.h:50
Virtual network interface that loops back any data sent to it to be immediately received on the same ...
virtual bool SetMtu(const uint16_t mtu)
uint32_t m_ifIndex
interface index
void Receive(Ptr< Packet > packet, uint16_t protocol, Mac48Address to, Mac48Address from)
Receive a packet from tge Loopback NetDevice.
virtual void SetIfIndex(const uint32_t index)
virtual bool IsLinkUp(void) const
virtual Address GetAddress(void) const
virtual Address GetMulticast(Ipv4Address multicastGroup) const
Make and return a MAC multicast address using the provided multicast group.
virtual bool IsBroadcast(void) const
virtual uint16_t GetMtu(void) const
Ptr< Node > m_node
the node this NetDevice is associated with
virtual bool IsMulticast(void) const
virtual void SetPromiscReceiveCallback(PromiscReceiveCallback cb)
Mac48Address m_address
NetDevice MAC address.
virtual bool NeedsArp(void) const
NetDevice::ReceiveCallback m_rxCallback
The callback used to notify higher layers that a packet has been received.
virtual Ptr< Node > GetNode(void) const
virtual void AddLinkChangeCallback(Callback< void > callback)
static TypeId GetTypeId(void)
Get the type ID.
virtual bool SendFrom(Ptr< Packet > packet, const Address &source, const Address &dest, uint16_t protocolNumber)
virtual Ptr< Channel > GetChannel(void) const
virtual bool IsBridge(void) const
Return true if the net device is acting as a bridge.
virtual uint32_t GetIfIndex(void) const
virtual Address GetBroadcast(void) const
virtual void SetReceiveCallback(NetDevice::ReceiveCallback cb)
virtual bool SupportsSendFrom(void) const
NetDevice::PromiscReceiveCallback m_promiscCallback
The callback used to notify higher layers that a packet has been received in promiscuous mode.
uint16_t m_mtu
device MTU
virtual void DoDispose(void)
Destructor implementation.
virtual bool Send(Ptr< Packet > packet, const Address &dest, uint16_t protocolNumber)
virtual void SetAddress(Address address)
Set the address of this interface.
virtual bool IsPointToPoint(void) const
Return true if the net device is on a point-to-point link.
virtual void SetNode(Ptr< Node > node)
an EUI-48 address
Definition: mac48-address.h:44
Network layer to device interface.
Definition: net-device.h:96
a unique identifier for an interface.
Definition: type-id.h:59
address
Definition: first.py:44
Every class exported by the ns3 library is enclosed in the ns3 namespace.