Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-02-04 | added the sharing of DNS cache | Jean-Philippe Barette-LaPierre | |
2003-01-23 | Duncan Wilcox reported a crash with --interface on FreeBSD when ipv6-enabled | Daniel Stenberg | |
and this has been verified to correct the problem. | |||
2003-01-16 | copyright year update in the source header | Daniel Stenberg | |
2003-01-09 | This fixed yet another connect problem with the multi interface and ipv4 | Daniel Stenberg | |
stack. Kjetil Jacobsen reported and verified the fix. | |||
2002-12-17 | Removed weird special multi interface condition that caused bug report | Daniel Stenberg | |
#651464. | |||
2002-12-13 | conn->bits.tcpconnect now keeps track of if this connection is connected | Daniel Stenberg | |
or not | |||
2002-12-13 | make a little work-around for file:// in _is_connected() and voila, now the | Daniel Stenberg | |
multi interface works with file:// URLs fine (previously it crashed). This won't make it work on Windows though... | |||
2002-11-11 | unlock dns cache entries with a function call instead of a variable fiddle | Daniel Stenberg | |
2002-11-05 | ipv4-fixes for the new Curl_dns_entry struct and Curl_resolv() proto | Daniel Stenberg | |
2002-11-05 | Curl_resolv() now returns a different struct, and it contains a reference | Daniel Stenberg | |
counter so that the caller needs to decrease that counter when done with the returned data. If compiled with MALLOCDEBUG I've added some extra checking that the counter is decreased before a handle is closed etc. | |||
2002-10-12 | return error properly when a non-blocking connect fails using the multi | Daniel Stenberg | |
interface | |||
2002-09-11 | Lukasz Czekierda correctly pointed out that curl used a bad Host: header | Daniel Stenberg | |
when talking to a IPv6-server using IPv6 IP address only. | |||
2002-09-03 | updated source code boilerplate/header | Daniel Stenberg | |
2002-08-26 | Andrew Francis removed the need for/use of MSVC pragmas | Daniel Stenberg | |
2002-08-12 | fixed a Curl_connecthost() bug, we should default to set connected to false | Daniel Stenberg | |
2002-08-12 | Initial fix to make the multi interface return control while waiting for | Daniel Stenberg | |
the initial connect to "come through". This should work fine for connect and for FTP-PASV connects. Needs massive testing. | |||
2002-06-12 | added a connect failure error message that might get empty otherwise | Daniel Stenberg | |
2002-06-10 | added a missing failf() for certain connect failures | Daniel Stenberg | |
2002-04-25 | In order to not get problems with DNS cache pruning, we no longer store | Daniel Stenberg | |
any name resolved data in any curl handle struct. That way, we won't mind if the cache entries are pruned for the next time we need them. We'll just resolve them again instead. This changes the Curl_resolv() proto. It modifies the SessionHandle struct but perhaps most importantly, it'll make the internals somewhat dependent on the DNS cache not being disabled as that will cripple operations somewhat. Especially for persistant connections. | |||
2002-04-22 | allow binding the local end of a connection even when using IPv6, thus we | Daniel Stenberg | |
now have --interface working properly | |||
2002-04-10 | added info in to failf() lines and added a infof() call just before the | Daniel Stenberg | |
connect() so that it tells to which host and what port it is about to attempt the connection | |||
2002-03-19 | copyright string (year) update | Daniel Stenberg | |
2002-02-22 | better time selection for the connect timeout | Daniel Stenberg | |
2002-02-20 | Nico Baggus' VMS tweaks | Daniel Stenberg | |
2002-02-18 | connection timeout comparison fix by Emil | Daniel Stenberg | |
2002-01-16 | fixed time-out returned without error text set | Daniel Stenberg | |
2002-01-07 | Modified to use non-blocking sockets all the time. | Daniel Stenberg | |
2002-01-03 | Sterling Hughes' provided initial DNS cache source code. | Daniel Stenberg | |
2002-01-02 | Philip Gladstone's 64-bit sparc native compiler compatibility issues fixed. | Daniel Stenberg | |
2001-12-11 | failf() calls should not have newlines in the message string! | Daniel Stenberg | |
2001-12-04 | Eric's #include fixes for better macos compiles | Daniel Stenberg | |
2001-11-23 | Andrés García's minor fix to make it compile on win32 | Daniel Stenberg | |
2001-11-22 | this fix seems to make the connect fail properly even on IPv4-only Linux | Daniel Stenberg | |
machines! | |||
2001-11-21 | added error text for a failed connect case | Daniel Stenberg | |
2001-10-31 | nonblock => Curl_nonblock, remade the check for a live SSL connection (again) | Daniel Stenberg | |
2001-10-29 | SM's waitconnect return code fix! | Daniel Stenberg | |
2001-10-22 | make sure the connect can't return OK but return a NULL as addr | Daniel Stenberg | |
2001-10-12 | Curl_tvdiff() now returns a millisecond diff, no double like before | Daniel Stenberg | |
2001-10-08 | hm, an unknown error from bind() when binding the outgoing socket would | Daniel Stenberg | |
failf("%d") without the error as argument... it would always make a weird number get output | |||
2001-10-05 | SM's patch applied, we should not use arguments or variables that have the | Daniel Stenberg | |
same name as common functions... | |||
2001-10-02 | praise Bjorn Reese for mastering these dusty corners of socket hacking, now | Daniel Stenberg | |
we check for the error state before believing we are connected in IPv6 cases | |||
2001-10-02 | IPv6 adjustments, connect()ing to bad ports still don't work properly for | Daniel Stenberg | |
IPv6 | |||
2001-10-02 | major connecting updates | Daniel Stenberg | |
2001-10-01 | faster bailout on timeouts | Daniel Stenberg | |
2001-10-01 | removed warning | Daniel Stenberg | |
2001-10-01 | corrected for IPv6 | Daniel Stenberg | |
2001-10-01 | conn->hp is now conn->hostaddr | Daniel Stenberg | |
changed the Curl_connethost() proto again | |||
2001-10-01 | corrected the #include files | Daniel Stenberg | |
2001-10-01 | introduced non-blocking connects | Daniel Stenberg | |