Tagged Questions

3
votes
2answers
100 views

When doing socket programming, what is the correct way to look up a domain name and then connect to it?

I've programmed networked applications, but primarily in Python. I'm writing a C++ application and I'm a little fuzzy on exactly what the syntax should be to look up a domain name and connect to it's ...
2
votes
2answers
269 views

Asynchronous address resolution in winsock?

Looking into asynchronous address resolution in winsock it seems that the only two options are either to use the blocking gethostbyname on a seperate thread, or use WSAAsyncGetHostByName. The latter ...
0
votes
1answer
75 views

Is it possible to intercept dns queries using LSP/SPI?

I wrote my own LSP which is working fine. However, I can not catch dns queries. For example there is no function like WSPGetHostByName or WSPGetAddrInfo. My lsp also supports UDP protocol but it is ...
0
votes
1answer
443 views

gethostbyname fails for local hostname after resuming from hibernate (Vista+7?)

Just wondering if anyone else has spotted this: On some user's machines running our software, occasionally the call to Win32 winsock gethostbyname fails with error code 11004. For the argument to ...
0
votes
2answers
719 views

Issue with gethostbyname on 64-bit Windows

I am trying to migrate some code from 32-bit Windows (XP and Server 2003) to 64-bit Windows 7, and I am having a weird problem with gethostbyname. I'm doing something like this: struct hostent *hp; ...