INET Framework for OMNeT++/OMNEST
|
#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] |
{ if (remoteAddr!=b.remoteAddr) return remoteAddr<b.remoteAddr; else if (localAddr!=b.localAddr) return localAddr<b.localAddr; else if (remotePort!=b.remotePort) return remotePort<b.remotePort; else return localPort<b.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::localPort |
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::remotePort |
Referenced by SCTP::addForkedAssociation(), SCTP::addLocalAddress(), SCTP::addLocalAddressToAllRemoteAddresses(), SCTP::addRemoteAddress(), SCTP::findAssocForMessage(), operator<(), SCTP::printInfoConnMap(), SCTP::removeLocalAddressFromAllRemoteAddresses(), SCTP::removeRemoteAddressFromAllConnections(), and SCTP::updateSockPair().