| GETHOSTENT(3N) | 7 September 1988 | GETHOSTENT(3N) |
| NAME |
| gethostent, gethostbyaddr, gethostbyname, sethostent, endhostent - get network host entry |
| SYNOPSIS |
|
struct hostent *gethostent() struct hostent *gethostbyname(name) char *name; struct hostent *gethostbyaddr(addr, len, type) char *addr; int len, type; sethostent(stayopen) int stayopen endhostent() |
| DESCRIPTION |
|
gethostent, gethostbyname, and gethostbyaddr() each return a pointer to an object with the following structure containing the broken-out fields of a line in the network host data base, /etc/hosts. In the case of gethostbyaddr(), addr is a pointer to the binary format address of length len (not a character string).
The members of this structure are:
gethostent() reads the next line of the file, opening the file if necessary. sethostent() opens and rewinds the file. If the stayopen flag is non-zero, the host data base will not be closed after each call to gethostent() (either directly, or indirectly through one of the other (gethost) calls). endhostent() closes the file. gethostbyname() and gethostbyaddr() sequentially search from the beginning of the file until a matching host name or host address is found, or until end-of-file is encountered. Host addresses are supplied in network order. |
| FILES |
|
| SEE ALSO |
| DIAGNOSTICS |
| A NULL pointer is returned on end-of-file or error. |
| BUGS |
| All information is contained in a static area so it must be copied if it is to be saved. Only the Internet address format is currently understood. |
| GETHOSTENT(3N) | 7 September 1988 | GETHOSTENT(3N) |