We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36d0e9b commit b70ee2bCopy full SHA for b70ee2b
README.md
@@ -97,9 +97,6 @@ int main()
97
/* Wait for the calculated backoff period before the next retry attempt of querying DNS.
98
* As usleep() takes nanoseconds as the parameter, we multiply the backoff period by 1000. */
99
( void ) usleep( nextRetryBackoff * 1000U );
100
-
101
- /* Retry the DNS lookup for the host name. */
102
- dnsStatus = getaddrinfo( serverAddress, NULL, &hints, pListHead );
103
}
104
} while( ( dnsStatus != 0 ) && ( retryStatus != BackoffAlgorithmRetriesExhausted ) );
105
0 commit comments