git: 3a92927bb69f - main - bhyve: change a default address from ANY to localhost
Mariusz Zaborski
oshogbo at FreeBSD.org
Sat Aug 21 17:43:00 UTC 2021
The branch main has been updated by oshogbo:
URL: https://cgit.FreeBSD.org/src/commit/?id=3a92927bb69f2d3fcd3dec4c909aab2191f4b848
commit 3a92927bb69f2d3fcd3dec4c909aab2191f4b848
Author: Mariusz Zaborski <oshogbo at FreeBSD.org>
AuthorDate: 2021-08-19 18:00:35 +0000
Commit: Mariusz Zaborski <oshogbo at FreeBSD.org>
CommitDate: 2021-08-21 17:43:17 +0000
bhyve: change a default address from ANY to localhost
Discussed with: grehan, jhb
---
usr.sbin/bhyve/gdb.c | 8 ++------
1 file changed, 2 insertions(+), 6 deletions(-)
diff --git a/usr.sbin/bhyve/gdb.c b/usr.sbin/bhyve/gdb.c
index 3e12c50f64cb..0cee1c8f9543 100644
--- a/usr.sbin/bhyve/gdb.c
+++ b/usr.sbin/bhyve/gdb.c
@@ -1840,11 +1840,7 @@ init_gdb(struct vmctx *_ctx)
saddr = get_config_value("gdb.address");
if (saddr == NULL) {
-#if defined(INET)
- saddr = "0.0.0.0";
-#elif defined(INET6)
- saddr = "[::]";
-#endif
+ saddr = "localhost";
}
debug("==> starting on %s:%s, %swaiting\n",
@@ -1860,7 +1856,7 @@ init_gdb(struct vmctx *_ctx)
memset(&hints, 0, sizeof(hints));
hints.ai_family = AF_UNSPEC;
hints.ai_socktype = SOCK_STREAM;
- hints.ai_flags = AI_NUMERICHOST | AI_NUMERICSERV | AI_PASSIVE;
+ hints.ai_flags = AI_NUMERICSERV | AI_PASSIVE;
if (getaddrinfo(saddr, sport, &hints, &gdbaddr) != 0)
err(1, "gdb address resolve");
More information about the dev-commits-src-main
mailing list