Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-06-30 | make the SSL connect use the same default connect timeout define as the | Daniel Stenberg | |
generic connect uses | |||
2004-06-29 | First attempt at making the multi interface work when connecting to a host | Daniel Stenberg | |
that resolves to multiple IP addresses. | |||
2004-06-24 | only use sockaddr_in6 on ipv6-enabled hosts | Daniel Stenberg | |
2004-06-24 | Source cleanups. The major one being that we now _always_ use a Curl_addrinfo | Daniel Stenberg | |
linked list for name resolved data, even on hosts/systems with only IPv4 stacks as this simplifies a lot of code. | |||
2004-06-23 | static functions are better not Curl_ prefixed to make their static | Daniel Stenberg | |
status more obvious | |||
2004-06-23 | prevent a warning | Daniel Stenberg | |
2004-06-22 | the hostname variable wasn't assigned and we no longer use it | Daniel Stenberg | |
2004-06-22 | Moved the "About to connect() to" text to the place where the host name is | Daniel Stenberg | |
actually known, as before this text lied when used in i.e FTP. | |||
2004-06-10 | Gisle Vanem's improved verbose output and timeout handling when connecting to | Daniel Stenberg | |
a host name that resolves to multiple IP addresses. | |||
2004-06-08 | delete trailing whitespace | Daniel Stenberg | |
2004-05-13 | Gisle Vamem reintroduced the verifyconnect() call on windows as well, and | Daniel Stenberg | |
we now use it to provide more info back on connect failures. | |||
2004-05-11 | curl_global_init_mem() allows the memory functions to be replaced. | Daniel Stenberg | |
memory.h is included everywhere for this. | |||
2004-04-27 | Made host name and proxy name get stored in a 'struct hostname' and set | Daniel Stenberg | |
all things up to work with encoded host names internally, as well as keeping 'display names' to show in debug messages. IDN resolves work for me now using ipv6, ipv4 and ares resolving. Even cookies on IDN sites seem to do right. | |||
2004-04-26 | Made defines instead of plain numbers for the Curl_resolv() return code to | Daniel Stenberg | |
make the code easier to read | |||
2004-04-26 | added function headers and comments | Daniel Stenberg | |
2004-04-17 | Gisle made a failed connect output the reason for it | Daniel Stenberg | |
2004-04-13 | Moved the 'tcp_nodelay' member to the proper 'UserDefined' struct within the | Daniel Stenberg | |
sessionhandle to make the duphandle() function work as supposed. Also tried to start document functions the doxygen way (in the headers of the functions). Can't make it work though... | |||
2004-03-31 | Andrés García fixed a warning in the ioctlsocket() usage. | Daniel Stenberg | |
2004-03-30 | typecast setsockopt()'s 4th argument to void * to make compilers complain | Daniel Stenberg | |
less | |||
2004-03-29 | netinet/tcp.h may require netinet/in.h to be include before | Daniel Stenberg | |
2004-03-27 | Tor fixed a left-over from the ip argument to setnodelay | Daniel Stenberg | |
2004-03-26 | check for netinet/tcp.h precense before actually including it | Daniel Stenberg | |
2004-03-26 | removed the ip number from the notcpdelay function | Daniel Stenberg | |
2004-03-25 | only output one line about the nodelay even if it fails | Daniel Stenberg | |
2004-03-25 | include the strerror.h file without curl_ prefix | Daniel Stenberg | |
2004-03-25 | tcp-nodelay patch by Joe Halpin | Daniel Stenberg | |
2004-03-24 | Gisle Vanem's fix to replace the bad use of strerror(). This introduces | Daniel Stenberg | |
Curl_strerror() that attempts to be thread-safe _and_ works on Windows too! | |||
2004-03-23 | switch() on the right variable! | Daniel Stenberg | |
2004-03-23 | If localbind fails, provide a more portable error message. | Daniel Stenberg | |
2004-03-17 | Günter Knauf's NetWare changes. | Daniel Stenberg | |
2004-03-11 | Gisle Vanem's fixes to use CURL_SOCKET_BAD more instead of -1 for sockets. | Daniel Stenberg | |
2004-03-09 | Use curl_socket_t instead of int for holding sockets. The typedefs and | Daniel Stenberg | |
defines are in setup.h. | |||
2004-03-08 | waitconnect() takes the timeout argument as a long | Daniel Stenberg | |
2004-03-04 | Andrés García's patch to prevent warnings while compiling with mingw, mainly | Daniel Stenberg | |
because it is now possible to have both WIN32 and HAVE_CONFIG_H defined. | |||
2004-02-15 | Use the was_iface variable when binding a socket locally, even if no | Daniel Stenberg | |
SO_BINDTODEVICE is present, to prevent compiler warnings about the variable | |||
2004-02-13 | Ben Greear's SO_BINDTODEVICE patch that binds to a network interface "even | Daniel Stenberg | |
more" when the previous approach. Known to work on Linux, possibly on other platforms as well. | |||
2004-02-09 | Oops. I broke the flow with the previous commit. | Daniel Stenberg | |
2004-02-09 | some annoying compilers warn about "(void)foo;" lines so we avoid them | Daniel Stenberg | |
2004-01-30 | only do the verifyconnect() clear magic on mpeix | Daniel Stenberg | |
2004-01-29 | added verifyconnect proto and use it correctly in the waitconnect function | Daniel Stenberg | |
2004-01-29 | 1. changed order of two include files to build fine on MPE/iX | Daniel Stenberg | |
2. now reads the socket error before check connect status, also to make us run fine on MPE/iX | |||
2004-01-29 | Dan Fandrich's cleanup patch to make pedantic compiler options cause less | Daniel Stenberg | |
warnings. Minor edits by me. | |||
2004-01-15 | added missing parenthesis | Daniel Stenberg | |
2004-01-14 | rearranged the connect() call so that there's no interleaved #ifdef, to make | Daniel Stenberg | |
it compiler better on amigaos | |||
2004-01-07 | updated year in the copyright string | Daniel Stenberg | |
2003-11-13 | Peter Sylvester found a flaw in the connect code for ipv6-enabled hosts. | Daniel Stenberg | |
I guess it seldomly happens on linux and that's why it wasn't found before. He used Solaris to notice it. I took the opportunity to rewrite the Curl_connecthost() slightly to feature less duplicate code in the two different versions (ipv4/ipv6). | |||
2003-10-18 | don't shadow 'socket' | Daniel Stenberg | |
2003-10-15 | the previous fix left this compiler error | Daniel Stenberg | |
2003-10-15 | Avoid doing getsockopt() on Windows to verify connects. It seems that this | Daniel Stenberg | |
hogs Windows machines when libcurl is being used multi-threaded (with > ~50 threads). Andrew Fuller helped us verify and test this. According to a MSDN web page on connect(), it returns 0 when the connect is done and thus we don't need the getsockopt() call anyway on Windows. | |||
2003-10-14 | Gisle Vanem's IPv6-on-Windows patch applied! | Daniel Stenberg | |