Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-01-02 | I removed the socklen_t use from the public curl/curl.h header and instead | Daniel Stenberg | |
made it an unsigned int. The type was only used in the curl_sockaddr struct definition (only used by the curl_opensocket_callback). On all platforms I could find information about, socklen_t is 32 unsigned bits large so I don't think this will break the API or ABI. The main reason for this change is of course for all the platforms that don't have a socklen_t definition in their headers to build fine again. Providing our own configure magic and custom definition of socklen_t on those systems proved to work but was a lot of cruft, code and extra magic needed - when this very small change of type seems harmless and still solves the missing socklen_t problem. | |||
2008-01-02 | Richard Atterer brought a patch that added support for SOCKS4a proxies, which | Daniel Stenberg | |
is an inofficial PROXY4 variant that sends the hostname to the proxy instead of the resolved address (which is already supported by SOCKS5). --socks4a is the curl command line option for it and CURLOPT_PROXYTYPE can now be set to CURLPROXY_SOCKS4A as well. | |||
2008-01-02 | updated | Daniel Stenberg | |
2008-01-02 | Added '-d' option for Watt-32 debugging. | Gisle Vanem | |
2008-01-01 | Mohun Biswas pointed out that --libcurl generated a source code with an int | Daniel Stenberg | |
function but without a return statement. While fixing that, I also took care about adding some better comments for the generated code. | |||
2007-12-27 | --libcurl was added in 7.16.1, a useful information | Daniel Stenberg | |
2007-12-26 | Dmitry Kurochkin mentioned a flaw | Daniel Stenberg | |
(http://curl.haxx.se/mail/lib-2007-12/0252.html) in detect_proxy() which failed to set the bits.proxy variable properly when an environment variable told libcurl to use a http proxy. | |||
2007-12-26 | In an attempt to repeat the problem in bug report #1850730 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=1850730) I wrote up test case 552. The test is doing a 70K POST with a read callback and an ioctl callback over a proxy requiring Digest auth. The test case code is more or less identical to the test recipe code provided by Spacen Jasset (who submitted the bug report). | |||
2007-12-26 | what we're having atm | Daniel Stenberg | |
2007-12-25 | added missing semicolon fromn last commit. | Gunter Knauf | |
2007-12-24 | Gary Maxwell filed bug report #1856628 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=1856628) and provided a fix for the (small) memory leak in the SSL session ID caching code. It happened when a previous entry in the cache was re-used. | |||
2007-12-22 | Use getcwd() to get the directory, which works even if one of the directory | Dan Fandrich | |
components doesn't have read permission set. | |||
2007-12-20 | Use getcwd() to get the directory, which works even if one of the | Dan Fandrich | |
directory components doesn't have read permission set. | |||
2007-12-19 | Ensure that nroff doesn't put anything but ASCII characters into the | Dan Fandrich | |
--manual text. | |||
2007-12-18 | (http://curl.haxx.se/mail/archive-2007-12/0039.html) reported and fixed | Yang Tse | |
a file truncation problem on Windows build targets triggered when retrying a download with curl. | |||
2007-12-18 | MSVC 9.0 (VS2008) does not support Windows build targets prior to WinXP, | Yang Tse | |
and makes wrong asumptions of build target when it isn't specified. So, if no build target has been defined we will target WinXP when building with MSVC 9.0 (VS2008). | |||
2007-12-18 | pollfd struct and WSA_poll fixes for Windows Vista already present in CVS | Yang Tse | |
2007-12-17 | Mateusz Loskot pointed out that VC++ 9.0 (2008) has the pollfd struct and | Daniel Stenberg | |
defines in the SDK somehow differently so we have to add a define to the config-win32.h file to make select.h compile nicely. | |||
2007-12-15 | spell! | Daniel Stenberg | |
2007-12-15 | Add test 551 that tests callback-post over a proxy that requires Digest auth. | Daniel Stenberg | |
A failed attempt to repeat bug report #1850730 (ie the test works fine). | |||
2007-12-14 | remove mistaken "-d" from here | Daniel Stenberg | |
2007-12-14 | -u addition: If you just give the user name (without entering a colon) curl | Daniel Stenberg | |
will prompt for a password. Denis Bredelet pointed out! | |||
2007-12-14 | Added missing <features> | Dan Fandrich | |
2007-12-14 | Fixed typo in test title | Dan Fandrich | |
2007-12-13 | Fix compiler warning | Yang Tse | |
2007-12-13 | David Wright filed bug report #1849764 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=1849764) with an included fix. He identified a problem for re-used connections that previously had sent Expect: 100-continue and in some situations the subsequent POST (that didn't use Expect:) still had the internal flag set for its use. David's fix (that makes the setting of the flag in every single request unconditionally) is fine and is now used! | |||
2007-12-12 | Gilles Blanc made the curl tool enable SO_KEEPALIVE for the connections and | Daniel Stenberg | |
added the --no-keep-alive option that can disable that on demand. | |||
2007-12-11 | clarify that the CURLMOPT_TIMERFUNCTION callback can pass in 0 and -1 as legal | Daniel Stenberg | |
values and what they mean | |||
2007-12-11 | build acountry too | Daniel Stenberg | |
2007-12-11 | Added acountry.c. | Gisle Vanem | |
2007-12-11 | Added build of acountry.nlm. | Gisle Vanem | |
2007-12-11 | Added build of acountry.exe. | Gisle Vanem | |
2007-12-11 | Build acountry.exe. Added 'socklen_t' define. | Gisle Vanem | |
2007-12-11 | Another sample application that returns country-code and | Gisle Vanem | |
name from an IPv4-address or host-name. Using the service of countries.nerd.dk. | |||
2007-12-10 | grrr, the previous commit was meant to properly make sure that we don't | Daniel Stenberg | |
link any executables when doing debug builds since they kind of assume symbols provided by libcurl, but it also wrongly included acountry.c | |||
2007-12-10 | when building | Daniel Stenberg | |
2007-12-10 | build ahost and adig by default but don't install them | Daniel Stenberg | |
2007-12-10 | Define new options in OS400 RPG interface | Patrick Monnerat | |
Port OS400 compilation scripts to >= V5R2M0 | |||
2007-12-10 | Fix for targets that do have 'struct in6_addr', but which doesn't | Gisle Vanem | |
define 's6_addr' as a macro. | |||
2007-12-10 | cut out the number of contributors from this file since it'll always be wrong | Daniel Stenberg | |
2007-12-10 | 5.13 How do I stop an ongoing transfer? | Daniel Stenberg | |
2007-12-09 | Andrew Moise filed bug report #1847501 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=1847501) and pointed out a memcpy() that should be memmove() in the convert_lineends() function. | |||
2007-12-09 | add in toc too | Daniel Stenberg | |
2007-12-09 | RTMP support? | Daniel Stenberg | |
2007-12-09 | oops another bad numbering | Daniel Stenberg | |
2007-12-09 | oops duplicate numbering | Daniel Stenberg | |
2007-12-09 | slightly rephrased | Daniel Stenberg | |
2007-12-09 | Removed use of '..\lib\libcurl_wc.lib' as this is not really | Gisle Vanem | |
a static-lib. Renamed 'OBJ_DIR' to 'WC_Win32.obj'. | |||
2007-12-09 | Removed building 'libcurl_wc.lib' as this isn't a static-library | Gisle Vanem | |
in the common sense. Renamed 'OBJ_DIR' to 'WC_Win32.obj'. | |||
2007-12-08 | Travelling some 500km by train back and forth on the same day gives you time | Daniel Stenberg | |
to do things you don't otherwise do, but here's the summary of today's work... |