You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now we don't do DNS lookups manually, we rely on QNetworkAccessManager to do it internally for us)
This would involve adding a DNS-lookup step to our ConnectionValidator.
I'm thinking maybe we can't even do this because QNetworkAccessManager only takes URLs but we'd want URL+IP4/6.
One idea would be to patch our Qt to not do caching in QHostInfo (which is used internally by Qt).
I don't understand why we would one to do that. Caching the DNS is a required feature, we do lots of query to the network, and we don't want to add a dns query delay between each of them.
Caching the DNS is a required feature, we do lots of query to the network, and we don't want to add a dns query delay between each of them.
There's also the OS-level cache which is I think the one you're talking about. Usually it's invalidated when the OS has a network connection change. QHostInfo does not do this invalidation (although it could with QNetworkConfiguration but that was never implemented)
see comment in closed issue:
#203 (comment)
The text was updated successfully, but these errors were encountered: