This section explains how to identify the particular machine that your program is running on. The identification of a machine consists of its Internet host name and Internet address; see section The Internet Namespace. The host name should always be a fully qualified domain name, like `crispy-wheats-n-chicken.ai.mit.edu', not a simple name like just `crispy-wheats-n-chicken'.
Prototypes for these functions appear in `unistd.h'. The shell
commands hostname
and hostid
work by calling them.
The return value is 0
on success and -1
on failure. In
the GNU C library, gethostname
fails if size is not large
enough; then you can try again with a larger array. The following
errno
error condition is defined for this function:
ENAMETOOLONG
On some systems, there is a symbol for the maximum possible host name
length: MAXHOSTNAMELEN
. It is defined in `sys/param.h'.
But you can't count on this to exist, so it is cleaner to handle
failure and try again.
gethostname
stores the beginning of the host name in name
even if the host name won't entirely fit. For some purposes, a
truncated host name is good enough. If it is, you can ignore the
error code.
sethostname
function sets the name of the host machine to
name, a string with length length. Only privileged
processes are allowed to do this. Usually it happens just once, at
system boot time.
The return value is 0
on success and -1
on failure.
The following errno
error condition is defined for this function:
EPERM
long int
. However, some
systems it is a meaningless but unique number which is hard-coded for
each machine.
sethostid
function sets the "host ID" of the host machine
to id. Only privileged processes are allowed to do this. Usually
it happens just once, at system boot time.
The return value is 0
on success and -1
on failure.
The following errno
error condition is defined for this function:
EPERM
ENOSYS
Go to the first, previous, next, last section, table of contents.