aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-08-12http NTLM: more adjustments in preparation of code refactoringYang Tse
Use preprocessor symbol NTLM_BUFSIZE to define private NTLM buffer fixed size. Use a SessionHandle 'data' pointer variable to ease refactoring. Update NTLM type-* message structure descriptions. Fix some more spacing and typos (Steve Holme).
2011-08-11curl_easy_cleanup: clarify the callback situationDaniel Stenberg
2011-08-11http NTLM: fix compiler warningYang Tse
2011-08-11http NTLM: Tidied up more inconsistent spacing.Steve Holme
Moved NTLMSSP_SIGNATURE, HOSTNAME_MAX, SHORTPAIR and LONGQUARTET definitions in ready for move to curl_ntlm.c. Used separate variables for Windows SSPI and native code to ease moving of code to curl_ntlm.c. Fixed typographical erros where SPPI should be SSPI. Fixed compilation warnings on 64-bit builds when calling Windows SSPI functions.
2011-08-10rtsp.c: converted to CDaniel Stenberg
Trimmed the newlines to be LF-only. Converted the source to plain C, to use curl style indents, to compile warning-free with picky options and fixed the minor fprintf() bug on line 245. Added to makefile.
2011-08-10rtsp.c: new exampleJim Hollinger
Code from http://code.google.com/p/rtsprequest/source/browse/trunk/rtsprequest.cpp
2011-08-10TODO: remove curl_formpost in a future versionDaniel Stenberg
15.8 remove 'curl_httppost' from public
2011-08-09http NTLM: Further tiding up to libcurl standardsYang Tse
2011-08-09http NTLM: Tidied up http_ntlm prior to splitting the ntlm specific codeSteve Holme
2011-08-09TODO-RELEASE: issue #289 is fixedDaniel Stenberg
289 - bug 3349227 "secure attribute in cookie does not work with equals sign"
2011-08-09cookie parser: handle 'secure='Daniel Stenberg
There are two keywords in cookie headers that don't follow the regular name=value style: secure and httponly. Still we must support that they are written like 'secure=' and then treat them as if they were written 'secure'. Test case 31 was much extended by Rob Ward to test this. Bug: http://curl.haxx.se/bug/view.cgi?id=3349227 Reported by: "gnombat"
2011-08-09curl.h: mark deprecated CURLOPT_ options on same lineDaniel Stenberg
This is to aid easier machine parsing and to make sure nobody who reads these header lines can miss the info.
2011-08-09RELEASE-NOTES: recounted and updated some numbersDaniel Stenberg
2011-08-09proxy protocol docs: rephrased and updatedDaniel Stenberg
2011-08-08RELEASE-NOTES: synced with 45d883d88df7Daniel Stenberg
Mention 5 bugixes and 1 change more
2011-08-08CURLFORM_BUFFER: insert filename as documentedDaniel Stenberg
A regression where CURLFORM_BUFFER stopped to properly insert the file name part in the formpart. Bug introduced in commit f851f768578dc096. Added CURLFORM_BUFFER use to test 554 to verify this. Bug: http://curl.haxx.se/mail/lib-2011-07/0176.html Reported by: Henry Ludemann
2011-08-08curl-compilers.m4: serial number bumpYang Tse
2011-08-08curl-compilers.m4: CURL_CONVERT_INCLUDE_TO_ISYSTEM adjustments:Yang Tse
Add CURL_CHECK_COMPILER as a requirement. Ensure macro does nothing unless GNU_C or CLANG compiler is used. This should allow usage of this macro in unforeseen placements.
2011-08-08SOCKS: fix the connect timeoutDaniel Stenberg
The connect timeout logic when using SOCKS was done wrong Bug: http://curl.haxx.se/mail/lib-2011-07/0177.html Reported by: "Spoon Man"
2011-08-08ftp_doing: bail out on error properlyDaniel Stenberg
When a failure has been detected we must abort immdiately. Bug: http://curl.haxx.se/mail/lib-2011-07/0177.html Reported by: "Spoon Man"
2011-08-08s/7.21.8/7.22.0Daniel Stenberg
2011-08-08version bump: next release is 7.22.0Daniel Stenberg
2011-08-08VERSIONS: clarify our versioning conceptDaniel Stenberg
Drop the pre-release part from this text as we don't use that in practise since many years. Update the phrasing to reflect our more strict interpretation: http://curl.haxx.se/mail/lib-2011-08/0064.html
2011-08-07OpenSSL: Use SSL_MODE_RELEASE_BUFFERS if available, reduces memory useCristian Rodríguez
See also : http://www.openssl.org/docs/ssl/SSL_CTX_set_mode.html http://www.imperialviolet.org/2010/06/25/overclocking-ssl.html Signed-off-by: Cristian Rodríguez <crrodriguez@opensuse.org>
2011-08-07TODO-RELEASE: close issue #292Daniel Stenberg
Fixed: 292 - bug 3385258 "Addendum to 3370895" Basically brushing up commit 27b8814017a19
2011-08-07Curl_pgrsStartNow: clear all bits except HIDEDaniel Stenberg
Bug: http://curl.haxx.se/bug/view.cgi?id=3385258 Reported by: Ben Winslow
2011-08-07readwrite_data: improved C-E decoding error messageDaniel Stenberg
2011-08-07BSD-style lwIP TCP/IP stack support - followupYang Tse
lwIP library initialization.
2011-08-07NTLM single-sign on adjustments (IX)Yang Tse
Use swrite/sread instead of write/read to avoid SIGPIPE
2011-08-06config-win32.h: comments adjustmentsYang Tse
2011-08-06TODO-RELEASE: committed issue #304Daniel Stenberg
304 - "Async-DNS-resolve-thread gets started even when a dotted IP is provided" by Christian H<E4>gele http://curl.haxx.se/mail/lib-2011-08/0009.html
2011-08-06asyn-thread: check for dotted addresses before thread startsChristian Hägele
2011-08-06TODO-RELEASE: Add #307 two issues by "Spoon Man"Daniel Stenberg
2011-08-05checksrc.pl: add quotes to varYang Tse
2011-08-05keep a single copy of config-win32.h in version control repository - followupYang Tse
Allow configure builds to generate src/config-win32.h Skip checksrc on src/config-win32.h contents already checked at lib/config-win32.h Allow multiple -W in checksrc.pl
2011-08-05BSD-style lwIP TCP/IP stack support - docs/INSTALL blurbYang Tse
2011-08-05BSD-style lwIP TCP/IP stack support - followupYang Tse
2011-08-05git ignore src/config-win32.hYang Tse
2011-08-05keep a single copy of config-win32.h in version control repository.Yang Tse
maketgz and buildconf.bat updated to reflect this.
2011-08-05RELEASE-NOTES: synced with afe88d85f40e1Daniel Stenberg
2011-08-05test710: verify that --proxy socks5://hostname worksDaniel Stenberg
2011-08-05create_conn: mark non-HTTP proxies accordinglyDaniel Stenberg
A proxy could be marked 'httpproxy' wrongly before if set with an environment variable or with the CURLOPT_PROXY option with a socks*:// prefix or similar. Added test 710 to verify Bug: http://curl.haxx.se/mail/lib-2011-07/0194.html
2011-08-05test709: HTTP GET via SOCKS5 set in environmentDaniel Stenberg
2011-08-04TODO-RELEASE: issue #293 is doneDaniel Stenberg
Fixed: 293 - from http://bugzilla.redhat.com/723075 "curl segfaults"
2011-08-04segfault fixedDaniel Stenberg
When using both -J and a single -O with multiple URLs, a missing init could cause badness. Bug: http://curl.haxx.se/mail/lib-2011-07/0126.html and http://bugzilla.redhat.com/723075 Reported by: Paul Howarth and Garrett Holmstrom
2011-08-04test1313: test content-disposition with uneven quotesDaniel Stenberg
2011-08-04parse_filename: deal with escaped quotesDaniel Stenberg
2011-08-04BSD-style lwIP TCP/IP stack support:Yang Tse
Allow compilation of libcurl and curl using BSD-style lwIP on Win32. In order to compile libcurl and curl with this support it is necessary to edit files lib/config-win32.h and src/config-win32.h and uncomment a line to make definition of preprocessor symbol USE_LWIPSOCK visible. Afterwards you can compile as usual. In order to use compiled library with BSD-style lwIP TCP/IP stack in your program it is mandatory that you include lwIP header file <lwip/opt.h> before including <curl/curl.h> or <curl/multi.h> Compilation has been verified with lwIP 1.4.0 and contrib-1.4.0 from: http://download.savannah.gnu.org/releases/lwip/lwip-1.4.0.zip http://download.savannah.gnu.org/releases/lwip/contrib-1.4.0.zip Have fun!
2011-08-04curl.h: untangle a preprocessor block, removing duplicate sys/types.h inclusionYang Tse
2011-08-04TODO-RELEASE: issue #290 fixedDaniel Stenberg
Closed this entry: 290 - bug 3375603 "curl has problem with remote names containing ';'"