`getaddrinfo(3)` provides network address and service translation.
0
votes
0answers
9 views
using getaddrinfo() only checks nscd cache first time if DNS times out
If I get an initial "Name or service not known" (EAI_NONAME), the next call to getaddrinfo() seems to go straight to the dns instead of checking the cache first (nscd logs show no lookup attempts, ...
1
vote
1answer
16 views
.rvm/rubies/ruby-1.9.2-p320/lib/ruby/1.9.1/net/http.rb:644:in `initialize': No such file or directory - getaddrinfo (Errno::ENOENT)
I got this error when I tried to run: rake db:migrate, rake schema:load and rails s. The application I git cloned from Bitbucket is unusable and the client is unable to help.
I have reinstalled ruby ...
1
vote
2answers
52 views
How should I handle this HTTPS request in Python?
I am trying to use the Strava API v3 in Python, and I am afraid I am missing something. The docs say:
This base URL is used for all Strava API requests:
https://api.strava.com
$ curl -i ...
1
vote
1answer
55 views
How to use getaddrinfo to connect to a server using the external IP?
I'm writing a small C client/server application, but I cannot make the connection work when using the external IP address. The code for both client and server is taken from here, in particular the ...
1
vote
0answers
74 views
IOError: [Errno socket error] [Errno 11004] getaddrinfo failed on an accessable addr
I can open the url:http://www.bloomberg.com/markets/chart/data/1M/AAPL:AR in my brower
but my code here comes out the result:I/O error(socket error):[Errno 11004] getaddrinfo failed
:
import urllib
...
0
votes
2answers
101 views
How to use getaddrinfo()?
Im trying to make a simple program that takes in a string like www.google.com and returns the ip address...
What i have so far:
char* hostname = new char[www.size()+1];
std::copy(www.begin(), ...
0
votes
2answers
108 views
Using Getaddrinfo() and SendTo() on Socket UDP fails - Segmentation fault (core dumped)
After I start using getaddrinfo() to retrieve dynamic IP addresses, the sendTo() of my socket no longer works and returns error "Segmentation fault (core dumped)". Why is that happening, is there any ...
0
votes
1answer
56 views
Server-client sockets : freeaddrinfo(3) placement
I have to test this passive tcp server on loopback interface. Ip and port are given by command line and parsed with getopt. Then it sets and binds a TCP socket with getaddrinfo(3) and starts busy ...
1
vote
0answers
263 views
“Name or service not known (SocketError)” error when runs in many threads
I have made a program that parses text file and download data in parallel. When runs download method in 9 or less threads, the program doesn't have error. But when runs the method in 10 or more ...
2
votes
0answers
89 views
getaddrinfo with localhost: different behaviour when statically linked or not on same system
I have a small c program which basically calls getaddrinfo.
According to /etc/hosts localhost can be resolved to "127.0.0.1" and "::1".
Now when running the program the output depends on whether I ...
1
vote
1answer
72 views
Get size of HTTP response in C
I'm building a fuzzer (web application security tool) and I'm having some trouble building the proxy server. Below is my code for a function that takes in a char* http message, converts a host name in ...
0
votes
1answer
86 views
getaddrinfo Removes last character
int print_socket_info(int sock_fd, struct sockaddr_in *sin, short protocol){
char dbg[INET_ADDRSTRLEN];
char *famstr;
inet_ntop(protocol, &(sin->sin_addr), dbg, INET_ADDRSTRLEN);
...
2
votes
1answer
121 views
getaddrinfo for ipv6 link local
I tried to get the address info in to structred addrinfo **result .
but I get the below error for the code
error in getaddrinfo: Address family for hostname not supported
code
error = ...
0
votes
2answers
132 views
getaddrinfo returns 2 results with localhost
I am trying to use the function getaddrinfo with a passive socket/listener instead of filling directly the old sockaddr structure.
My purpose is to open a socket and bind it to a port. Essentially I ...
0
votes
1answer
55 views
getaddrinfo 11004 and python's httplib
I'm trying to get the rendered markup for http://www.epicurious.com/recipes/food/reviews/Breaded-Chicken-Cutlets-aka-Grandma-Jodys-Chicken-51114400; in theory the very same markup given by the 'View ...
0
votes
1answer
121 views
get ipv6 address from addrinfo struct in windows xp
how is it possible to get an ipv6 address from a addrinfo struct under windows xp?
is there any other possibility than WSAAddressToString (has anyone ever successfully used that one?) ?
...
1
vote
1answer
406 views
Paypal IPN: random “ php_network_getaddresses: getaddrinfo failed: Name or service not known (0)” error
While using the following Paypal IPN code I sometimes gets a "getaddrinfo failed" error and my script (to update a mySQL database via PHP) is not executed.
THE CODE
// read post from PayPal system ...
1
vote
0answers
110 views
Python:SMTP init method hangs when used in try:except block
I am trying to send some backtraces via email for which i am using the python SMTP lib.
My code looks like this
def send_email_thread(from_addr, to_addr, message):
server = ...
3
votes
1answer
1k views
getaddrinfo: nodename nor servname provided, or not known (SocketError)
I'm developing a Shopify theme and I'm using https://github.com/Shopify/shopify_theme to update my files into Shopify.
Unfortunately, I can't get it to work... When I try to upload/update a file, I ...
1
vote
0answers
105 views
PHP getaddrinfo error, Python works fine
I have a small problem with getaddrinfo. I have a small python scrapper. If I run the program from python everything works. However if I run the same python program from PHP I get
File ...
13
votes
3answers
481 views
getaddrinfo memory leak
I have this code for getting information about IPv4 address:
struct addrinfo hints, *info = NULL;
char addr4[INET_ADDRSTRLEN];
memset(&hints, 0, sizeof(hints));
hints.ai_socktype = SOCK_STREAM;
...
1
vote
2answers
291 views
getaddrinfo() on Win32
I have a C program that uses getaddrinfo(). It works as expected on Linux and Mac OS X.
I'm in the middle of porting it to Windows.
When I compile it (with MinGW gcc) I get the following warnings:
...
0
votes
1answer
881 views
Node.js http.request fails with [Error: getaddrinfo EADDRINFO]
I have node.js server which acts like a proxy. It recieves requests and forward them to web service on another domain, by executing http.request.
Request options usually are similar to:
{
"host": ...
0
votes
0answers
114 views
why does xcode 4.4.1 give error while trying to use getaddrinfo ?
I am using xcode 4.4.1 to do socket programming in c++. I think i have included required header file. But i still get error saying:
" No matching function for call to 'getaddrinfo' ".
There was ...
2
votes
1answer
189 views
how to get wildcard address using getaddrinfo
Cross post on : http://www.perlmonks.org/?node_id=988678
I am new to perl. I am trying to fetch all the wildcard interfaces using getaddrinfo (I am using Socket6 (IO:Socket:IP somehow didn't work on ...
2
votes
1answer
131 views
Is struct addrinfo **res allocated when getaddrinfo() returns a non-zero value?
I am having some memory leaking troubles in an embedded application and while looking in the code, I see I do not freeaddrinfo() when getaddrinfo() returns non-zero:
s = getaddrinfo(hostname, port, ...
0
votes
5answers
199 views
Is it necessary to attempt to connect to all addresses returned by getaddrinfo()?
Beej's Simple Client example code iterates over all IP addresses returned from getaddrinfo(), until it can connect to the first one. See the code below.
Is this always necessary, or is it OK to ...
2
votes
3answers
169 views
Binding socket to computer's address for listening
I've created code designed to bind a new socket to the computer's addresses for listening for incoming connections on a specific port. I'm using getaddrinfo. Is this the best way? It seems pointless ...
1
vote
1answer
231 views
Will getaddrinfo() return IPv6 addresses first?
I want to read all the addresses(IPv4 and IPv6) using getaddrinfo().
My question is whether getaddrinfo() returns IPv6 address followed by IPv4 in the list.
Assuming that I'm passing AF_UNSPEC to ...
1
vote
1answer
46 views
Determine which of the addrinfo structures returned by getaddrinfo belongs to the current machine
I call getaddrinfo. It returns a list of matching addresses. One of them belongs to the machine from which the call was made. How do I determine which one it is?
If there is no way to do so, is there ...
5
votes
2answers
389 views
results from Boost.Asio resolver differ
I have a canned reproducer invoking boost::asio::ip::tcp::resolver::resolve() on localhost once every 5 seconds. It counts the number of endpoints returned and compares that value against the previous ...
1
vote
1answer
106 views
Safari and getaddrinfo interposing
I've written a small dynamic library that interposes calls to getaddrinfo and connect. I insert this library using DYLD_INSERT_LIBRARIES on Firefox and Safari to hijack requests for www.apple.com and ...
0
votes
0answers
766 views
getaddrinfo() could not be resolved winsock
I'm having problems getting winsock to work, im just baffled and dont really know what to try next.
the getaddrinfo(NULL) is just there to show that it recognizes what arguments getaddrinfo should ...
0
votes
2answers
210 views
getaddrinfo() returns 127.0.0.1 for remote host
I have an application which uses getaddrinfo() to translate from the hostname of a PC in a Windows Workgroup to the IPV4 address for that PC on the LAN. (Note, I don't mean getting the address of the ...
0
votes
1answer
209 views
'getaddrinfo()' function, it returns IP address from 'etc\hosts' file only …?
I have dual stack Windows m/c, with IPv4 and IPv6 address.
The 'etc\hosts' contains only IPv4 address of that hostname.
So whenever I call 'getaddrinfo()' function, it returns IP address from ...
1
vote
2answers
465 views
Linux network programming:getaddrinfo() get wrong result
This is a simple program, I write it to find out all of a domain's A record.
I complie it and get no errors nor warnings.
Then I run it, I only found it give wrong IP, such as:
./a.out ...
0
votes
0answers
185 views
How to handle inet_ntop() failure?
First of all, my code example:
cout << "bla1" << endl;
struct addrinfo hints, *info;
int status;
memset(&hints, 0, sizeof hints);
char ip4[INET_ADDRSTRLEN];
char ...
12
votes
5answers
11k views
nodejs httprequest with data - getting error getaddrinfo ENOENT
Update - Answered by self
i see one has to make sure that the DNS is resolved properly from the machine, check out this code to make sure that url is reachable ...
0
votes
0answers
227 views
getaddrinfo() fails continuously with EAI_AGAIN
In my code I am using the code as follows.
do
{
r = getaddrinfo(host, service, &hints, ret);
}
while (r == EAI_AGAIN);
when testing getaddrinfo() continuously fails thus loop not terminates ...
1
vote
1answer
3k views
IOError: [Errno socket error] [Errno 11004] getaddrinfo failed
I am beginner python prorammer. With 2.7.2, Windows 7, built-in interpreter, and three libraries. I am trying to do this, with error. I appreciate any help?
import os
import urllib
import socket
...
1
vote
3answers
801 views
MongoDB on Vagrant via Port Forwarding issue
I've recently installed mongodb on my CentOS 6 VM running on Vagrant.
I added port forwarding to Vagrantfile to forward the mongo port
config.vm.forward_port 27017, 127017
I configured mongod to ...
0
votes
1answer
1k views
How to fix getaddrinfo-failure for python on windows
if a start python in a command prompt terminal and try to open some url, I get the following result, despite the name being resolveable through DNS:
C:\Windows\system32>nslookup www.google.de
...
1
vote
1answer
582 views
getaddrinfo doesn't get ipv6 address
I am trying to get both ipv4 and ipv6 adresses and connect to server with them but i can only connect with ipv4 address. It is a standard code actually.
both ipv4 and ipv6 addresses are in /etc/hosts ...
2
votes
1answer
700 views
Permanent gaierror 'Temporary failure in name resolution' after running for a few hours
I have a long running python script, launched with upstart. This script makes quite a lot of requests. Everything works well at first, however after a few hours I start permanently getting the ...
1
vote
1answer
88 views
Conceptual query with Getaddrinfo method
When using the getaddrinfo method, I'm providing an IP address and the port number. I'm getting a linked list in the out variable. It works fine. But I have a conceptual doubt here. When i am giving ...
6
votes
2answers
14k views
PHP php_network_getaddresses: getaddrinfo failed: No such host is known
I am having DNS issues with a certain target domain. I am using fopen() (but same issue with other functions) to retreive an image, but I get this error:
Warning: fopen(): php_network_getaddresses: ...
2
votes
2answers
2k views
Usage of getaddrinfo() with AI_PASSIVE
The getaddrinfo() function not only allows for client programs to efficiently find the correct data for creating a socket to a given host, it also allows for servers to bind to the correct socket - in ...
-2
votes
1answer
705 views
Segmentation fault in getaddrinfo()
I am getting segmentation fault in getaddrinfo().
This is the stack trace.
Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0xb7ff4b70 (LWP 26872)]
__res_vinit ...
1
vote
1answer
942 views
getaddrinfo() function returns the wrong IP address
I am trying to resolve a URL's IP address using getaddrinfo(), but it always returns the wrong IP address, I have tried with several URL's and the result is same. any help wold be greatly ...
0
votes
2answers
844 views
Unix sockets with getaddrinfo() in C
Does anyone know if it's possible to use getaddrinfo with unix sockets in C (AF_UNIX). I've tried a couple of things but I can't make it work.
This is basically what I'm trying:
struct addrinfo ...

