GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
GETIPNODEBYNAME(3) FreeBSD Library Functions Manual GETIPNODEBYNAME(3)

getipnodebyname, getipnodebyaddrget network host entry
freehostent
free network host entry

#include <netdb.h>


struct hostent *
getipnodebyname(const char *name, int af, int flags, int *error);

struct hostent *
getipnodebyaddr(const void *addr, size_t len, int af, int *error);

void
freehostent(struct hostent *he);

(), and () each return a pointer to a hostent structure (see below) describing an internet host referenced by name or by address, as the function names indicate. This structure contains either the information obtained from the name server, or broken-out fields from a line in /etc/hosts. If the local name server is not running, these routines do a lookup in /etc/hosts.

struct	hostent {
	char	*h_name;	/* official name of host */
	char	**h_aliases;	/* alias list */
	int	h_addrtype;	/* host address type */
	int	h_length;	/* length of address */
	char	**h_addr_list;	/* list of addresses from name server */
};

#define	h_addr  h_addr_list[0]	/* address, for backward compatibility */

The members of this structure are:

h_name
Official name of the host.
h_aliases
A zero-terminated array of alternate names for the host.
h_addrtype
The type of address being returned.
h_length
The length, in bytes, of the address.
h_addr_list
A zero-terminated array of network addresses for the host. Host addresses are returned in network byte order.
h_addr
The first address in h_addr_list; this is for backward compatibility.

This structure should be freed after use by calling ().

When using the nameserver, () will search for the named host in each parent domain given in the “search” directive of resolv.conf(5) unless the name contains a dot (“.”). If the name contains no dot, and if the environment variable HOSTALIASES contains the name of an alias file, the alias file will first be searched for an alias matching the input name. See hostname(7) for the domain search procedure and the alias file format.

() can be told to look for IPv4 addresses, IPv6 addresses or both IPv4 and IPv6. If IPv4 addresses only are to be looked up then af should be set to AF_INET, otherwise it should be set to AF_INET6.

There are three flags that can be set

Return IPv4 addresses if no IPv6 addresses are found. This flag is ignored unless af is AF_INET6.
Return IPv4 addresses as well IPv6 addresses if AI_V4MAPPED is set. This flag is ignored unless af is AF_INET6.
Only return addresses of a given type if the system has an active interface with that type.

Also AI_DEFAULT is defined to be (AI_V4MAPPED|AI_ADDRCONFIG).

() will lookup IPv4 mapped and compatible addresses in the IPv4 name space and IPv6 name space

() frees the hostent structure allocated be () and getipnodebyaddr(). The structures returned by (), (), () and () should not be passed to freehostent() as they are pointers to static areas.

Name of file containing (host alias, full hostname) pairs.

/etc/hosts
See hosts(5).

Error return status from getipnodebyname() and getipnodebyaddr() is indicated by return of a null pointer. In this case error may then be checked to see whether this is a temporary failure or an invalid or unknown host. errno can have the following values:

This indicates an internal error in the library, unrelated to the network or name service. errno will be valid in this case; see perror.
No such host is known.
This is usually a temporary error and means that the local server did not receive a response from an authoritative server. A retry at some later time may succeed.
Some unexpected server failure was encountered. This is a non-recoverable error, as one might expect.
The requested name is valid but does not have an IP address; this is not a temporary error. This means that the name is known to the name server but there is no address associated with this name. Another type of request to the name server using this domain name will result in an answer; for example, a mail-forwarder may be registered for this domain.

hosts(5), hostname(7), resolver(3), resolver(5), gethostbyname(3), RFC2553.

September 17, 1999 BSD 4

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.