aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-05-24compiler warning: fixYang Tse
Fix compiler warning: expression has no effect
2011-05-23compiler warning: fixYang Tse
Fix compiler warning: `keycheck' might be used uninitialized in this function. Fix compiler warning: `keybit' might be used uninitialized in this function.
2011-05-23compiler warning: fixYang Tse
Fix variable declaration placement
2011-05-23compiler warning: fixYang Tse
Fix missing semicolon
2011-05-23compiler warning: fixYang Tse
Fix compiler warning: expression has no effect Fix OOM handling
2011-05-23compiler warning: fixYang Tse
Fix compiler warning: expression has no effect
2011-05-23compiler warning: fixYang Tse
Fix compiler warning: unused variable 'data'
2011-05-21compiler warning: fixYang Tse
Fix compiler warning: enumerated type mixed with another type
2011-05-21compiler warning: fixYang Tse
Fix compiler warning: enumerated type mixed with another type
2011-05-21compiler warning: fixYang Tse
Fix compiler warning: enumerated type mixed with another type
2011-05-21compiler warning: fixYang Tse
Fix compiler warning: enumerated type mixed with another type
2011-05-21compiler warning: fixYang Tse
Fix compiler warning: enumerated type mixed with another type
2011-05-21compiler warning: fixYang Tse
Fix compiler warning: empty body in an if-statement
2011-05-21unit tests: adjust header inclusion orderYang Tse
Additionally, prevent multiple inclusions of curl_config.h
2011-05-20Merge pull request #19 from pierrejoye/masterDaniel Stenberg
winbuild: typo in docs
2011-05-20cyassl: build without filesystemOla Mork
Get cyassl's NO_FILESYSTEM to work with libcurl. Otherwise I'd get linker errors for the missing "SSL_CTX_load_verify_locations" functions.
2011-05-20- typoPierre Joye
2011-05-19typo: close is in man page section 3Daniel Stenberg
2011-05-19tests: verify OPEN/CLOSESOCKETFUNCTIONYang Tse
Test 585: Fix opensocket return type, and avoid function name clash.
2011-05-19version: linkage fixYang Tse
Fix linkage on c-ares enabled Windows static builds
2011-05-18curl_easy_setopt.3: document CLOSESOCKET* optionsDaniel Stenberg
2011-05-18tests: verify OPEN/CLOSESOCKETFUNCTIONDaniel Stenberg
Test 585 and 586 were added. Using a modified lib500.c
2011-05-18symbols-in-versions: add CLOSESOCKET*Daniel Stenberg
2011-05-18CLOSESOCKETFUNCTION: use the callbackDaniel Stenberg
Fix the return type of the callback to match close() and make use of it.
2011-05-18CLOSESOCKETFUNCTION: addedDaniel Stenberg
Introduced the initial setup to allow closesocket callbacks by making sure sclose() is only ever called from one place in the libcurl source and still run all test cases fine.
2011-05-18GnuTLS handshake: fix timeoutDaniel Stenberg
Commit cbf4961bf3e garbled the timeout handling while doing SSL handshaking (in an attempt at fixing another bug). This puts sanity back. Bug: http://curl.haxx.se/mail/lib-2011-05/0167.html Reported by: Ethan Glasser Camp
2011-05-16checksrc: trailing whitespace detection fixDaniel Stenberg
2011-05-16negotiate sspi: fix sequential requestsMarcel Roelofs
2011-05-13tests: added HTTP If-Modified-Since testsDaniel Stenberg
Added test 1126 and 1127 to verify curl's behaviour when If-Modified-Since is used and a 200 is returned. The list of test cases in Makefile.am is now sorted numerically.
2011-05-09include: cleanupDaniel Stenberg
Made the public headers checksrc compliant Removed types.h (it's been unused since April 2004) Made the root makefile do make in include by default as well, so that TAGS and the checksrc will work better.
2011-05-06Fixed compilation when RTSP is disabledDan Fandrich
2011-05-06Fixed LDAP after RTSP readwrite changeDan Fandrich
2011-05-06RELEASE-NOTES: synced with 32001ac4149b206Daniel Stenberg
2011-05-05set_userpass: convert from protocol-specific to genericDaniel Stenberg
The protocol handler's flags field now can set that the protocol requires a password, so that the set_userpass function doesn't have to have the specific knowledge of which protocols that do.
2011-05-05RTSP: cleanupsDaniel Stenberg
Made several functions static Made one function defined to nothing when RTSP is disabled to avoid the #ifdefs in code. Removed explicit rtsp.h includes
2011-05-05RTSP: convert protocol-specific checks to genericDaniel Stenberg
Add a 'readwrite' function to the protocol handler struct and use that for the extra readwrite functionality RTSP needs.
2011-05-05SSL: check for SSL, not specific protocolsDaniel Stenberg
Code cleanup to check less for protocols and more for the specific relevant feature. Like if SSL is required.
2011-05-05http_perhapsrewind: remove HTTP checkDaniel Stenberg
No need to check for HTTP as this is now a HTTP-specific function
2011-05-05http_perhapsrewind:Daniel Stenberg
make it static, remove Curl_ prefix
2011-05-05remove FILE protocol-specific checksDaniel Stenberg
Also, convert the BANPROXY flag into NONETWORK for the protocols (file:// only atm) that don't work over networks.
2011-05-05curl.1: --socks* options no longer neededDaniel Stenberg
As we now can specify all the socks proxy types with the regular --proxy option using protocol prefix.
2011-05-05socks proxy: allow socks5h:// prefix tooDaniel Stenberg
Using 'socks5h' as proxy protocol will make it a CURLPROXY_SOCKS5_HOSTNAME proxy which is SOCKS5 and asking the proxy to resolve host names. I found no "standard" protocol name for this.
2011-05-05curl.1: minor edit of --ftp-ssl*Daniel Stenberg
2011-05-05curl.1: use GNU style and sort optionsJari Aalto
Follow style of GNU layout (cp, mv ...) where options are separated with comma: -o, --option Order item alphabetically (by length also): -o, -O, --option Follow style of GNU layout by moving help related options to the end: --help, -M, --version
2011-05-05Corrected commentsDaniel Stenberg
closepolicy has been deprecated and unused for years
2011-05-04ConnectionStore: remove unused return codeDaniel Stenberg
2011-05-04indent correctlyDaniel Stenberg
2011-05-03curl_easy_getinfo.3: clarify some timing infoDaniel Stenberg
2011-05-02curl_easy_setopt.3: clarify the SSH KEYFILE options usageDaniel Stenberg
The internal defaults are important info
2011-05-02docs: mention the protocol:// support in proxy stringsDaniel Stenberg