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 | int | Flags | |
|---|---|---|---|
| family | int | The socket's address family. | |
| sockType | int | The socket type. | |
| protocol | int | The socket's protocol. | |
| addrLen | unsigned | The size of the socket structure. | |
| canonName | char * | The canonical name. | |
| addr | void * | A pointer to the socket structure. | |
| next | AddrInfo * | A pointer to the next AddrInfo. This is NULL at the end of a list. |
CONFIDENTIAL