Comment #3 on issue 23185 by [email protected]: Chrome not resolving
domain names
http://code.google.com/p/chromium/issues/detail?id=23185
If you are willing to try your hand at some debuggering, we can drill down
to the origin of the error.
Here is an outline for the sort of debug session you want to try:
% gdb chrome
(gdb) break net::SystemHostResolverProc
(gdb) run
...
Once the breakpoint is reached, print out the hostname:
(gdb) print host.c_str()
Now keep single stepping through the code to see what happens
(gdb) step
(gdb) step
(gdb) step
...
Eventualy you will reach this line:
int err = getaddrinfo(host.c_str(), NULL, &hints, &ai);
Once it is executed, print out the error code:
(gdb) print err
Presumably it will be non-zero (make a note of this code), and then keep
stepping through the rest.
--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings
--~--~---------~--~----~------------~-------~--~----~
Automated mail from issue updates at http://crbug.com/
Subscription options: http://groups.google.com/group/chromium-bugs
-~----------~----~----~----~------~----~------~--~---