- Aug 07, 2012
-
-
Daniel Stenberg authored
This fixes a build failure of lib/ssluse.c. Bug: http://curl.haxx.se/bug/view.cgi?id=3552997
-
Daniel Stenberg authored
-
Daniel Stenberg authored
Stupid lack of range checks caused the code to overwrite local variables after glob number nine. Added checks now. Bug: http://curl.haxx.se/bug/view.cgi?id=3546353
-
- Aug 06, 2012
-
-
Joe Mason authored
Fix a bug where closed sockets (fd -1) were left in the all_sockets list, because of missing parens in a pointer arithmetic expression Reenable the tests that were locking up due to this bug.
-
Joe Mason authored
-
Joe Mason authored
-
Joe Mason authored
-
Daniel Stenberg authored
Two separate "Value stored to 'XXX' is never read" warnings
-
Daniel Stenberg authored
Value stored to 'separator' is never read
-
Daniel Stenberg authored
Bug: http://curl.haxx.se/bug/view.cgi?id=3554668 Reported by: Anthony G. Basile
-
Daniel Stenberg authored
Bug: http://curl.haxx.se/bug/view.cgi?id=3554668 Reported by: Anthony G. Basile
-
Guenter Knauf authored
-
- Aug 05, 2012
-
-
Daniel Stenberg authored
The tests 2025, 2028 and 2031 don't work for me so I'll have them disabled for now until we solve the problem.
-
- Aug 03, 2012
- Aug 02, 2012
-
-
Joe Mason authored
SO_KEEPALIVE flag to all sockets. Note that several loops which used to continue on a return value of 0 (theoretical since 0 would never be returned without O_NONBLOCK) now break on 0 so that they won't continue reading until after poll is called again.
-
Joe Mason authored
for non-blocking sockets: now -1 means error or connection finished, 1 means data was read, and 0 means there is no data available now so need to wait for poll (new return value)
-
Joe Mason authored
half-finished. Note the the req struct used to be re-initialized AFTER reading pipeline data, so now that we initialize it from the caller we must be careful not to overwrite the pipeline data. Also we now need to handle the case where the buffer is already full when get_request is called - previously this never happened as it was always called with an empty buffer and looped until done. Now get_request is called in a loop, so the next step is to run the loop on a socket only when poll signals it is readable.
-
Joe Mason authored
The next step will be to call the correct function after a poll, rather than looping unconditionally
-
Joe Mason authored
be redundant once we poll
-
- Jul 30, 2012
-
-
Kamil Dudka authored
It eliminates noisy events when using inotify and fixes a TOCTOU issue. Bug: https://bugzilla.redhat.com/844385
-
- Jul 29, 2012
-
-
Guenter Knauf authored
Discussion on the list: http://curl.haxx.se/mail/lib-2012-07/0271.html
-
Guenter Knauf authored
-
Guenter Knauf authored
-
Guenter Knauf authored
-
- Jul 28, 2012
-
-
Steve Holme authored
Removed APOP and SASL authentication from the POP3 section and metalink support from the client section as these features were implemented in this release. Moved adding gssapi to SASL into it's own section rather than repeat it for each protocol.
-
- Jul 27, 2012
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
Let's call it 7.27.1 for now, but it it probably going to become 7.28.0 when released.
-
Guenter Knauf authored
-
Guenter Knauf authored
-
Guenter Knauf authored
This needs another look from the configure experts. I tested that it works so far with MinGW64 cross-compiler; libcurl builds and links fine, but curl not yet ...
-
- Jul 26, 2012
-
-
Ant Bryan authored
-
Daniel Stenberg authored
The --silent bug came with 7561a0fc which was never in a release. Pointed out by Kamil Dudka
-
Daniel Stenberg authored
4 more bugfixes, 3 more contributors
-
Guenter Knauf authored
Synced the output to the same short form as we now use for Windows SSL (WinSSL).
-
- Jul 25, 2012
-
-
Nick Zitzmann authored
Previously the curl_multi interface would freeze if darwinssl was enabled and at least one of the handles tried to connect to a Web site using HTTPS. Removed the "wouldblock" state darwinssl was using because I figured out a solution for our "would block but in which direction?" dilemma.
-
Guenter Knauf authored
-
- Jul 23, 2012
-
-
Daniel Stenberg authored
Reported by: Santhana Todatry
-