- Dec 22, 2013
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
The FILE:// code doesn't support this option - and it doesn't make sense to support it as long as it works as it does since then it'd only block even longer. But: setting CURLOPT_MAX_RECV_SPEED_LARGE would make the transfer first get done and then libcurl would wait until the average speed would get low enough. This happened because the transfer happens completely in the DO state for FILE:// but then it would still unconditionally continue in to the PERFORM state where the speed check is made. Starting now, the code will skip from DO_DONE to DONE immediately if no socket is set to be recv()ed or send()ed to. Bug: http://curl.haxx.se/bug/view.cgi?id=1312 Reported-by: Mohammad AlSaleh
-
Steve Holme authored
Use of uninitialized value $FTPARG in concatenation (.) or string at line 3255.
-
Steve Holme authored
-
Steve Holme authored
-
Steve Holme authored
-
Steve Holme authored
Added SASL CANCELLATION keywords to differentiate these tests from the upcoming SASL downgrade tests.
-
Steve Holme authored
-
Daniel Stenberg authored
-
- Dec 21, 2013
-
-
Steve Holme authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
The comment in the code mentions the zero terminating after having copied data, but it mistakingly zero terminated the source data and not the destination! This caused the test 864 problem discussed on the list: http://curl.haxx.se/mail/lib-2013-12/0113.html Signed-off-by: Daniel Stenberg <daniel@haxx.se>
-
Steve Holme authored
This reverts commit 727d798d.
-
Steve Holme authored
-
- Dec 20, 2013
-
-
Steve Holme authored
-
Steve Holme authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Steve Holme authored
Although highlighted by a bug in commit 1cfb436a, APOP authentication could be chosen if the server was to reply with an empty or missing timestamp in the server greeting and APOP was given in the capability list by the server.
-
Steve Holme authored
Added a loop to pop3_statemach_act() in which Curl_pp_readresp() is called until the cache is drained. Without this multiple responses received in a single packet could result in a hang or delay.
-
- Dec 19, 2013
-
-
Steve Holme authored
Similar to the processing of untagged CAPABILITY responses in IMAP and multi-line EHLO responses in SMTP, moved the processing of multi-line CAPA responses to pop3_state_capa_resp().
-
Steve Holme authored
In an effort to reduce what pop3_endofresp() does and bring the POP3 source back inline with the IMAP and SMTP protocols, moved the APOP detection into pop3_state_servergreet_resp().
-
Steve Holme authored
Bug: http://curl.haxx.se/bug/view.cgi?id=1313 Reported-by: Viktor Szakáts
-
- Dec 18, 2013
-
-
Daniel Stenberg authored
... it could be misleading a reader into thinking it _has_ to be encoded.
-
Steve Holme authored
Added support for downgrading the SASL authentication mechanism when the decoding of CRAM-MD5, DIGEST-MD5 and NTLM messages fails. This enhances the previously added support for graceful cancellation by allowing the client to retry a lesser SASL mechanism such as LOGIN or PLAIN, or even APOP / clear text (in the case of POP3 and IMAP) when supported by the server.
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
smtp.c:478:21: error: unused variable 'smtpc' [-Werror=unused-variable]
-
Steve Holme authored
-
Steve Holme authored
-
Steve Holme authored
-
Steve Holme authored
-
Steve Holme authored
-
Steve Holme authored
-
- Dec 17, 2013
-
-
Steve Holme authored
In preparation for the upcoming SASL downgrade feature renamed the imap__perform_authenticate(), pop3__perform_authenticate() and smtp__perform_authenticate() functions.
-
Daniel Stenberg authored
-