#include <socket.h>
Data Fields | |
| union { | |
| sockaddr address | |
| sockaddr_in ipv4 | |
| sockaddr_in6 ipv6 | |
| }; | |
This would be used for tcpip socket connections. We do not use sockaddr_storage because it is not present in pre ipv6 stacks, and because the storage size also includes the size of the path of a unix domain socket on posix systems.
Definition at line 101 of file socket.h.
1.4.7