aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-07-14renamed generated config.h to curl_config.h in order to avoid clashes when ↵Gunter Knauf
libcurl is used with other projects which also have a config.h.
2009-07-13added PKG_CONFIG_PATH to output to better verify if it gets properly set ↵Gunter Knauf
with cross compiles.
2009-07-11silence a compiler warningDaniel Stenberg
2009-07-09add these new files to CVS as wellDaniel Stenberg
2009-07-09241 - expose Curl_nonblock as curlx_nonblockDaniel Stenberg
done
2009-07-09- Eric Wong introduced curlx_nonblock() that the curl tool now (re-)uses forDaniel Stenberg
setting a file descriptor non-blocking. Used by the functionality Eric himself brough on June 15th.
2009-07-09240 - GnuTLS configure fix to find older installationsDaniel Stenberg
done
2009-07-09bring back the libgnutls-config use for checking for GnuTLS if pkg-configDaniel Stenberg
doesn't work, to better fine older gnutls installs
2009-07-09two more pending issuesDaniel Stenberg
2009-07-08245 - HTTP version getinfoDaniel Stenberg
2009-07-08updated with the actions I want to have done before the 7.19.6 releaseDaniel Stenberg
2009-07-08Markus Koetter's man page updates for the FTPPORT rangesDaniel Stenberg
2009-07-08- Constantine Sapuntzakis posted bug report #2813123Daniel Stenberg
(http://curl.haxx.se/bug/view.cgi?id=2813123) and an a patch that fixes the problem: Url A is accessed using auth. Url A redirects to Url B (on a different server0. Url B reuses a persistent connection. Url B has auth, even though it's on a different server. Note: if Url B does not reuse a persistent connection, auth is not sent.
2009-07-04added INET_ADDRSTRLEN define in case system headers dont provide.Gunter Knauf
2009-07-04removed NIFLAGS which is no longer used; added NI_MAXHOST since its missing ↵Gunter Knauf
with some platforms.
2009-07-04Markus Koetter provided a patch to avoid getnameinfo() usage which broke a ↵Gunter Knauf
couple of both IPv4 and IPv6 autobuilds.
2009-06-30silly typo, pointed out by Fabian KeilDaniel Stenberg
2009-06-30Tor Arntsen pointed out a missing #ifdef for IPv6, and I changed another oneDaniel Stenberg
to use the "standard" ENABLE_IPV6 one. Also, if port number cannot be figured out to connect to after a name resolve (due to it not being IPv4 or IPv6), that particular address will now simply be skipped.
2009-06-29my CURLINFO_CERTINFO fixDaniel Stenberg
2009-06-29- Markus Koetter made CURLOPT_FTPPORT (and curl's -P/--ftpport) support a portDaniel Stenberg
range if given colon-separated after the host name/address part. Like "192.168.0.1:2000-10000"
2009-06-29- Modified the separators used for CURLOPT_CERTINFO in multi-part outputs. IDaniel Stenberg
don't know how they got wrong in the first place, but using this output format makes it possible to quite easily separate the string into an array of multiple items.
2009-06-27Fixed a compiler warning.Dan Fandrich
2009-06-21Refactor how libraries are checked for connect() function, follow-up.Yang Tse
2009-06-20Refactor how libraries are checked for connect() function,Yang Tse
and check for connect() as it is done for other functions.
2009-06-20Remove unneeded defines.Gisle Vanem
2009-06-20Use select_s() and not select().Gisle Vanem
2009-06-20avoid pressanykey() call when curl finishes and was launched from bash.Gunter Knauf
2009-06-19fix indentation.Michal Marek
2009-06-19sclose() function-like macro definition used to close a socket,Yang Tse
now solely based on HAVE_CLOSESOCKET and HAVE_CLOSESOCKET_CAMEL config file preprocessor definitions.
2009-06-18add CloseSocket camel case function checkYang Tse
2009-06-17check for socket() and closesocket() as it is done for other functionsYang Tse
2009-06-17socket() and closesocket() prototypes might be in socket.hYang Tse
2009-06-17check for socket() and closesocket() as it is done for other functionsYang Tse
2009-06-17Added a few more compiler warning options for gcc.Dan Fandrich
2009-06-16- Reuven Wachtfogel made curl -o - properly produce a binary output on windowsDaniel Stenberg
(no newline translations). Use -B/--use-ascii if you rather get the ascii approach.
2009-06-16- When doing non-anonymous ftp via http proxies and the password is notMichal Marek
provided in the url, add it there (squid needs this).
2009-06-16fix compiler warningYang Tse
2009-06-15fixed TRUE/FALSE case typo.Gunter Knauf
2009-06-15- Eric Wong's patch:Daniel Stenberg
This allows curl(1) to be used as a client-side tunnel for arbitrary stream protocols by abusing chunked transfer encoding in both the HTTP request and HTTP response. This requires server support for sending a response while a request is still being read, of course. If attempting to read from stdin returns EAGAIN, then we pause our sender. This leaves curl to attempt to read from the socket while reading from stdin (and thus sending) is paused.
2009-06-15curl_multi_socket_action() is the one to use nowadays, as Mohun BiswasDaniel Stenberg
pointed out!
2009-06-15Replaced use of standard C library rand()/srand() by our own pseudo-random ↵Patrick Monnerat
number generator.
2009-06-15DEBUGBUILD / CURLDEBUG decoupling follow-upYang Tse
2009-06-15 DEBUGBUILD / CURLDEBUG decoupling follow-upYang Tse
2009-06-13Remove HAVE_CONFIG_H definition from here,Yang Tse
CFLAGS from common.dj already defines it.
2009-06-13add default USE_CURLDEBUG settingYang Tse
2009-06-13initial step towards decoupling c-ares from libcurl for DOSYang Tse
2009-06-13improve usability with UNIX-like shells or a DOS command interpretersYang Tse
2009-06-13don't ignore these subdirs, they must be removed firstYang Tse
2009-06-13Remove DEBUGBUILD symbol definition, is not required for programs using the ↵Yang Tse
library.
2009-06-13DEBUGBUILD symbol definition for debug buildsYang Tse