Public Member Functions | Public Attributes

SCTP::SockPair Struct Reference

#include <SCTP.h>

List of all members.

Public Member Functions

bool operator< (const SockPair &b) const

Public Attributes

IPvXAddress localAddr
IPvXAddress remoteAddr
uint16 localPort
uint16 remotePort

Detailed Description

Definition at line 101 of file SCTP.h.


Member Function Documentation

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


Member Data Documentation


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