Skip to content
  1. Mar 31, 2013
  2. Mar 29, 2013
  3. Mar 25, 2013
    • Yang Tse's avatar
      NTLM: fix several NTLM code paths memory leaks · acafe9c1
      Yang Tse authored
      acafe9c1
    • Yang Tse's avatar
      WIN32 MemoryTracking: track wcsdup() _wcsdup() and _tcsdup() usage · 8ec2cb55
      Yang Tse authored
      As of 25-mar-2013 wcsdup() _wcsdup() and _tcsdup() are only used in
      WIN32 specific code, so tracking of these has not been extended for
      other build targets. Without this fix, memory tracking system on
      WIN32 builds, when using these functions, would provide misleading
      results.
      
      In order to properly extend this support for all targets curl.h
      would have to define curl_wcsdup_callback prototype and consequently
      wchar_t should be visible before that in curl.h.  IOW curl_wchar_t
      defined in curlbuild.h and this pulling whatever system header is
      required to get wchar_t definition.
      
      Additionally a new curl_global_init_mem() function that also receives
      user defined wcsdup() callback would be required.
      8ec2cb55
    • Yang Tse's avatar
      curl_ntlm_msgs.c: revert commit 463082be · c5eabd48
      Yang Tse authored
      reverts unreleased invalid memory leak fix
      c5eabd48
  4. Mar 23, 2013
  5. Mar 21, 2013
  6. Mar 20, 2013
  7. Mar 19, 2013
  8. Mar 18, 2013
  9. Mar 17, 2013
  10. Mar 15, 2013
    • Daniel Stenberg's avatar
      HTTP proxy: insert slash in URL if missing · e4b733e3
      Daniel Stenberg authored
      curl has been accepting URLs using slightly wrong syntax for a long
      time, such as when completely missing as slash "http://example.org" or
      missing a slash when a query part is given
      "http://example.org?q=foobar".
      
      curl would translate these into a legitimate HTTP request to servers,
      although as was shown in bug #1206 it was not adjusted properly in the
      cases where a HTTP proxy was used.
      
      Test 1213 and 1214 were added to the test suite to verify this fix.
      
      The test HTTP server was adjusted to allow us to specify test number in
      the host name only without using any slashes in a given URL.
      
      Bug: http://curl.haxx.se/bug/view.cgi?id=1206
      Reported by: ScottJi
      e4b733e3
  11. Mar 14, 2013
  12. 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
    • Steve Holme's avatar
      pop3: Removed unnecessary transfer cancellation · ac890cd5
      Steve Holme authored
      Following commit e450f66a and the changes in the multi interface
      being used internally, from 7.29.0, the transfer cancellation in
      pop3_dophase_done() is no longer required.
      ac890cd5
  13. Mar 12, 2013
  14. Mar 11, 2013
  15. Mar 10, 2013
  16. Mar 09, 2013
  17. Mar 08, 2013