]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/basic/hostname-util.h
pkgconfig: define variables relative to ${prefix}/${rootprefix}/${sysconfdir}
[thirdparty/systemd.git] / src / basic / hostname-util.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 #pragma once
3
4 #include <stdbool.h>
5 #include <stdio.h>
6
7 #include "macro.h"
8
9 bool hostname_is_set(void);
10
11 char* gethostname_malloc(void);
12 int gethostname_strict(char **ret);
13
14 bool hostname_is_valid(const char *s, bool allow_trailing_dot) _pure_;
15 char* hostname_cleanup(char *s);
16
17 #define machine_name_is_valid(s) hostname_is_valid(s, false)
18
19 bool is_localhost(const char *hostname);
20 bool is_gateway_hostname(const char *hostname);
21
22 int sethostname_idempotent(const char *s);
23
24 int shorten_overlong(const char *s, char **ret);
25
26 int read_etc_hostname_stream(FILE *f, char **ret);
27 int read_etc_hostname(const char *path, char **ret);