1. 04 May, 2013 3 commits
  2. 03 May, 2013 3 commits
  3. 02 May, 2013 5 commits
  4. 01 May, 2013 1 commit
  5. 30 Apr, 2013 1 commit
  6. 29 Apr, 2013 5 commits
  7. 28 Apr, 2013 6 commits
  8. 27 Apr, 2013 12 commits
  9. 26 Apr, 2013 4 commits
    • Daniel Stenberg's avatar
      curl_easy_init: use less mallocs · 64206728
      Daniel Stenberg authored
      By introducing an internal alternative to curl_multi_init() that accepts
      parameters to set the hash sizes, easy handles will now use tiny socket
      and connection hash tables since it will only ever add a single easy
      handle to that multi handle.
      
      This decreased the number mallocs in test 40 (which is a rather simple
      and typical easy interface use case) from 1142 to 138. The maximum
      amount of memory allocated used went down from 118969 to 78805.
      64206728
    • Steve Holme's avatar
      ftpserver.pl: Fixed imap logout confirmation data · c4067a56
      Steve Holme authored
      An IMAP server should response with the BYE continuation response before
      confirming the LOGOUT command was successful.
      c4067a56
    • Daniel Stenberg's avatar
      ftp_state_pasv_resp: connect through proxy also when set by env · 0523152a
      Daniel Stenberg authored
      When connecting back to an FTP server after having sent PASV/EPSV,
      libcurl sometimes didn't use the proxy properly even though the proxy
      was used for the initial connect.
      
      The function wrongly checked for the CURLOPT_PROXY variable to be set,
      which made it act wrongly if the proxy information was set with an
      environment variable.
      
      Added test case 711 to verify (based on 707 which uses --socks5). Also
      added test712 to verify another variation of setting the proxy: with
      --proxy socks5://
      
      Bug: http://curl.haxx.se/bug/view.cgi?id=1218
      Reported-by: Zekun Ni
      0523152a
    • Zdenek Pavlas's avatar
      url: initialize speed-check data for file:// protocol · b37b5233
      Zdenek Pavlas authored
      ... in order to prevent an artificial timeout event based on stale
      speed-check data from a previous network transfer.  This commit fixes
      a regression caused by 9dd85bce.
      
      Bug: https://bugzilla.redhat.com/906031
      b37b5233