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
3answers
299 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: ...
1
vote
2answers
243 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. ...
0
votes
1answer
35 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
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
295 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
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
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
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 ??