2017-09-17 11:45:03 -04:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2018-03-28 13:46:27 -04:00
|
|
|
#include <errno.h>
|
2018-03-28 12:26:56 -04:00
|
|
|
#include <stdio.h>
|
2018-03-28 13:46:27 -04:00
|
|
|
#include <string.h>
|
2017-09-17 10:18:17 -04:00
|
|
|
#include <unistd.h>
|
|
|
|
|
2017-09-24 09:33:01 -04:00
|
|
|
#include "../util.h"
|
2017-09-17 10:18:17 -04:00
|
|
|
|
|
|
|
const char *
|
|
|
|
hostname(void)
|
|
|
|
{
|
|
|
|
if (gethostname(buf, sizeof(buf)) == -1) {
|
2018-03-28 13:46:27 -04:00
|
|
|
fprintf(stderr, "gethostbyname: %s\n", strerror(errno));
|
2017-09-17 10:18:17 -04:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return buf;
|
|
|
|
}
|