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