sockaddr_in (Windows CE 5.0)
In the Internet address family, this structure is used by Windows Sockets to specify a local or remote endpoint address to which to connect a socket. This is the form of the sockaddr structure specific to the Internet address family and can be cast to sockaddr.
struct sockaddr_in{shortsin_family;
unsigned shortsin_port;
IN_ADDR sin_addr;
charsin_zero[8];
};
Members
- sin_family
Address family; must be AF_INET. - sin_port
Internet Protocol (IP) port. - sin_addr
IP address in network byte order. - sin_zero
Padding to make structure the same size as SOCKADDR.
Remarks
The IP address part of this structure is of type in_addr.
Requirements
OS Versions: Windows CE 1.0 and later.
Header: Winsock2.h.
See Also
in_addr | sockaddr | sockaddr_in6
Send Feedback on this topic to the authors