summaryrefslogtreecommitdiff
path: root/src/basic/hostname-util.c
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2020-12-10 11:10:54 +0100
committerLennart Poettering <lennart@poettering.net>2020-12-10 20:44:41 +0100
commit3c94f7147211ff8f913ddc41901ec5147872074e (patch)
tree4eebbf450a57a9c9ca3dffd8ae5a1570be89bea3 /src/basic/hostname-util.c
parent8374bf4fa2663b19f329801abfd8b29e66897380 (diff)
downloadsystemd-3c94f7147211ff8f913ddc41901ec5147872074e.tar.gz
Drop compat "gateway" name
Back in 5248e7e1f11aba6859de0b28f0dd3778b22842f2 (July 2017) we moved over to "_gateway", with the old name declared to be temporary measure. Since we're doing a bunch of changes to resolved now, it seems to be a good moment to make this simplification and not add support for the compat name in new code.
Diffstat (limited to 'src/basic/hostname-util.c')
-rw-r--r--src/basic/hostname-util.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/basic/hostname-util.c b/src/basic/hostname-util.c
index 09e49ccb7d..5c3157fdf2 100644
--- a/src/basic/hostname-util.c
+++ b/src/basic/hostname-util.c
@@ -212,20 +212,6 @@ bool is_localhost(const char *hostname) {
endswith_no_case(hostname, ".localhost.localdomain.");
}
-bool is_gateway_hostname(const char *hostname) {
- assert(hostname);
-
- /* This tries to identify the valid syntaxes for the our
- * synthetic "gateway" host. */
-
- return
- strcaseeq(hostname, "_gateway") || strcaseeq(hostname, "_gateway.")
-#if ENABLE_COMPAT_GATEWAY_HOSTNAME
- || strcaseeq(hostname, "gateway") || strcaseeq(hostname, "gateway.")
-#endif
- ;
-}
-
int sethostname_idempotent(const char *s) {
char buf[HOST_NAME_MAX + 1] = {};