#include <SCTP.h>
Public Member Functions | |
| bool | operator< (const SockPair &b) const |
Public Attributes | |
| IPvXAddress | localAddr |
| IPvXAddress | remoteAddr |
| uint16 | localPort |
| uint16 | remotePort |
Definition at line 101 of file SCTP.h.
| bool SCTP::SockPair::operator< | ( | const SockPair & | b | ) | const [inline] |
Definition at line 108 of file SCTP.h.
{
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;
}
Definition at line 103 of file SCTP.h.
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 |
Definition at line 105 of file SCTP.h.
Referenced by SCTP::addForkedAssociation(), SCTP::addLocalAddress(), SCTP::addLocalAddressToAllRemoteAddresses(), SCTP::addRemoteAddress(), SCTP::findAssocForMessage(), operator<(), SCTP::printInfoConnMap(), SCTP::removeLocalAddressFromAllRemoteAddresses(), SCTP::removeRemoteAddressFromAllConnections(), and SCTP::updateSockPair().
Definition at line 104 of file SCTP.h.
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 |
Definition at line 106 of file SCTP.h.
Referenced by SCTP::addForkedAssociation(), SCTP::addLocalAddress(), SCTP::addLocalAddressToAllRemoteAddresses(), SCTP::addRemoteAddress(), SCTP::findAssocForMessage(), operator<(), SCTP::printInfoConnMap(), SCTP::removeLocalAddressFromAllRemoteAddresses(), SCTP::removeRemoteAddressFromAllConnections(), and SCTP::updateSockPair().
1.7.1