sockaddr
A version of this page is also available for
4/8/2010
This structure varies depending on the protocol selected. Except for the sa_family member, sockaddr contents are expressed in network byte order.
Syntax
struct sockaddr {
u_short sa_family;
char sa_data[14];
};
Members
- sa_family
Address family.
- sa_data[14]
Contains the address in a protocol-dependent format.
Remarks
For Winsock functions that use sockaddr, the name parameter is not strictly interpreted as a pointer to a sockaddr structure. It is presented in this manner for Windows Sockets compatibility. The actual structure is interpreted differently in the context of different address families. The only requirements are that the first u_short
is the address family and the total size of the memory buffer in bytes is namelen.
The following structure declaration is used with TCP/IP. Other protocols use similar structures.
struct sockaddr_in {
short sin_family;
u_short sin_port;
struct in_addr sin_addr;
char sin_zero[8];
};
Requirements
Header | winsock2.h |
Windows Embedded CE | Windows CE .NET 4.0 and later |
Windows Mobile | Windows Mobile Version 5.0 and later |