Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-03-31 | smtp: Cody tidy up of md5 digest length | Gökhan Şengün | |
Replaced the hard coded md5 digest length (16) with a preprocessor constant | |||
2012-03-31 | md5: Add support for calculating the md5 sum of buffers incrementally | Gökhan Şengün | |
It is now possible to calculate the md5 sum as the stream of buffers becomes known where as previously it was only possible to calculate the md5 sum of a pre-prepared buffer. | |||
2012-03-31 | Revert "mk-ca-bundle.pl: use LWP::UserAgent for https" | Daniel Stenberg | |
This reverts commit 9f0e1689f169b83b8fbdae23e0024cc57dcbc770. It turned out that "improvement" instead made the fetching of the certificates unreliable Bug: http://curl.haxx.se/mail/lib-2012-03/0238.html Reported by: Tim Heckman | |||
2012-03-31 | DOCS: Added information regarding POP3 commands to CURLOPT_CUSTOMREQUEST | Steve Holme | |
2012-03-31 | pop3: Added support for additional pop3 commands | Steve Holme | |
This feature allows the user to specify and use additional POP3 commands such as UIDL and DELE via libcurl's CURLOPT_CUSTOMREQUEST or curl's -X command line option. | |||
2012-03-30 | CMakeLists.txt: fix Windows LDAP/LDAPS option handling | tetetest tetetest | |
bug: http://curl.haxx.se/mail/lib-2012-03/0278.html | |||
2012-03-29 | CMakeLists.txt: fix MS Visual Studio x64 unsigned long long literal suffix | tetetest tetetest | |
bug: http://curl.haxx.se/mail/lib-2012-03/0255.html | |||
2012-03-28 | TODO: Corrected POP3 section heading | Steve Holme | |
2012-03-28 | curl-functions.m4: update detection logic of getaddrinfo() thread-safeness | Yang Tse | |
Take in account that h_errno might be a modifiable lvalue not defined as a C preprocessor macro | |||
2012-03-27 | TODO: Added SMTP and POP3 specific features | Steve Holme | |
2012-03-27 | tool_cb_dbg.c: fix tool_cb_dbg() to behave properly even for size 0 | Olaf Flebbe | |
curl segfault in debug callback triggered with CURLINFO_HEADER_OUT and size 0 bug: http://curl.haxx.se/bug/view.cgi?id=3511794 | |||
2012-03-26 | test #1405: support HTTP disabled builds | Yang Tse | |
2012-03-26 | test #809: Updated error code to match recent pop3 changes | Steve Holme | |
2012-03-25 | ssh.c: code cleanup, Curl_safefree() already nullifies pointer | Yang Tse | |
2012-03-25 | fix some compiler warnings | Yang Tse | |
2012-03-25 | pop3.c: Corrected problem with state() introduced in 01690ed2bce5 | Steve Holme | |
2012-03-25 | pop.c: Small code tidy up | Steve Holme | |
2012-03-25 | pop3: Removed the need for the single message LIST command handler | Steve Holme | |
Simplified the code to remove the need for a separate "LIST <msg id>" command handler and state machine and instead use the LIST command handler for both operations. | |||
2012-03-24 | pop3.c: Code policing and tidy up | Steve Holme | |
Corrected character and line spacing and re-ordered list and retr functions based on the order of their state machines. | |||
2012-03-24 | email: Moved server greeting responses into separate functions | Steve Holme | |
Moved the server greeting response handling code from the statemach_act functions to separate response functions. This makes the code simpler to follow and provides consistency with the other responses that are handled here. | |||
2012-03-24 | pop3.c: Fixed body data being written when CURLOPT_NOBODY is specified | Steve Holme | |
Body data would be forwarded to the client application in both the RETR and LIST commands even if CURLOPT_NOBODY was specified. | |||
2012-03-23 | docs: clarify -z/--time-cond with filename (mention mtime) | Rodrigo Silva (MestreLion) | |
Original wording could lead users in thinking it tries to somehow parse the filename for a date expression (like news_2012_03_05.html). It never mentions that it actually reads the mtime of the file in filesystem. | |||
2012-03-23 | tests #1316 #1319 #1320 #1321: add missing keywords | Yang Tse | |
2012-03-23 | test #598: add missing keywords | Yang Tse | |
2012-03-23 | version: start working on 7.25.1-DEV | Yang Tse | |
2012-03-22 | configure: check for gethostbyname in the watt lib | Benjamin Johnson | |
This allows building of libcurl on DOS using DJGPP 2.04 and Watt-32 sockets. I know there's already Makefile.djgpp, but I find this more convenient since I'm used to using the ./configure script from other platforms | |||
2012-03-22 | THANKS: 8 new contributors from 7.25.0 | Daniel Stenberg | |
2012-03-22 | RELEASE-NOTES: synced with b8b2cf612b2 | Daniel Stenberg | |
2012-03-22 | tests #1400 #1401: add missing keywords | Yang Tse | |
2012-03-22 | http_proxy.h: fix builds with proxy or http disabled | Yang Tse | |
2012-03-22 | parsedate.c: fix a numeric overflow | Yang Tse | |
2012-03-22 | cookies: strip the numerical ipv6 host properly | Andrei Cipu | |
The commit e650dbde86d4 that stripped off [brackets] from ipv6-only host headers for the sake of cookie parsing wrongly incremented the host pointer which would cause a bad free() call later on. | |||
2012-03-22 | test #598: add to Makefile.am | Yang Tse | |
2012-03-22 | test #598: OOM handling fixes | Yang Tse | |
2012-03-22 | fix several compiler warnings | Yang Tse | |
2012-03-22 | CONNECT: fix multi interface regression | Daniel Stenberg | |
The refactoring of HTTP CONNECT handling in commit 41b0237834232 that made it protocol independent broke it for the multi interface. This fix now introduce a better state handling and moved some logic to the http_proxy.c source file. Reported by: Yang Tse Bug: http://curl.haxx.se/mail/lib-2012-03/0162.html | |||
2012-03-22 | SWS: refuse to serve CONNECT unless running as proxy | Daniel Stenberg | |
2012-03-21 | curl-functions.m4: update detection logic of getaddrinfo() thread-safeness | Yang Tse | |
Take in account that POSIX standard Issue 7 drops h_errno support. Now, we also consider getaddrinfo() to be thread-safe when (_POSIX_C_SOURCE >= 200809L) or (_XOPEN_SOURCE >= 700) independently of whether h_errno exists or not. | |||
2012-03-20 | fix several compiler warnings | Yang Tse | |
2012-03-18 | tests 140X: fix --libcurl generated source file reading mode for MSYS builds | Yang Tse | |
2012-03-18 | tool_easysrc.c: fix --libcurl option output file text translation mode | Yang Tse | |
Use fopen() with "w" mode instead of "wt" to fix cygwin builds. | |||
2012-03-18 | build: remove tool_cb_skt.[ch] references | Yang Tse | |
2012-03-18 | RELEASE-NOTES: synced with ad77420ac761b | Daniel Stenberg | |
3 more bugs, 1 more contributor | |||
2012-03-17 | lwip: basic checks and macros for compatiblity | Daniel Stenberg | |
2012-03-17 | tool_setopt.c: more OOM handling fixes | Yang Tse | |
2012-03-16 | cmake: list_spaces_append_once fails with spaces in filename | Daniel Stenberg | |
Windows standard libraries are located in C:/Program Files/Microsoft SDKs/[...]. They are already included in the default MSVC LIBPATH. Hence, find_library(WSOCK32_LIBRARY wsock32) and find_library(WS2_32_LIBRARY ws2_32) are not needed. They return the full path to the libraries including spaces. Of course, list_spaces_append_once will mangle the result and the build fails. Bug: http://curl.haxx.se/bug/view.cgi?id=3494968 | |||
2012-03-16 | http_proxy.c: fix OOM handling | Yang Tse | |
2012-03-16 | tool_setopt.c: fix OOM handling | Yang Tse | |
2012-03-16 | fix several compiler warnings | Yang Tse | |
2012-03-16 | fix some compiler warnings | Yang Tse | |