Skip to content
Snippets Groups Projects
  1. May 06, 2013
  2. Apr 29, 2013
  3. Apr 28, 2013
    • Steve Holme's avatar
    • Nick Zitzmann's avatar
      darwinssl: add TLS crypto authentication · a5c0e209
      Nick Zitzmann authored
      Users using the Secure Transport (darwinssl) back-end can now use a
      certificate and private key to authenticate with a site using TLS. Because
      Apple's security system is based around the keychain and does not have any
      non-public function to create a SecIdentityRef data structure from data
      loaded outside of the Keychain, the certificate and private key have to be
      loaded into the Keychain first (using the certtool command line tool or
      the Security framework's C API) before we can find it and use it.
      a5c0e209
  4. Apr 27, 2013
  5. Apr 25, 2013
  6. Apr 24, 2013
    • Steve Holme's avatar
      DOCS: Added reference to IETF draft for SMTP URL Interface · a8c92cb6
      Steve Holme authored
      ...when mentioning login options. Additional minor clarification of
      "Windows builds" to be "Windows builds with SSPI"as a way of enabling
      NTLM as Windows builds may be built with OpenSSL to enable NTLM or
      without NTLM support altogether.
      a8c92cb6
  7. Apr 23, 2013
  8. Apr 22, 2013
  9. Apr 18, 2013
  10. Apr 16, 2013
  11. Apr 15, 2013
  12. Apr 12, 2013
  13. Apr 05, 2013
  14. Apr 03, 2013
  15. Apr 01, 2013
  16. Mar 30, 2013
  17. Mar 27, 2013
  18. Mar 18, 2013
  19. Mar 16, 2013
  20. Mar 15, 2013
  21. Mar 13, 2013
    • Linus Nielsen's avatar
      Multiple pipelines and limiting the number of connections. · 0f147887
      Linus Nielsen authored
      Introducing a number of options to the multi interface that
      allows for multiple pipelines to the same host, in order to
      optimize the balance between the penalty for opening new
      connections and the potential pipelining latency.
      
      Two new options for limiting the number of connections:
      
      CURLMOPT_MAX_HOST_CONNECTIONS - Limits the number of running connections
      to the same host. When adding a handle that exceeds this limit,
      that handle will be put in a pending state until another handle is
      finished, so we can reuse the connection.
      
      CURLMOPT_MAX_TOTAL_CONNECTIONS - Limits the number of connections in total.
      When adding a handle that exceeds this limit,
      that handle will be put in a pending state until another handle is
      finished. The free connection will then be reused, if possible, or
      closed if the pending handle can't reuse it.
      
      Several new options for pipelining:
      
      CURLMOPT_MAX_PIPELINE_LENGTH - Limits the pipeling length. If a
      pipeline is "full" when a connection is to be reused, a new connection
      will be opened if the CURLMOPT_MAX_xxx_CONNECTIONS limits allow it.
      If not, the handle will be put in a pending state until a connection is
      ready (either free or a pipe got shorter).
      
      CURLMOPT_CONTENT_LENGTH_PENALTY_SIZE - A pipelined connection will not
      be reused if it is currently processing a transfer with a content
      length that is larger than this.
      
      CURLMOPT_CHUNK_LENGTH_PENALTY_SIZE - A pipelined connection will not
      be reused if it is currently processing a chunk larger than this.
      
      CURLMOPT_PIPELINING_SITE_BL - A blacklist of hosts that don't allow
      pipelining.
      
      CURLMOPT_PIPELINING_SERVER_BL - A blacklist of server types that don't allow
      pipelining.
      
      See the curl_multi_setopt() man page for details.
      0f147887
  22. Mar 12, 2013
Loading