Skip to content
Snippets Groups Projects
  1. Aug 12, 2013
  2. Aug 09, 2013
  3. Aug 08, 2013
    • Daniel Stenberg's avatar
      global dns cache: fix memory leak · d20def20
      Daniel Stenberg authored
      The take down of the global dns cache didn't take CURLOPT_RESOLVE names
      into account.
      d20def20
    • Daniel Stenberg's avatar
      global dns cache: didn't work [regression] · d2b36e46
      Daniel Stenberg authored
      CURLOPT_DNS_USE_GLOBAL_CACHE broke in commit c4312741 (been
      broken since the libcurl 7.29.0 release). While this option has been
      documented as deprecated for almost a decade and nobody even reported
      this bug, it should remain functional.
      
      Added test case 1512 to verify
      d2b36e46
    • Daniel Stenberg's avatar
      FTP: renamed several local functions · 058b86e6
      Daniel Stenberg authored
      The previous naming scheme ftp_state_post_XXXX() wasn't really helpful
      as it wasn't always immediately after 'xxxx' and it wasn't easy to
      understand what it does based on such a name.
      
      This new one is instead ftp_state_yyyy() where yyyy describes what it
      does or sends.
      058b86e6
  4. Aug 06, 2013
    • Daniel Stenberg's avatar
      FTP: when EPSV gets a 229 but fails to connect, retry with PASV · 7cc00d9a
      Daniel Stenberg authored
      This is a regression as this logic used to work. It isn't clear when it
      broke, but I'm assuming in 7.28.0 when we went all-multi internally.
      
      This likely never worked with the multi interface. As the failed
      connection is detected once the multi state has reached DO_MORE, the
      Curl_do_more() function was now expanded somewhat so that the
      ftp_do_more() function can request to go "back" to the previous state
      when it makes another attempt - using PASV.
      
      Added test case 1233 to verify this fix. It has the little issue that it
      assumes no service is listening/accepting connections on port 1...
      
      Reported-by: byte_bucket in the #curl IRC channel
      7cc00d9a
    • Nick Zitzmann's avatar
      md5: remove use of CommonCrypto-to-OpenSSL macros for the benefit of Leopard · 230e16dc
      Nick Zitzmann authored
      For some reason, OS X 10.5's GCC suddenly stopped working correctly with
      macros that change MD5_Init etc. in the code to CC_MD5_Init etc., so I
      worked around this by removing use of the macros and inserting static
      functions that just call CommonCrypto's implementations of the functions
      instead.
      230e16dc
  5. Aug 05, 2013
    • Guenter Knauf's avatar
      Simplify check for trusted certificates. · 0ce410a6
      Guenter Knauf authored
      This changes the previous check for untrusted certs to a check for
      certs explicitely marked as trusted.
      The change is backward-compatible (tested with certdata.txt v1.80).
      0ce410a6
  6. Aug 04, 2013
  7. Aug 03, 2013
  8. Jul 31, 2013
  9. Jul 29, 2013
  10. Jul 26, 2013
  11. Jul 24, 2013
  12. Jul 23, 2013
  13. Jul 21, 2013
    • Daniel Stenberg's avatar
      curl_multi_wait: fix revents · 513e587c
      Daniel Stenberg authored
      Commit 6d30f8eb didn't work properly. First, it used the wrong
      array index, but this fix also:
      
      1 - only does the copying if indeed there was any activity
      
      2 - makes sure to properly translate between internal and external
      bitfields, which are not guaranteed to match
      
      Reported-by: Evgeny Turnaev
      513e587c
  14. Jul 19, 2013
  15. Jul 18, 2013
    • Daniel Stenberg's avatar
      CURLOPT_XFERINFOFUNCTION: introducing a new progress callback · 12d01cb6
      Daniel Stenberg authored
      CURLOPT_XFERINFOFUNCTION is now the preferred progress callback function
      and CURLOPT_PROGRESSFUNCTION is considered deprecated.
      
      This new callback uses pure 'curl_off_t' arguments to pass on full
      resolution sizes. It otherwise retains the same characteristics: the
      same call rate, the same meanings for the arguments and the return code
      is used the same way.
      
      The progressfunc.c example is updated to show how to use the new
      callback for newer libcurls while supporting the older one if built with
      an older libcurl or even built with a newer libcurl while running with
      an older.
      12d01cb6
    • Yang Tse's avatar
      Reinstate "WIN32 MemoryTracking: track wcsdup() _wcsdup() and _tcsdup() usage". · 90695fb2
      Yang Tse authored
      This reverts commit 7ed25ccf, reinstating commit 8ec2cb55.
      
      As of 18-jul-2013 we still do have code in libcurl that makes use of these
      memory functions. Commit 8ec2cb55 comment still applies and is yet valid.
      
      These memory functions are solely used in Windows builds, so all related
      code is protected with '#ifdef WIN32' preprocessor conditional compilation
      directives.
      
      Specifically, wcsdup() _wcsdup() are used when building a Windows target with
      UNICODE and USE_WINDOWS_SSPI preprocessor symbols defined. This is the case
      when building a Windows UNICODE target with Windows native SSL/TLS support
      enabled.
      
      Realizing that wcsdup() _wcsdup() are used is a bit tricky given that usage
      of these is hidden behind _tcsdup() which is MS way of dealing with code
      that must tolerate UNICODE and non-UNICODE compilation. Additionally, MS
      header files and those compatible from other compilers use this preprocessor
      conditional compilation directive in order to select at compilation time
      whether 'wide' or 'ansi' MS API functions are used.
      
      Without this code, Windows build targets with Windows native SSL/TLS support
      enabled and MemoryTracking support enabled misbehave in tracking memory usage,
      regardless of being a UNICODE enabled build or not.
      90695fb2
  16. Jul 17, 2013
Loading