sbase/hostname.c

35 lines
542 B
C
Raw Normal View History

2013-08-19 12:22:46 -04:00
/* See LICENSE file for copyright and license details. */
2014-02-11 05:59:53 -05:00
#include <limits.h>
2013-08-19 12:22:46 -04:00
#include <stdio.h>
#include <string.h>
2014-02-11 05:59:53 -05:00
#include <unistd.h>
2013-08-19 12:22:46 -04:00
#include "util.h"
static void
usage(void)
{
eprintf("usage: %s [name]\n", argv0);
}
int
main(int argc, char *argv[])
{
char host[HOST_NAME_MAX + 1];
2013-08-19 12:22:46 -04:00
ARGBEGIN {
default:
usage();
} ARGEND;
if (argc < 1) {
if (gethostname(host, sizeof(host)) < 0)
2013-08-19 12:22:46 -04:00
eprintf("gethostname:");
2014-02-11 05:59:53 -05:00
puts(host);
2013-08-19 12:22:46 -04:00
} else {
if (sethostname(argv[0], strlen(argv[0])) < 0)
2013-08-19 12:22:46 -04:00
eprintf("sethostname:");
}
2014-10-02 18:46:04 -04:00
return 0;
2013-08-19 12:22:46 -04:00
}