#include <TCP.h>
Public Member Functions | |
bool | operator< (const AppConnKey &b) const |
Public Attributes | |
int | appGateIndex |
int | connId |
bool TCP::AppConnKey::operator< | ( | const AppConnKey & | b | ) | const [inline] |
00109 { 00110 if (appGateIndex!=b.appGateIndex) 00111 return appGateIndex<b.appGateIndex; 00112 else 00113 return connId<b.connId; 00114 }