Public Member Functions | Public Attributes

TCP::AppConnKey Struct Reference

#include <TCP.h>

List of all members.

Public Member Functions

bool operator< (const AppConnKey &b) const

Public Attributes

int appGateIndex
int connId

Detailed Description

Definition at line 99 of file TCP.h.


Member Function Documentation

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;
        }


Member Data Documentation


The documentation for this struct was generated from the following file: