0
votes
2answers
53 views
Python attribute error: type object ‘_socketobject’ has no attribute ‘gethostbyname’
Hi Everyone,
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 …
2
votes
2answers
63 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
3answers
84 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
367 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
…
