28 #include "ns3/object.h" 
   29 #include "ns3/socket.h" 
   30 #include "ns3/callback.h" 
   32 #include "ns3/ipv6-address.h" 
   40 class Ipv6RoutingProtocol;
 
  197   virtual uint32_t 
GetNAddresses (uint32_t interface) 
const = 0;
 
  223   virtual bool RemoveAddress (uint32_t interface, uint32_t addressIndex) = 0;
 
  241   virtual void SetMetric (uint32_t interface, uint16_t metric) = 0;
 
  250   virtual uint16_t 
GetMetric (uint32_t interface) 
const = 0;
 
  258   virtual uint16_t 
GetMtu (uint32_t interface) 
const = 0;
 
  273   virtual bool IsUp (uint32_t interface) 
const = 0;
 
  281   virtual void SetUp (uint32_t interface) = 0;
 
  289   virtual void SetDown (uint32_t interface) = 0;
 
  296   virtual bool IsForwarding (uint32_t interface) 
const = 0;
 
  305   virtual void SetForwarding (uint32_t interface, 
bool val) = 0;
 
  335   static const uint32_t 
IF_ANY = 0xffffffff;
 
virtual uint16_t GetMetric(uint32_t interface) const =0
Get metric for the specified IPv6 interface. 
 
static TypeId GetTypeId(void)
Get the type ID. 
 
Smart pointer class similar to boost::intrusive_ptr. 
 
virtual void SetMetric(uint32_t interface, uint16_t metric)=0
Set metric on specified Ipv6 interface. 
 
virtual uint32_t GetNAddresses(uint32_t interface) const =0
Get number of addresses on specified IPv6 interface. 
 
Access to the IPv6 forwarding table, interfaces, and configuration. 
 
virtual bool IsUp(uint32_t interface) const =0
If the specified interface index is in "up" state. 
 
virtual void SetPmtu(Ipv6Address dst, uint32_t pmtu)=0
Set the Path MTU for the specified IPv6 destination address. 
 
virtual bool RemoveAddress(uint32_t interface, uint32_t addressIndex)=0
Remove an address on specified IPv6 interface. 
 
IPv6 address associated with an interface. 
 
virtual void SetMtuDiscover(bool mtuDiscover)=0
Set IPv6 MTU discover state. 
 
virtual void SetIpForward(bool forward)=0
Set IPv6 forwarding state. 
 
virtual void SetRoutingProtocol(Ptr< Ipv6RoutingProtocol > routingProtocol)=0
Register a new routing protocol to be used by this IPv6 stack. 
 
virtual Ipv6InterfaceAddress GetAddress(uint32_t interface, uint32_t addressIndex) const =0
Get IPv6 address on specified IPv6 interface. 
 
virtual void SetForwarding(uint32_t interface, bool val)=0
Set forwarding on specified IPv6 interface. 
 
virtual bool GetMtuDiscover(void) const =0
Get IPv6 MTU discover state. 
 
virtual void RegisterExtensions()=0
Register the IPv6 Extensions. 
 
virtual Ptr< IpL4Protocol > GetProtocol(int protocolNumber) const =0
Get L4 protocol by protocol number. 
 
virtual uint16_t GetMtu(uint32_t interface) const =0
Get MTU for the specified IPv6 interface. 
 
virtual ~Ipv6()
Destructor. 
 
Every class exported by the ns3 library is enclosed in the ns3 namespace. 
 
static const uint32_t IF_ANY
Any interface magic number. 
 
virtual bool GetIpForward(void) const =0
Get IPv6 forwarding state. 
 
virtual uint32_t AddInterface(Ptr< NetDevice > device)=0
Add a NetDevice interface. 
 
Describes an IPv6 address. 
 
virtual int32_t GetInterfaceForPrefix(Ipv6Address address, Ipv6Prefix mask) const =0
Return the interface number of first interface found that has an IPv6 address within the prefix speci...
 
virtual void RegisterOptions()=0
Register the IPv6 Options. 
 
virtual Ptr< NetDevice > GetNetDevice(uint32_t interface)=0
Get the NetDevice of the specified interface number. 
 
Describes an IPv6 prefix. 
 
virtual bool IsForwarding(uint32_t interface) const =0
If the specified IPv6 interface has forwarding enabled. 
 
virtual bool AddAddress(uint32_t interface, Ipv6InterfaceAddress address)=0
Add an address on the specified IPv6 interface. 
 
A base class which provides memory management and object aggregation. 
 
virtual Ptr< Ipv6RoutingProtocol > GetRoutingProtocol(void) const =0
Get the routing protocol to be used by this IPv6 stack. 
 
virtual int32_t GetInterfaceForAddress(Ipv6Address address) const =0
Return the interface number of the interface that has been assigned the specified IP address...
 
a unique identifier for an interface. 
 
virtual int32_t GetInterfaceForDevice(Ptr< const NetDevice > device) const =0
Get the interface index of the specified NetDevice. 
 
virtual Ipv6Address SourceAddressSelection(uint32_t interface, Ipv6Address dest)=0
Choose the source address to use with destination address. 
 
virtual void SetDown(uint32_t interface)=0
Set the interface into the "down" state. 
 
virtual uint32_t GetNInterfaces(void) const =0
Get number of interfaces. 
 
virtual void SetUp(uint32_t interface)=0
Set the interface into the "up" state.