summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>2015-01-18 21:47:16 +0000
committermillert <millert@openbsd.org>2015-01-18 21:47:16 +0000
commit129656156f355eca4973e98c0c13d19f4debf996 (patch)
tree9077a72b6acd6bf0512637341f91224eec1c7225
parentintroduce hostkeys_foreach() to allow iteration over a (diff)
downloadwireguard-openbsd-129656156f355eca4973e98c0c13d19f4debf996.tar.xz
wireguard-openbsd-129656156f355eca4973e98c0c13d19f4debf996.zip
Back out previous. HOST_NAME_MAX is only defined for newer POSIX
revisions so it is not safe to define MAXHOSTNAMELEN in terms of it.
-rw-r--r--sys/sys/param.h4
-rw-r--r--sys/sys/syslimits.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/sys/param.h b/sys/sys/param.h
index 72716125be4..6c43583b53b 100644
--- a/sys/sys/param.h
+++ b/sys/sys/param.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: param.h,v 1.110 2015/01/17 15:03:09 millert Exp $ */
+/* $OpenBSD: param.h,v 1.111 2015/01/18 21:47:16 millert Exp $ */
/*-
* Copyright (c) 1982, 1986, 1989, 1993
@@ -74,7 +74,7 @@
#define NOFILE OPEN_MAX /* max open files per process (soft) */
#define NOFILE_MAX 1024 /* max open files per process (hard) */
#define NOGROUP 65535 /* marker for empty group set member */
-#define MAXHOSTNAMELEN (HOST_NAME_MAX+1) /* max hostname size */
+#define MAXHOSTNAMELEN 256 /* max hostname length w/ NUL */
/* More types and definitions used throughout the kernel. */
#ifdef _KERNEL
diff --git a/sys/sys/syslimits.h b/sys/sys/syslimits.h
index 43b828d9e04..fdf5dc9d9bd 100644
--- a/sys/sys/syslimits.h
+++ b/sys/sys/syslimits.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: syslimits.h,v 1.12 2013/03/24 19:55:45 guenther Exp $ */
+/* $OpenBSD: syslimits.h,v 1.13 2015/01/18 21:47:16 millert Exp $ */
/* $NetBSD: syslimits.h,v 1.12 1995/10/05 05:26:19 thorpej Exp $ */
/*
@@ -73,5 +73,5 @@
#endif /* __XPG_VISIBLE >= 500 || __POSIX_VISIBLE >= 199506 || __BSD_VISIBLE */
#if __POSIX_VISIBLE >= 200112
-#define HOST_NAME_MAX 255
+#define HOST_NAME_MAX 255 /* max hostname length w/o NUL */
#endif