Socket network functions

Socket network functions allow application programs to obtain information from the host, protocol, service, and network files.

The information can be accessed by name or by address, or by sequential access of the file. These network functions (or routines) are required when setting up communications between programs that run across networks, and thus are not used by AF_UNIX sockets.

The routines are as follows:

Included in the network routines is a group of routines called resolver routines. These routines make, send, and interpret packets for name servers in the Internet domain and are also used to do name resolution. The resolver routines normally get called by gethostbyname(), gethostbyaddr(), getnameinfo(), and getaddrinfo() but can be called directly. Primarily resolver routines are used for accessing Domain Name System (DNS) through socket application.

Related concepts
Socket characteristics
Related reference
Example: Use gethostbyaddr_r() for threadsafe network routines
Domain Name System support
Related information
Sockets Network Functions (Routines)
gethostbyname()
getaddrinfo()
gethostbyaddr()
getnameinfo()