#include <SCTP.h>
Public Member Functions | |
bool | operator< (const VTagPair &b) const |
Public Attributes | |
uint32 | peerVTag |
uint16 | localPort |
uint16 | remotePort |
bool SCTP::VTagPair::operator< | ( | const VTagPair & | b | ) | const [inline] |
00125 { 00126 if (peerVTag!=b.peerVTag) 00127 return peerVTag<b.peerVTag; 00128 else if (remotePort!=b.remotePort) 00129 return remotePort<b.remotePort; 00130 else 00131 return localPort<b.localPort; 00132 }
uint32 SCTP::VTagPair::peerVTag |
Referenced by SCTP::findAssocWithVTag(), operator<(), and SCTPAssociation::stateEntered().
uint16 SCTP::VTagPair::localPort |
Referenced by SCTP::findAssocWithVTag(), operator<(), and SCTPAssociation::stateEntered().
uint16 SCTP::VTagPair::remotePort |
Referenced by SCTP::findAssocWithVTag(), operator<(), and SCTPAssociation::stateEntered().