sbase/hostname.c

47 lines
681 B
C
Raw Normal View History

2013-08-19 16:22:46 +00:00
/* See LICENSE file for copyright and license details. */
2014-02-11 10:59:53 +00:00
#include <limits.h>
2013-08-19 16:22:46 +00:00
#include <stdio.h>
#include <stdlib.h>
2013-08-19 16:22:46 +00:00
#include <string.h>
2014-02-11 10:59:53 +00:00
#include <unistd.h>
2013-08-19 16:22:46 +00:00
#include "util.h"
static void
usage(void)
{
eprintf("usage: %s [name]\n", argv0);
}
int
main(int argc, char *argv[])
{
2014-02-14 15:01:15 +00:00
long sz;
char *host;
sz = sysconf(_SC_HOST_NAME_MAX);
if (sz < 0)
sz = 255;
host = malloc(sz + 1);
if (!host)
eprintf("malloc:");
2013-08-19 16:22:46 +00:00
ARGBEGIN {
default:
usage();
} ARGEND;
if (argc < 1) {
2014-02-14 15:01:15 +00:00
if (gethostname(host, sz + 1) < 0)
2013-08-19 16:22:46 +00:00
eprintf("gethostname:");
2014-02-11 10:59:53 +00:00
puts(host);
2013-08-19 16:22:46 +00:00
} else {
if (sethostname(argv[0], strlen(argv[0])) < 0)
2013-08-19 16:22:46 +00:00
eprintf("sethostname:");
}
2014-02-14 15:01:15 +00:00
free(host);
2014-10-02 22:46:04 +00:00
return 0;
2013-08-19 16:22:46 +00:00
}