#include <TCP.h>
Public Member Functions | |
| bool | operator< (const AppConnKey &b) const |
Public Attributes | |
| int | appGateIndex |
| int | connId |
Definition at line 99 of file TCP.h.
| bool TCP::AppConnKey::operator< | ( | const AppConnKey & | b | ) | const [inline] |
Definition at line 104 of file TCP.h.
{
if (appGateIndex!=b.appGateIndex)
return appGateIndex<b.appGateIndex;
else
return connId<b.connId;
}
Definition at line 101 of file TCP.h.
Referenced by TCP::addForkedConnection(), TCP::findConnForApp(), TCP::handleMessage(), operator<(), and TCP::removeConnection().
Definition at line 102 of file TCP.h.
Referenced by TCP::addForkedConnection(), TCP::findConnForApp(), TCP::handleMessage(), operator<(), and TCP::removeConnection().
1.7.1