INET Framework for OMNeT++/OMNEST
inet::sctp::Sctp::AppAssocKey Struct Reference

#include <Sctp.h>

Public Member Functions

bool operator< (const AppAssocKey &b) const
 

Public Attributes

int32_t appGateIndex
 
int32_t assocId
 

Member Function Documentation

◆ operator<()

bool inet::sctp::Sctp::AppAssocKey::operator< ( const AppAssocKey b) const
inline
88  {
89  if (appGateIndex != b.appGateIndex)
90  return appGateIndex < b.appGateIndex;
91  else
92  return assocId < b.assocId;
93  }

Member Data Documentation

◆ appGateIndex

◆ assocId


The documentation for this struct was generated from the following file:
inet::sctp::Sctp::AppAssocKey::assocId
int32_t assocId
Definition: Sctp.h:85
inet::units::values::b
value< int64_t, units::b > b
Definition: Units.h:1241
inet::sctp::Sctp::AppAssocKey::appGateIndex
int32_t appGateIndex
Definition: Sctp.h:84