A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
ns3::flame::FlameProtocol Class Reference

FLAME routing protocol. More...

#include <flame-protocol.h>

+ Inheritance diagram for ns3::flame::FlameProtocol:
+ Collaboration diagram for ns3::flame::FlameProtocol:

Classes

struct  Statistics

Public Member Functions

 FlameProtocol ()
 ~FlameProtocol ()
void DoDispose ()
Mac48Address GetAddress ()
bool Install (Ptr< MeshPointDevice >)
 Install FLAME on given mesh point.
bool RemoveRoutingStuff (uint32_t fromIface, const Mac48Address source, const Mac48Address destination, Ptr< Packet > packet, uint16_t &protocolType)
 Cleanup flame headers!
void Report (std::ostream &) const
 Statistics.
bool RequestRoute (uint32_t sourceIface, const Mac48Address source, const Mac48Address destination, Ptr< const Packet > packet, uint16_t protocolType, RouteReplyCallback routeReply)
 Route request, inherited from MeshL2RoutingProtocol.
void ResetStats ()
- Public Member Functions inherited from ns3::MeshL2RoutingProtocol
virtual ~MeshL2RoutingProtocol ()
 virtual D-tor for subclasses
Ptr< MeshPointDeviceGetMeshPoint () const
 Each mesh protocol must be installed on the mesh point to work.
void SetMeshPoint (Ptr< MeshPointDevice > mp)
 Set host mesh point, analog of SetNode (...) methods for upper layer protocols.
- Public Member Functions inherited from ns3::Object
 Object ()
virtual ~Object ()
void AggregateObject (Ptr< Object > other)
void Dispose (void)
AggregateIterator GetAggregateIterator (void) const
virtual TypeId GetInstanceTypeId (void) const
template<typename T >
Ptr< T > GetObject (void) const
template<typename T >
Ptr< T > GetObject (TypeId tid) const
void Start (void)
- Public Member Functions inherited from ns3::SimpleRefCount< Object, ObjectBase, ObjectDeleter >
 SimpleRefCount ()
 SimpleRefCount (const SimpleRefCount &o)
uint32_t GetReferenceCount (void) const
SimpleRefCountoperator= (const SimpleRefCount &o)
void Ref (void) const
void Unref (void) const
- Public Member Functions inherited from ns3::ObjectBase
virtual ~ObjectBase ()
void GetAttribute (std::string name, AttributeValue &value) const
bool GetAttributeFailSafe (std::string name, AttributeValue &attribute) const
void SetAttribute (std::string name, const AttributeValue &value)
bool SetAttributeFailSafe (std::string name, const AttributeValue &value)
bool TraceConnect (std::string name, std::string context, const CallbackBase &cb)
bool TraceConnectWithoutContext (std::string name, const CallbackBase &cb)
bool TraceDisconnect (std::string name, std::string context, const CallbackBase &cb)
bool TraceDisconnectWithoutContext (std::string name, const CallbackBase &cb)

Static Public Member Functions

static TypeId GetTypeId ()
 This method returns the TypeId associated to ns3::flame::FlameProtocol.

Private Member Functions

 FlameProtocol (const FlameProtocol &)
bool HandleDataFrame (uint16_t seqno, Mac48Address source, const FlameHeader flameHdr, Mac48Address receiver, uint32_t fromIface)
 Handles a packet: adds a routing information and drops packets by TTL or Seqno.
FlameProtocoloperator= (const FlameProtocol &)

Private Attributes

uint8_t m_maxCost
 Max Cost value (or TTL, because cost is actually hopcount)
uint16_t m_myLastSeqno
 Sequence number:
Ptr< FlameRtablem_rtable
 Routing table:
Broadcast timers:
Time m_broadcastInterval
Time m_lastBroadcast
Statistics:
Statistics m_stats

Static Private Attributes

static const uint16_t FLAME_PROTOCOL = 0x4040
 LLC protocol number reserved by flame.

Information about MeshPointDeviceaddress, plugins

typedef std::map< uint32_t,
Ptr< FlameProtocolMac > > 
FlamePluginMap
FlamePluginMap m_interfaces
Mac48Address m_address

Additional Inherited Members

- Public Types inherited from ns3::MeshL2RoutingProtocol
typedef Callback< void, bool,
Ptr< Packet >, Mac48Address,
Mac48Address, uint16_t,
uint32_t > 
RouteReplyCallback
- Protected Member Functions inherited from ns3::Object
 Object (const Object &o)
virtual void DoStart (void)
virtual void NotifyNewAggregate (void)
- Protected Attributes inherited from ns3::MeshL2RoutingProtocol
Ptr< MeshPointDevicem_mp
 Host mesh point.

Detailed Description

FLAME routing protocol.

Definition at line 80 of file flame-protocol.h.

Member Typedef Documentation

typedef std::map<uint32_t, Ptr<FlameProtocolMac> > ns3::flame::FlameProtocol::FlamePluginMap
private

Definition at line 123 of file flame-protocol.h.

Constructor & Destructor Documentation

ns3::flame::FlameProtocol::FlameProtocol ( )

Definition at line 129 of file flame-protocol.cc.

ns3::flame::FlameProtocol::~FlameProtocol ( )

Definition at line 134 of file flame-protocol.cc.

ns3::flame::FlameProtocol::FlameProtocol ( const FlameProtocol )
private

Member Function Documentation

void ns3::flame::FlameProtocol::DoDispose ( void  )
virtual

This method is called by Object::Dispose or by the object's destructor, whichever comes first.

Subclasses are expected to implement their real destruction code in an overriden version of this method and chain up to their parent's implementation once they are done. i.e., for simplicity, the destructor of every subclass should be empty and its content should be moved to the associated DoDispose method.

It is safe to call GetObject from within this method.

Reimplemented from ns3::Object.

Definition at line 138 of file flame-protocol.cc.

References m_interfaces, ns3::MeshL2RoutingProtocol::m_mp, and m_rtable.

Mac48Address ns3::flame::FlameProtocol::GetAddress ( void  )

Definition at line 320 of file flame-protocol.cc.

References m_address.

Referenced by HandleDataFrame(), RemoveRoutingStuff(), and RequestRoute().

+ Here is the caller graph for this function:

TypeId ns3::flame::FlameProtocol::GetTypeId ( void  )
static

This method returns the TypeId associated to ns3::flame::FlameProtocol.

This object is accessible through the following paths with Config::Set and Config::Connect:

  • /NodeList/[i]/DeviceList/[i]/$ns3::MeshPointDevice/RoutingProtocol/$ns3::flame::FlameProtocol

Attributes defined for this type:

  • BroadcastInterval: How often we must send broadcast packets
    • Set with class: TimeValue
    • Underlying type: Time
    • Initial value: +5000000000.0ns
    • Flags: construct write read
  • MaxCost: Cost threshold after which packet will be dropped

No TraceSources defined for this type.

Reimplemented from ns3::MeshL2RoutingProtocol.

Definition at line 107 of file flame-protocol.cc.

References m_broadcastInterval, m_maxCost, ns3::Seconds(), and ns3::TypeId::SetParent().

+ Here is the call graph for this function:

bool ns3::flame::FlameProtocol::HandleDataFrame ( uint16_t  seqno,
Mac48Address  source,
const FlameHeader  flameHdr,
Mac48Address  receiver,
uint32_t  fromIface 
)
private
bool ns3::flame::FlameProtocol::Install ( Ptr< MeshPointDevice mp)

Install FLAME on given mesh point.

Installing protocol cause installing its interface MAC plugins.

Also MP aggregates all installed protocols, FLAME protocol can be accessed via MeshPointDevice::GetObject<flame::FlameProtocol>();

Definition at line 290 of file flame-protocol.cc.

References ns3::Object::AggregateObject(), ns3::Mac48Address::ConvertFrom(), ns3::MeshPointDevice::GetAddress(), ns3::MeshPointDevice::GetInterfaces(), ns3::MeshWifiInterfaceMac::InstallPlugin(), m_address, m_interfaces, ns3::MeshL2RoutingProtocol::m_mp, ns3::MeshWifiInterfaceMac::SetBeaconGeneration(), and ns3::MeshPointDevice::SetRoutingProtocol().

Referenced by ns3::FlameStack::InstallStack().

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

FlameProtocol& ns3::flame::FlameProtocol::operator= ( const FlameProtocol )
private
bool ns3::flame::FlameProtocol::RemoveRoutingStuff ( uint32_t  fromIface,
const Mac48Address  source,
const Mac48Address  destination,
Ptr< Packet packet,
uint16_t &  protocolType 
)
virtual
void ns3::flame::FlameProtocol::Report ( std::ostream &  os) const

Statistics.

Definition at line 362 of file flame-protocol.cc.

References ns3::Time::GetSeconds(), m_address, m_broadcastInterval, m_interfaces, m_maxCost, m_stats, and ns3::flame::FlameProtocol::Statistics::Print().

Referenced by ns3::FlameStack::Report().

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

bool ns3::flame::FlameProtocol::RequestRoute ( uint32_t  sourceIface,
const Mac48Address  source,
const Mac48Address  destination,
Ptr< const Packet packet,
uint16_t  protocolType,
RouteReplyCallback  routeReply 
)
virtual
void ns3::flame::FlameProtocol::ResetStats ( )

Definition at line 376 of file flame-protocol.cc.

References m_interfaces, and m_stats.

Referenced by ns3::FlameStack::ResetStats().

+ Here is the caller graph for this function:

Member Data Documentation

const uint16_t ns3::flame::FlameProtocol::FLAME_PROTOCOL = 0x4040
staticprivate

LLC protocol number reserved by flame.

Definition at line 112 of file flame-protocol.h.

Referenced by RemoveRoutingStuff(), and RequestRoute().

Mac48Address ns3::flame::FlameProtocol::m_address
private

Definition at line 125 of file flame-protocol.h.

Referenced by GetAddress(), Install(), and Report().

Time ns3::flame::FlameProtocol::m_broadcastInterval
private

Definition at line 131 of file flame-protocol.h.

Referenced by GetTypeId(), RemoveRoutingStuff(), Report(), and RequestRoute().

FlamePluginMap ns3::flame::FlameProtocol::m_interfaces
private

Definition at line 124 of file flame-protocol.h.

Referenced by DoDispose(), Install(), Report(), and ResetStats().

Time ns3::flame::FlameProtocol::m_lastBroadcast
private

Definition at line 132 of file flame-protocol.h.

Referenced by RemoveRoutingStuff(), and RequestRoute().

uint8_t ns3::flame::FlameProtocol::m_maxCost
private

Max Cost value (or TTL, because cost is actually hopcount)

Definition at line 135 of file flame-protocol.h.

Referenced by GetTypeId(), HandleDataFrame(), and Report().

uint16_t ns3::flame::FlameProtocol::m_myLastSeqno
private

Sequence number:

Definition at line 137 of file flame-protocol.h.

Referenced by RequestRoute().

Ptr<FlameRtable> ns3::flame::FlameProtocol::m_rtable
private

Routing table:

Definition at line 139 of file flame-protocol.h.

Referenced by DoDispose(), HandleDataFrame(), and RequestRoute().

Statistics ns3::flame::FlameProtocol::m_stats
private

Definition at line 152 of file flame-protocol.h.

Referenced by HandleDataFrame(), Report(), RequestRoute(), and ResetStats().


The documentation for this class was generated from the following files: