nn::socket::AddrInfo Structure

Syntax

struct AddrInfo
{
   int         flags;
   int         family;
   int         sockType;
   int         protocol;
   unsigned    addrLen;
   char*       canonName;
   void*       addr;
   AddrInfo * next;
};

Description

A structure used with the GetAddrInfo function.

Member Variables

flags Flags
family The socket's address family.
sockType The socket type.
protocol The socket's protocol.
addrLen The size of the socket structure.
canonName The canonical name.
addr A pointer to the socket structure.
next A pointer to the next AddrInfo. This is NULL at the end of a list.

Revision History

2010/11/10
Initial version.

CONFIDENTIAL