INET Framework for OMNeT++/OMNEST
inet::ieee80211::BasicReassembly::Key Struct Reference

#include <BasicReassembly.h>

Public Member Functions

bool operator== (const Key &o) const
 
bool operator< (const Key &o) const
 

Public Attributes

MacAddress macAddress
 
Tid tid
 
SequenceNumber seqNum
 

Member Function Documentation

◆ operator<()

bool inet::ieee80211::BasicReassembly::Key::operator< ( const Key o) const
inline
26 { return macAddress < o.macAddress || (macAddress == o.macAddress && (tid < o.tid || (tid == o.tid && seqNum < o.seqNum))); }

◆ operator==()

bool inet::ieee80211::BasicReassembly::Key::operator== ( const Key o) const
inline
25 { return macAddress == o.macAddress && tid == o.tid && seqNum == o.seqNum; }

Member Data Documentation

◆ macAddress

◆ seqNum

◆ tid


The documentation for this struct was generated from the following file:
inet::ieee80211::BasicReassembly::Key::seqNum
SequenceNumber seqNum
Definition: BasicReassembly.h:24
inet::ieee80211::BasicReassembly::Key::tid
Tid tid
Definition: BasicReassembly.h:23
inet::ieee80211::BasicReassembly::Key::macAddress
MacAddress macAddress
Definition: BasicReassembly.h:22