INET Framework for OMNeT++/OMNEST
TCP_NSC_Connection::SockPair Class Reference

#include <TCP_NSC_Connection.h>

List of all members.

Public Member Functions

bool operator< (const SockPair &b) const
bool operator== (const SockPair &b) const

Public Attributes

SockAddr remoteM
SockAddr localM

Member Function Documentation

bool TCP_NSC_Connection::SockPair::operator< ( const SockPair b) const [inline]
        {
            if (remoteM == b.remoteM)
                return localM < b.localM;
            return remoteM < b.remoteM;
        }
bool TCP_NSC_Connection::SockPair::operator== ( const SockPair b) const [inline]
        {
            return (remoteM == b.remoteM) && (localM == b.localM);
        }

Member Data Documentation


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