From 39107a40669e0b7d2bad095edf36a6588cc76416 Mon Sep 17 00:00:00 2001 From: goldsimon Date: Tue, 19 Aug 2014 14:24:48 +0200 Subject: [PATCH] Reverted too much changed test code... --- ports/win32/test.c | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) diff --git a/ports/win32/test.c b/ports/win32/test.c index 51aad8c..435943f 100644 --- a/ports/win32/test.c +++ b/ports/win32/test.c @@ -399,18 +399,12 @@ void dns_found(const char *name, ip_addr_t *addr, void *arg) void dns_dorequest(void *arg) { - const char* dnsname = "3com.com"; + char* dnsname = "3com.com"; ip_addr_t dnsresp; - err_t err; - if (arg != NULL) { - dnsname = (const char*)arg; - } + LWIP_UNUSED_ARG(arg); - err = dns_gethostbyname(dnsname, &dnsresp, dns_found, 0); - if (err == ERR_OK) { + if (dns_gethostbyname(dnsname, &dnsresp, dns_found, 0) == ERR_OK) { dns_found(dnsname, &dnsresp, 0); - } else { - printf("dns_dorequest(): dns_gethostbyname(%s) returned error: %d\n", dnsname, err); } } #endif /* LWIP_DNS_APP && LWIP_DNS */ @@ -421,11 +415,7 @@ apps_init() { #if LWIP_DNS_APP && LWIP_DNS /* wait until the netif is up (for dhcp, autoip or ppp) */ - sys_timeout(500, dns_dorequest, NULL); - sys_timeout(500, dns_dorequest, "3com.com"); - sys_timeout(500, dns_dorequest, "3com.com"); - sys_timeout(500, dns_dorequest, "www.gmx.de"); - sys_timeout(500, dns_dorequest, "www.GMX.de"); + sys_timeout(5000, dns_dorequest, NULL); #endif /* LWIP_DNS_APP && LWIP_DNS */ #if LWIP_CHARGEN_APP && LWIP_SOCKET