summaryrefslogtreecommitdiffstats
path: root/usr.sbin/sysinstall/media.c
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1997-08-01 04:41:38 +0000
committerjkh <jkh@FreeBSD.org>1997-08-01 04:41:38 +0000
commitadbeb9fc1cb509a33f503f32631b9b12edd96f30 (patch)
treec41138f2730f56f7cf9a832edd79eec0b6a7c92d /usr.sbin/sysinstall/media.c
parent2ca11f548b5fc7a624fc7fd91a8b5639fb0dbd03 (diff)
downloadFreeBSD-src-adbeb9fc1cb509a33f503f32631b9b12edd96f30.zip
FreeBSD-src-adbeb9fc1cb509a33f503f32631b9b12edd96f30.tar.gz
Back out the changes to set the resolver timeout. All they seem to do
is _break_ dns lookups entirely, and since reading the relevant docs and source code does not enlighten for now, I'll remove this until more basic research has been done into controlling the resolver's timeout values.
Diffstat (limited to 'usr.sbin/sysinstall/media.c')
-rw-r--r--usr.sbin/sysinstall/media.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/usr.sbin/sysinstall/media.c b/usr.sbin/sysinstall/media.c
index 10b23db..32650af 100644
--- a/usr.sbin/sysinstall/media.c
+++ b/usr.sbin/sysinstall/media.c
@@ -46,7 +46,6 @@
#include <sys/wait.h>
#include <netinet/in.h>
#include <arpa/inet.h>
-#include <resolv.h>
static Boolean got_intr = FALSE;
@@ -85,28 +84,6 @@ cdromHook(dialogMenuItem *self)
return genericHook(self, DEVICE_TYPE_CDROM);
}
-static void
-kickstart_dns(void)
-{
- static Boolean initted = FALSE;
- int time;
- char *cp;
-
- cp = variable_get(VAR_MEDIA_TIMEOUT);
- if (!cp)
- time = MEDIA_TIMEOUT;
- else
- time = atoi(cp);
- if (!time)
- time = 100;
- if (!initted) {
- res_init();
- _res.retry = 2; /* 2 times seems a reasonable number to me */
- _res.retrans = time / 2; /* so spend half our alloted time on each try */
- initted = TRUE;
- }
-}
-
char *
cpioVerbosity()
{
@@ -385,7 +362,6 @@ mediaSetFTP(dialogMenuItem *self)
msgDebug("port # = `%d'\n", FtpPort);
}
if (variable_get(VAR_NAMESERVER)) {
- kickstart_dns();
if ((inet_addr(hostname) == INADDR_NONE) && (gethostbyname(hostname) == NULL)) {
msgConfirm("Cannot resolve hostname `%s'! Are you sure that your\n"
"name server, gateway and network interface are correctly configured?", hostname);
@@ -480,7 +456,6 @@ mediaSetNFS(dialogMenuItem *self)
msgDebug("mediaSetNFS: Net device init failed\n");
}
if (variable_get(VAR_NAMESERVER)) {
- kickstart_dns();
if ((inet_addr(hostname) == INADDR_NONE) && (gethostbyname(hostname) == NULL)) {
msgConfirm("Cannot resolve hostname `%s'! Are you sure that your\n"
"name server, gateway and network interface are correctly configured?", hostname);
OpenPOWER on IntegriCloud