Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
89 views

Odd String Issue in C

I am writing some code that uses the function gethostbyname(). This function requires that I pass it a string of the host I am trying to find the host for. Right now I have my string declared in an ...
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 ...
3
votes
2answers
241 views

What's wrong with gethostbyname?

I am using this snippet of code I found in http://www.kutukupret.com/2009/09/28/gethostbyname-vs-getaddrinfo/ to perform dns lookups #include <stdio.h> #include <stdlib.h> #include ...
2
votes
3answers
298 views

nodejs cannot resolve 'localhost' on windows

the following code produces an exception in node.js under windows var Socket = require("net").Socket; socket = new Socket(); socket.connect(80, "localhost"); here's the message: ...
2
votes
2answers
403 views

gethostbyname creates a thread?

I am working in C++ with VS2008 and Win7. While examining a program I was following the threads created, and it seems that gethostbyname() creates a thread for itself. Could you explain why? On ...
2
votes
3answers
3k views

gethostbyname in C

I don't know how to write applications in C, but I need a tiny program that does: lh = gethostbyname("localhost"); output = lh->h_name; output variable is to be printed. The above code is used ...
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 ...
1
vote
3answers
99 views

process-local override of name resolution?

I have test code that I want to have a couple of hostnames resolve to the loopback while testing. When deployed, this code will use the normal system name resolution as appropriate. Test and ...
1
vote
2answers
242 views

How to flush cache for socket.gethostbyname response?

Anyone run into this before: After updating DNS records..I do a dig for 'test.somedomain.com' I get 167.69.143.234, however when I do a socket.gethostbyname('test.somedomain.com') I get 167.69.6.234. ...
1
vote
2answers
579 views

Python urllib2: gethostbyname

I need to get requested host's ip address using urllib2 like import urllib2 req = urllib2.Request('http://www.example.com/') r = urllib2.urlopen(req) Is there any issues like ip = ...
1
vote
2answers
355 views

Is gethostbyname guaranteed to return hostent structures with IPv4 addresses?

I cannot use getaddrinfo(...) for resolving hostnames and therefore must stick to gethostbyname(...) Is the gethostbyname(...) function guaranteed to return hostent structures that contain only IPv4 ...
0
votes
1answer
34 views

socket.gethostbyname doesn't behave well

I'm using gethostbyname function for DNS and IP addresses checking. However, it does not work well in this case: >>> from socket import gethostbyname >>> gethostbyname('lns.sa') ...
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
2answers
55 views

How to use gethostbyname in c

I'm trying to use the function gethostbyname, but my code: int handleTCP(char *hostname, char* portNo){ struct hostent *hp = gethostbyname(hostname); ... } Keeps returning: 21: warning: ...
0
votes
2answers
218 views

Alternative to gethostbyname

I can't use gethostbyname to grab a host's IP address, it is a deprecated function that only works 10% of the fricken' time on windows! I can't find any adequate resources on other ways to find a ...
0
votes
2answers
294 views

gethostbyname() only returns the address of local host on linux

I'm trying to portably (Windows & Linux) find all of the IP addresses of the local machine. The method I am using is to first call gethostname(), and then pass the result of that to ...
0
votes
1answer
125 views

How can we cache the result of gethostbyname?

My proxy server is spending a lot of time resolving the domain names,is there a way to make gethostbyname cache the result?
0
votes
3answers
437 views

gethostbyname fails with error 111 (ECONNREFUSED)

The device does have network connectivity (WiFi and 3G). Calling gethostbyname() returns NULL with errno 111 (ECONNREFUSED). The same call works fine on osx and windows. What could be the problem? ...
0
votes
1answer
241 views

gethostbyname xcode issues

Hey guys, I'm new at this stuff, but I'm trying to use gethostname() to work using xcode and the ipad. I've tried a couple of things, but they all seem to freeze up. So when I just do: ...
0
votes
0answers
218 views

gethostbyname freezes and uses 100% CPU on Mac OS X

I have a program which opens a few sockets to listen and send on. I've found a very strange condition, so-far only on Mac OS X, where gethostbyname completely freezes the program. Firstly, I am not ...
0
votes
1answer
316 views

Programatically clear a single DNS cache entry in Windows and Linux in C++

I am wondering if there is a way to programmatically clear a single DNS cache entry in both Windows and Linux. Or if there is some other way to force a gethostbyname call to not use the local cache. ...
0
votes
1answer
229 views

gethostbyname() and valgrind

I keep getting this error whenever I call gethostbyname() in my C code. ==7983== Invalid read of size 1 ==7983== at 0x412AB2C: ____strtoul_l_internal (strtol_l.c:298) ==7983== by 0x412A46F: ...
0
votes
1answer
112 views

WSAGetLastError with unknown error code

I am using WSAGetLastError function to retrieve failure details when using getHostByName function. But the error code returned by the function is 0042124C is not available in the documentation. Am I ...
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; ...
0
votes
2answers
2k views

Python attribute error: type object '_socketobject' has no attribute 'gethostbyname'

I am trying to do this in my program: dest = socket.gethostbyname(host) I have included the line from socket import * in the beginning of the file I am getting an Attribute Error that says: ...
0
votes
3answers
547 views

gethostbyname problem

I wish to use "gethostbyname" in my Suse m/c but it is not returning any structure. but on the other systems it is working fine what could be the issue with my m/c ??
0
votes
6answers
881 views

how to write a program to report the local IP address such as 192.168.1.102?

since my Linksys router doesn't assign a fixed local IP to the computers (PC and Mac and Linux), i'd like to write a script so that every minute, the computers will update to each other so that ...
-3
votes
2answers
94 views

How to get gethostbyname by using jquery [closed]

Possible Duplicate: Can I lookup the IP address of a hostname from javascript? Hi is there a jquery eqivalent to the php gethostbyname() function?