Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-04-19 | url: Added size_t cast to pointer based length calculations | Steve Holme | |
2013-04-19 | url: Corrected minor typo in comment | Steve Holme | |
2013-04-18 | CURL_CHECK_CA_BUNDLE: don't check for paths when cross-compiling | Daniel Stenberg | |
When cross-compiling we can't scan and detect existing files or paths. Bug: http://curl.haxx.se/mail/lib-2013-04/0294.html | |||
2013-04-18 | usercertinmem.c: add example showing user cert in memory | Ishan SinghLevett | |
Relies on CURLOPT_SSL_CTX_FUNCTION, which is OpenSSL specific | |||
2013-04-18 | url: Fix chksrc longer than 79 columns warning | Steve Holme | |
2013-04-18 | url: Fix incorrect variable type for result code | Steve Holme | |
2013-04-18 | url: Fix compiler warning | Steve Holme | |
signed and unsigned type in conditional expression | |||
2013-04-18 | url: Moved parsing of login details out of parse_url_login() | Steve Holme | |
Separated the parsing of login details from the processing of them in parse_url_login() ready for use by setstropt_userpwd(). | |||
2013-04-18 | url: Re-factored set_userpass() and parse_url_userpass() | Steve Holme | |
Re-factored these functions to reflect their new behaviour following the addition of login options. | |||
2013-04-18 | url: Reworked URL parsing to allow overriding by CURLOPT_USERPWD | Steve Holme | |
2013-04-18 | maketgz: make bzip2 creation work with Parallel BZIP2 too | Daniel Stenberg | |
Apparently the previous usage didn't work with that implementation, while this updated version works with at least both Parallel BZIP2 v1.1.8 and regular bzip "Version 1.0.6, 6-Sept-2010". | |||
2013-04-18 | Add tests/http_pipe.py to the tarball build | Linus Nielsen Feltzing | |
2013-04-16 | smtp: Re-factored all perform based functions | Steve Holme | |
Standardised the naming of all perform based functions to be in the form smtp_perform_something(). | |||
2013-04-16 | smtp: Added description comments to all perform based functions | Steve Holme | |
2013-04-16 | smtp: Moved smtp_quit() to be with the other perform functions | Steve Holme | |
2013-04-16 | smtp: Moved smtp_rcpt_to() to be with the other perform functions | Steve Holme | |
2013-04-16 | smtp: Moved smtp_mail() to be with the other perform functions | Steve Holme | |
2013-04-16 | curl-config: don't output static libs when they are disabled | Wouter Van Rooy | |
Curl-config outputs static libraries even when they are disabled in configure. This causes problems with the build of pycurl. | |||
2013-04-16 | docs/libcurl: fix formatting in manpage | Dave Reisner | |
Commit c3ea3eb6 introduced some minor cosmetic errors in curl_mutli_socket_action(3). | |||
2013-04-15 | Add extra libs for lib1900 and lib2033 test programs | Paul Howarth | |
These are needed in cases where clock_gettime is used, from librt. | |||
2013-04-15 | FAQ: mention that the network connection can be monitored | Dan Fandrich | |
Also note the prohibition on sharing handles across threads. | |||
2013-04-15 | pop3: Added missing comment for pop3_state_apop_resp() | Steve Holme | |
2013-04-15 | smtp: Updated the coding style of smtp_state_servergreet_resp() | Steve Holme | |
Updated the coding style, in this function, to be consistant with other response functions rather then performing a hard return on failure. | |||
2013-04-15 | pop3: Updated the coding style of pop3_state_servergreet_resp() | Steve Holme | |
Updated the coding style, in this function, to be consistent with other response functions rather then performing a hard return on failure. | |||
2013-04-14 | pop3: Re-factored all perform based functions | Steve Holme | |
Standardised the naming of all perform based functions to be in the form pop3_perform_something() following the changes made to IMAP. | |||
2013-04-14 | pop3: Added description comments to all perform based functions | Steve Holme | |
2013-04-14 | pop3: Moved pop3_quit() to be with the other perform functions | Steve Holme | |
2013-04-14 | pop3: Moved pop3_command() to be with the other perform functions | Steve Holme | |
Started to apply the same tidy up to the POP3 code as applied to the IMAP code in the 7.30.0 release. | |||
2013-04-13 | RELEASE-NOTES: Removed erroneous spaces | Steve Holme | |
2013-04-13 | RELEASE-NOTES: synced with 8723cade21fb | Steve Holme | |
2013-04-13 | smtp: Added support for ;auth=<mech> in the URL | Steve Holme | |
Added support for specifying the preferred authentication mechanism in the URL as per Internet-Draft 'draft-earhart-url-smtp-00'. | |||
2013-04-13 | pop3: Reworked authentication type constants | Steve Holme | |
... to use left-shifted values, like those defined in curl.h, rather than 16-bit hexadecimal values. | |||
2013-04-13 | pop3: Small consistency tidy up | Steve Holme | |
2013-04-13 | pop3: Added support for ;auth=<mech> in the URL | Steve Holme | |
Added support for specifying the preferred authentication type and SASL mechanism in the URL as per RFC-2384. | |||
2013-04-13 | imap: Added support for ;auth=<mech> in the URL | Steve Holme | |
Added support for specifying the preferred authentication mechanism in the URL as per RFC-5092. | |||
2013-04-13 | sasl: Reworked SASL mechanism constants | Steve Holme | |
... to use left-shifted values, like those defined in curl.h, rather than 16-bit hexadecimal values. | |||
2013-04-13 | sasl: Added predefined preferred mechanism values | Steve Holme | |
In preparation for the upcoming changes to IMAP, POP3 and SMTP added preferred mechanism values. | |||
2013-04-13 | url: Added support for parsing login options from the URL | Steve Holme | |
As well as parsing the username and password from the URL, added support for parsing the optional options part from the login details, to allow the following supported URL format: schema://username:password;options@example.com/path?q=foobar This will only be used by IMAP, POP3 and SMTP at present but any protocol that may be given login options in the URL will be able to add support for them. | |||
2013-04-13 | smtp: Fix compiler warning | Steve Holme | |
warning: unused variable 'smtp' introduced in commit 73cbd21b5ee6. | |||
2013-04-12 | smtp: Moved parsing of url path into separate function | Steve Holme | |
2013-04-12 | FTP: handle a 230 welcome response | Daniel Stenberg | |
...instead of the 220 we otherwise expect. Made the ftpserver.pl support sending a custom "welcome" and then created test 1219 to verify this fix with such a 230 welcome. Bug: http://curl.haxx.se/mail/lib-2013-02/0102.html Reported by: Anders Havn | |||
2013-04-12 | configure: try pthread_create without -lpthread | Daniel Stenberg | |
For libc variants without a spearate pthread lib (like bionic), try using pthreads without the pthreads lib first and only if that fails try the -lpthread linker flag. Bug: http://curl.haxx.se/bug/view.cgi?id=1216 Reported by: Duncan | |||
2013-04-12 | FTP: access files in root dir correctly | Daniel Stenberg | |
Accessing a file with an absolute path in the root dir but with no directory specified was not handled correctly. This fix comes with four new test cases that verify it. Bug: http://curl.haxx.se/mail/lib-2013-04/0142.html Reported by: Sam Deane | |||
2013-04-12 | pop3: Reworked the function description for Curl_pop3_write() | Steve Holme | |
2013-04-12 | pop3: Added function description to pop3_parse_custom_request() | Steve Holme | |
2013-04-12 | pop3: Moved utility functions to end of pop3.c | Steve Holme | |
2013-04-12 | darwinssl: add TLS session resumption | Nick Zitzmann | |
This ought to speed up additional TLS handshakes, at least in theory. | |||
2013-04-12 | imap: Added function description to imap_parse_custom_request() | Steve Holme | |
2013-04-12 | imap: Moved utility functions to end of imap.c (Part 3/3) | Steve Holme | |
Moved imap_is_bchar() be with the other utility based functions. | |||
2013-04-12 | imap: Moved utility functions to end of imap.c (Part 2/3) | Steve Holme | |
Moved imap_parse_url_path() and imap_parse_custom_request() to the end of the file allowing all utility functions to be grouped together. |