nn::socket::AddrInfo Structurestruct AddrInfo
{
int flags;
int family;
int sockType;
int protocol;
unsigned addrLen;
char* canonName;
void* addr;
AddrInfo * next;
};
A structure used with the GetAddrInfo function.
| 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. |
CONFIDENTIAL