renamed getHostIP to lookupHostIP

This commit is contained in:
Sara Damiano
2019-08-28 16:16:28 -04:00
parent 9ea8fd358c
commit c4b67643ff

View File

@@ -834,8 +834,9 @@ public:
protected: protected:
IPAddress getHostIP(const char* host, int timeout_s = 45) { IPAddress lookupHostIP(const char* host, int timeout_s = 45) {
String strIP; strIP.reserve(16); String strIP;
strIP.reserve(16);
unsigned long startMillis = millis(); unsigned long startMillis = millis();
uint32_t timeout_ms = ((uint32_t)timeout_s)*1000; uint32_t timeout_ms = ((uint32_t)timeout_s)*1000;
bool gotIP = false; bool gotIP = false;
@@ -879,7 +880,7 @@ protected:
// If we don't have a good IP for the host, we need to do a DNS search // If we don't have a good IP for the host, we need to do a DNS search
if (savedHostIP == IPAddress(0,0,0,0)) { if (savedHostIP == IPAddress(0,0,0,0)) {
savedHostIP = getHostIP(host, timeout_s); // This will return 0.0.0.0 if lookup fails savedHostIP = lookupHostIP(host, timeout_s); // This will return 0.0.0.0 if lookup fails
} }
// If we now have a valid IP address, use it to connect // If we now have a valid IP address, use it to connect