Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of DnsQuery by
Diff: DnsQuery.cpp
- Revision:
- 15:e3a13efb2675
- Parent:
- 14:248f32a9c48d
- Child:
- 16:a1bd52472dff
--- a/DnsQuery.cpp Thu Mar 03 19:25:33 2016 +0000
+++ b/DnsQuery.cpp Tue Apr 05 13:22:27 2016 -0500
@@ -109,33 +109,7 @@
return false;
}
-
-int32_t dnsQuery(NetworkInterface *iface, const char *host, char *ip)
-{
- if (isIP(host)) {
- strcpy(ip, host);
- return 0;
- }
-
- UDPSocket sock(iface);
- int32_t err;
-
- for (unsigned i = 0; i < DNS_COUNT; i++) {
- err = sock.open(DNS_IPS[0], 53);
- if (err < 0) {
- return err;
- }
-
- err = dnsQuery(&sock, host, ip);
- sock.close();
- return err;
- }
-
- sock.close();
- return NS_ERROR_DNS_FAILURE;
-}
-
-int32_t dnsQuery(UDPSocket *socket, const char *hostname, char *ipaddress)
+static int32_t query(UDPSocket *socket, const SocketAddress &addr, const char *hostname, char *ipaddress)
{
int len = 0;
if (hostname == NULL) {
@@ -184,7 +158,7 @@
packet[c++] = 1;
- if (socket->send(packet, packetlen) < 0) {
+ if (socket->sendto(addr, packet, packetlen) < 0) {
delete packet;
return false;
}
@@ -194,12 +168,12 @@
// Receive the answer from DNS
int response_length = 0;
- response_length = socket->recv(packet, 1024);
+ response_length = socket->recvfrom(NULL, packet, 1024);
if (response_length > 0 ) {
if (!resolve(packet, ipaddress)) {
delete packet;
- return NS_ERROR_DNS_FAILURE;
+ return NSAPI_ERROR_DNS_FAILURE;
}
// cleanup and return
@@ -208,7 +182,38 @@
}
delete packet;
- return NS_ERROR_DNS_FAILURE;
+ return NSAPI_ERROR_DNS_FAILURE;
}
+int32_t dnsQuery(NetworkInterface *iface, const char *host, char *ip)
+{
+ if (isIP(host)) {
+ strcpy(ip, host);
+ return 0;
+ }
+ UDPSocket sock(iface);
+
+ for (unsigned i = 0; i < DNS_COUNT; i++) {
+ int32_t err = query(&sock, SocketAddress(DNS_IPS[0], 53), host, ip);
+ sock.close();
+ return err;
+ }
+
+ sock.close();
+ return NSAPI_ERROR_DNS_FAILURE;
+}
+
+int32_t dnsQuery(UDPSocket *socket, const char *host, char *ip)
+{
+ if (isIP(host)) {
+ strcpy(ip, host);
+ return 0;
+ }
+
+ for (unsigned i = 0; i < DNS_COUNT; i++) {
+ return query(socket, SocketAddress(DNS_IPS[0], 53), host, ip);
+ }
+
+ return NSAPI_ERROR_DNS_FAILURE;
+}
