#include <SCTP.h>
Public Member Functions | |
bool | operator< (const SockPair &b) const |
Public Attributes | |
IPvXAddress | localAddr |
IPvXAddress | remoteAddr |
uint16 | localPort |
uint16 | remotePort |
bool SCTP::SockPair::operator< | ( | const SockPair & | b | ) | const [inline] |
00107 { 00108 if (remoteAddr!=b.remoteAddr) 00109 return remoteAddr<b.remoteAddr; 00110 else if (localAddr!=b.localAddr) 00111 return localAddr<b.localAddr; 00112 else if (remotePort!=b.remotePort) 00113 return remotePort<b.remotePort; 00114 else 00115 return localPort<b.localPort; 00116 }
Referenced by SCTP::addForkedAssociation(), SCTP::addLocalAddress(), SCTP::addLocalAddressToAllRemoteAddresses(), SCTP::addRemoteAddress(), SCTP::findAssocForMessage(), operator<(), SCTP::printInfoConnMap(), SCTP::removeLocalAddressFromAllRemoteAddresses(), SCTP::removeRemoteAddressFromAllConnections(), and SCTP::updateSockPair().
Referenced by SCTP::addForkedAssociation(), SCTP::addLocalAddress(), SCTP::addLocalAddressToAllRemoteAddresses(), SCTP::addRemoteAddress(), SCTP::findAssocForMessage(), operator<(), SCTP::printInfoConnMap(), SCTP::removeLocalAddressFromAllRemoteAddresses(), SCTP::removeRemoteAddressFromAllConnections(), and SCTP::updateSockPair().
uint16 SCTP::SockPair::localPort |
Referenced by SCTP::addForkedAssociation(), SCTP::addLocalAddress(), SCTP::addLocalAddressToAllRemoteAddresses(), SCTP::addRemoteAddress(), SCTP::findAssocForMessage(), operator<(), SCTP::printInfoConnMap(), SCTP::removeLocalAddressFromAllRemoteAddresses(), SCTP::removeRemoteAddressFromAllConnections(), and SCTP::updateSockPair().
uint16 SCTP::SockPair::remotePort |
Referenced by SCTP::addForkedAssociation(), SCTP::addLocalAddress(), SCTP::addLocalAddressToAllRemoteAddresses(), SCTP::addRemoteAddress(), SCTP::findAssocForMessage(), operator<(), SCTP::printInfoConnMap(), SCTP::removeLocalAddressFromAllRemoteAddresses(), SCTP::removeRemoteAddressFromAllConnections(), and SCTP::updateSockPair().