- Dec 13, 2011
- Dec 12, 2011
-
-
Jason Glasgow authored
Do not try to resolve interfaces names via DNS by recognizing interface names in a few ways. If the interface option argument has a prefix of "if!" then treat the argument as only an interface. Similarly, if the interface argument is the name of an interface (even if it does not have an IP address assigned), treat it as an interface name. Finally, if the interface argument is prefixed by "host!" treat it as a hostname that must be resolved by /etc/hosts or DNS. These changes allow a client using the multi interfaces to avoid blocking on name resolution if the interface loses its IP address or disappears.
-
- Dec 11, 2011
-
-
Steve Holme authored
Fixed the connection reuse detection in ConnectionExists() when comparing a new connection that is non-SSL based against that of a SSL based connection that has become so by being upgraded via TLS.
-
- Dec 09, 2011
-
-
Daniel Stenberg authored
This is a regression since who knows when. When spotting that a HTTP proxy is used we must not uncondititionally enable the HTTP protocol since if we do tunneling through the proxy we're still using the target protocol. Reported by: Naveen Chandran
-
- Dec 07, 2011
-
-
Gokhan Sengun authored
As a follow-up from commit d5b5f64b, clear the sock_accepted status when such a socket is closed to avoid a re-used connection to retain the state wrongly. Bug: http://curl.haxx.se/mail/lib-2011-12/0079.html
-
Gokhan Sengun authored
-
- Dec 06, 2011
-
-
Daniel Stenberg authored
If no SSLv2 was detected in OpenSSL by configure, then we enforce the OPENSSL_NO_SSL2 define as it seems some people report it not being defined properly in the OpenSSL headers.
-
- Dec 05, 2011
-
-
Daniel Stenberg authored
When a 32 digit hex key is given as a hostkey md5 checksum, the code would still run it against the knownhost check and not properly acknowledge that the md5 should then be the sole guide for. The verbose output now includes the evaluated MD5 hostkey checksum. Some related source code comments were also updated. Bug: http://curl.haxx.se/bug/view.cgi?id=3451592 Reported by: Reza Arbab
-
Daniel Stenberg authored
As there are different return codes for host vs proxy errors, this function now properly returns the code properly depending on what was attempted to get resolved. Bug: http://curl.haxx.se/mail/archive-2011-12/0010.html Reported by: Jason Liu
-
Daniel Stenberg authored
When making a distinction which return code to return, the code previously only regarded HTTP proxies to be proxies and thus return host-related errors for failures on other proxy types than HTTP. Now all proxy types will be considered proxies...
-
Daniel Stenberg authored
Keep track of which sockets that are the result of accept() calls and refuse to call the closesocket callback for those sockets. Test case 596 now verifies that the open socket callback is called the same number of times as the closed socket callback for active FTP connections. Bug: http://curl.haxx.se/mail/lib-2011-12/0018.html Reported by: Gokhan Sengun
-
Daniel Stenberg authored
When the new socket is created for an active connection, it is now done using the open socket callback. Test case 596 was modified to run fine, although it hides the fact that the close callback is still called too many times, as it also gets called for closing sockets that were created with accept().
-
Daniel Stenberg authored
Moved out into a separate function to work as a "generic" socket() replacement.
-
- Dec 02, 2011
-
-
Jason Glasgow authored
Ensure that CURLE_OK is returned if setting the name servers is successfull.
-
Daniel Stenberg authored
If the socket callback function pointer hasn't been set, we must not attempt to use it. Commit adc88ca2 made it more likely to occur.
-
Jason Glasgow authored
If the first name server is not available, the multi interface does not invoke the socket_cb when the DNS request to the first name server timesout. Ensure that the list of sockets are always updated after calling Curl_resolver_is_resolved. This bug can be reproduced if Curl is complied with --enable_ares and your code uses the multi socket interfaces and the CURLMOPT_SOCKETFUNCTION option. To test try: iptables -I INPUT \ -s $(sed -n -e '/name/{s/.* //p;q}' /etc/resolv.conf)/32 \ -j REJECT and then run a program which uses the multi-interface.
-
- Nov 30, 2011
-
-
Steve Holme authored
Changed the eob detection to work across the whole of the buffer so that lines that begin with a dot (which the server will have escaped) are passed to the client application correctly.
-
- Nov 29, 2011
-
-
Yang Tse authored
-
Daniel Stenberg authored
By making sure the function can detect an "end of body" sequence immediately on the first line, test 811 is now enabled.
-
- Nov 28, 2011
-
-
Daniel Stenberg authored
Curl_pop3_write() now has a state machine that scans for the end of a POP3 body so that the CR LF '.' CR LF sequence can come in everything from one up to five subsequent packets. Test case 810 is modified to use SLOWDOWN which makes the server pause between each single byte and thus makes the POP3 body get sent to curl basically one byte at a time.
-
- Nov 25, 2011
-
-
Yang Tse authored
-
Jonas Schnelli authored
-
Daniel Stenberg authored
Added convenience macro to use to check if a handle is using a shared SSL session, and fixed so that Curl_ssl_close_all() doesn't lock when the session isn't shared.
-
Yang Tse authored
-
Yang Tse authored
Skip a floating point addition operation when integral part of time difference is zero. This avoids potential floating point addition rounding problems while preserving decimal part value.
-
Daniel Stenberg authored
Macros that look like function calls need to be made so that we can use semicolons properly for indentation and for reducing the risk for mistakes when using them.
-
Laurent Rabret authored
1) enables the Window Size option 2) allows the server to enable the echo mode 3) allows an app using libcurl to disable the default binary mode Signed-off-by: Laurent Rabret
-
- Nov 24, 2011
-
-
Jonas Schnelli authored
By setting PROTOPT_NOURLQUERY in the protocol handler struct, the protocol will get the "query part" of the URL cut off before the data is handled by the protocol-specific code. This makes libcurl adhere to RFC3986 section 2.2. Test 1220 is added to verify a file:// URL with query-part.
-
Yang Tse authored
-
Yang Tse authored
-
- Nov 23, 2011
-
-
Mark Brand authored
Bugfix: https handshake fails using gnutls 3 on windows http://sourceforge.net/tracker/index.php?func=detail&aid=3441084&group_id=976&atid=100976 New gnutls versions have an error handler that knows about Winsock errors, which is why gnutls_transport_set_global_errno() was deprecated and then removed. This is a correction of commit f5bb3701 (blame me) which meant to reimplement gnutls_transport_set_global_errno(), which is not necessary.
-
- Nov 21, 2011
-
-
Daniel Stenberg authored
Regression: commit b998d95b (shipped first in release 7.22.0) made the condition always equal false that should reset the TIMER_CONNECT timer and call the Curl_verboseconnect() function. Reported by: "Captain Basil" Bug: http://curl.haxx.se/mail/archive-2011-11/0035.html
-
- Nov 19, 2011
-
-
Martin Storsjo authored
-
- Nov 18, 2011
-
-
Jonas Schnelli authored
prefixing a command with '*' means it is allowed to fail without aborting the chain actions
-
- Nov 17, 2011
-
-
Daniel Stenberg authored
Also, check for the session sharing bit instead of comparing pointers
-
Daniel Stenberg authored
-
Alejandro Alvarez Ayllon authored
Previously the age counter would be counted individually in each easy handle that shared SSL sessions!
-
Jason Glasgow authored
-