WinINet library caches IP address for any URL accessed over it. Because of this, when IP address for that URL gets changed then also WinInet library's HttpSendRequest goes to older IP address.
And, if older IP is responding, then WinINet will send all http request to older IP only.
Is there any way to force clean DNS cache of WinInet?
Or
Is there any way to force WinINet to send HTTP request to specified IP address (as we are able to get newer IP using gethostbyname())?
Note :
- gethostbyname is giving me newer IP address, So this behaviour is happening of WinINet's caching.
- I have tried "method 2" suggested in this MS article, but it didn't help
- Sample code
ipconfig /flushdns– Tom May 17 '12 at 5:33ipconfig /flushdnsflushes system DNS cache only. But WinInet maintains its own DNS cache which can't be cleared with this command. – Pradeep May 17 '12 at 5:41