Socket address structure for IPV4 addresses. Used to specify socket address information to connect to. Can be cast to sockaddr structure.
More...
#include <socket.h>
Socket address structure for IPV4 addresses. Used to specify socket address information to connect to. Can be cast to sockaddr structure.
Definition at line 455 of file socket.h.
◆ sin_addr
IP Address of the socket. The IP address is of type in_addr structure. Can be set to "0" to accept any IP address for server operation.
Definition at line 469 of file socket.h.
◆ sin_family
uint16 sockaddr_in::sin_family |
Specifies the address family(AF). Members of AF_INET address family are IPv4 addresses. Hence,the only supported value for this is AF_INET.
Definition at line 456 of file socket.h.
◆ sin_port
Port number of the socket. Network sockets are identified by a pair of IP addresses and port number. Must be set in the Network Byte Order format , _htons (e.g. _htons(80)). Can NOT have zero value.
Definition at line 462 of file socket.h.
◆ sin_zero
uint8 sockaddr_in::sin_zero[8] |
The documentation for this struct was generated from the following file: