Home | History | Annotate | Download | only in lib

Lines Matching defs:in

10  * This software is licensed as described in the file COPYING, which
26 #include <netinet/in.h>
35 #include <in.h>
51 /* The last 3 #include files should be in this order */
84 * detect which one this platform supports in the configure script and set up
130 struct in_addr in;
133 if(Curl_inet_pton(AF_INET, hostname, &in) > 0)
135 return Curl_ip2addr(AF_INET, &in, hostname, port);
166 * The clearing of the buffer is a workaround for a gethostbyname_r bug in
217 * gethostbyname_r() in glibc:
219 * In glibc 2.2.5 the interface is different (this has also been
220 * discovered in glibc 2.1.1-6 as shipped by Redhat 6). What I can't
224 * In this "buggy" version, the return code is -1 on error and 'errno'
235 * call, but instead several of the pointers in the hostent structs will
239 * all the data is stored in thread-specific memory areas making calls to
243 * This AIX 4.3 or later detection is all made in the configure script.
270 h = buf; /* result expected in h */