Skip to content
Snippets Groups Projects
  1. Nov 24, 2007
    • Daniel Stenberg's avatar
      struct HandleData is now called struct SingleRequest, and is only for data that · 13648f8c
      Daniel Stenberg authored
      is inited at the start of the DO action. I removed the Curl_transfer_keeper
      struct completely, and I had to move out a few struct members (that had to
      be set before DO or used after DONE) to the UrlState struct. The SingleRequest
      struct is accessed with SessionHandle->req.
      
      One of the biggest reasons for doing this was the bunch of duplicate struct
      members in HandleData and Curl_transfer_keeper since it was really messy to
      keep track of two variables with the same name and basically the same purpose!
      13648f8c
  2. Nov 15, 2007
  3. Nov 14, 2007
  4. Nov 07, 2007
  5. Oct 25, 2007
  6. Oct 17, 2007
  7. Oct 12, 2007
  8. Oct 04, 2007
    • Daniel Stenberg's avatar
      Kim Rinnewitz reported that --local-port didn't work with TFTP transfers. · 67d94514
      Daniel Stenberg authored
      This happened because the tftp code always uncondionally did a bind()
      without caring if one already had been done and then it failed. I wrote a
      test case (1009) to verify this, but it is a bit error-prone since it will
      have to pick a fixed local port number and since the tests are run on so
      many different hosts in different situations I add it in disabled state.
      67d94514
  9. Sep 07, 2007
  10. Aug 30, 2007
    • Dan Fandrich's avatar
      Renamed several libcurl error codes and options to make them more general · 9f44a955
      Dan Fandrich authored
      and allow reuse by multiple protocols. Several unused error codes were
      removed.  In all cases, macros were added to preserve source (and binary)
      compatibility with the old names.  These macros are subject to removal at
      a future date, but probably not before 2009.  An application can be
      tested to see if it is using any obsolete code by compiling it with the
      CURL_NO_OLDIES macro defined.
      
      Documented some newer error codes in libcurl-error(3)
      9f44a955
  11. Aug 29, 2007
  12. Jun 12, 2007
  13. May 24, 2007
  14. May 18, 2007
  15. May 17, 2007
  16. Apr 11, 2007
  17. Mar 26, 2007
  18. Feb 26, 2007
  19. Feb 16, 2007
  20. Feb 06, 2007
  21. Feb 05, 2007
    • Daniel Stenberg's avatar
      - Michael Wallner provided a patch that adds support for CURLOPT_TIMEOUT_MS · 91386937
      Daniel Stenberg authored
        and CURLOPT_CONNECTTIMEOUT_MS that, as their names should hint, do the
        timeouts with millisecond resolution instead. The only restriction to that
        is the alarm() (sometimes) used to abort name resolves as that uses full
        seconds. I fixed the FTP response timeout part of the patch.
      
        Internally we now count and keep the timeouts in milliseconds but it also
        means we multiply set timeouts with 1000. The effect of this is that no
        timeout can be set to more than 2^31 milliseconds (on 32 bit systems), which
        equals 24.86 days.  We probably couldn't before either since the code did
        *1000 on the timeout values on several places already.
      91386937
    • Yang Tse's avatar
      compiler warning fix · bc2183b4
      Yang Tse authored
      bc2183b4
  22. Jan 16, 2007
  23. Nov 09, 2006
  24. Sep 07, 2006
  25. Aug 30, 2006
  26. Aug 29, 2006
  27. Aug 19, 2006
  28. Jul 29, 2006
  29. Jul 19, 2006
  30. May 09, 2006
  31. May 08, 2006
Loading