2017-09-17 23:45:03 +08:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2018-03-29 00:26:56 +08:00
|
|
|
#include <stdio.h>
|
2017-09-17 22:18:17 +08:00
|
|
|
#include <unistd.h>
|
|
|
|
|
2017-09-24 21:33:01 +08:00
|
|
|
#include "../util.h"
|
2022-10-27 04:14:53 +08:00
|
|
|
#include "../slstatus.h"
|
2017-09-17 22:18:17 +08:00
|
|
|
|
|
|
|
const char *
|
2022-10-27 04:16:05 +08:00
|
|
|
hostname(const char *unused)
|
2017-09-17 22:18:17 +08:00
|
|
|
{
|
2018-05-07 04:28:56 +08:00
|
|
|
if (gethostname(buf, sizeof(buf)) < 0) {
|
2018-05-18 16:59:05 +08:00
|
|
|
warn("gethostbyname:");
|
2017-09-17 22:18:17 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return buf;
|
|
|
|
}
|