1. 02 Apr, 2007 1 commit
  2. 01 Apr, 2007 1 commit
  3. 31 Mar, 2007 2 commits
  4. 27 Mar, 2007 1 commit
  5. 25 Mar, 2007 1 commit
  6. 23 Mar, 2007 1 commit
  7. 20 Mar, 2007 1 commit
    • Yang Tse's avatar
      Fixed: When a signal was caught awaiting for an event using Curl_select() · e4b754f6
      Yang Tse authored
      or Curl_poll() with a non-zero timeout both functions would restart the
      specified timeout. This could even lead to the extreme case that if a
      signal arrived with a frecuency lower to the specified timeout neither
      function would ever exit.
      
      Added experimental symbol definition check CURL_ACKNOWLEDGE_EINTR in
      Curl_select() and Curl_poll(). When compiled with CURL_ACKNOWLEDGE_EINTR
      defined both functions will return as soon as a signal is caught. Use it
      at your own risk, all calls to these functions in the library should be
      revisited and checked before fully supporting this feature.
      e4b754f6
  8. 19 Mar, 2007 1 commit
  9. 13 Mar, 2007 1 commit
  10. 11 Mar, 2007 1 commit
  11. 10 Mar, 2007 4 commits
  12. 09 Mar, 2007 2 commits
  13. 02 Mar, 2007 1 commit
  14. 27 Feb, 2007 2 commits
    • Daniel Stenberg's avatar
      - Hang Kin Lau found and fixed: When I use libcurl to connect to an https · 060f7ca2
      Daniel Stenberg authored
        server through a proxy and have the remote https server port set using the
        CURLOPT_PORT option, protocol gets reset to http from https after the first
        request.
      
        User defined URL was modified internally by libcurl and subsequent reuse of
        the easy handle may lead to connection using a different protocol (if not
        originally http).
      
        I found that libcurl hardcoded the protocol to "http" when it tries to
        regenerate the URL if CURLOPT_PORT is set. I tried to fix the problem as
        follows and it's working fine so far
      060f7ca2
    • Daniel Stenberg's avatar
      HTTP Digest header parsing fix · b3272fd7
      Daniel Stenberg authored
      b3272fd7
  15. 25 Feb, 2007 2 commits
  16. 21 Feb, 2007 1 commit
    • Daniel Stenberg's avatar
      - Ravi Pratap provided work on libcurl making pipelining more robust and · f19d333e
      Daniel Stenberg authored
        fixing some bugs:
        o Don't mix GET and POST requests in a pipeline
        o Fix the order in which requests are dispatched from the pipeline
        o Fixed several curl bugs with pipelining when the server is returning
          chunked encoding:
          * Added states to chunked parsing for final CRLF
          * Rewind buffer after parsing chunk with data remaining
          * Moved chunked header initializing to a spot just before receiving
            headers
      f19d333e
  17. 20 Feb, 2007 1 commit
  18. 19 Feb, 2007 4 commits
  19. 18 Feb, 2007 1 commit
  20. 16 Feb, 2007 1 commit
  21. 13 Feb, 2007 1 commit
  22. 12 Feb, 2007 3 commits
  23. 05 Feb, 2007 2 commits
    • 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
  24. 03 Feb, 2007 1 commit
  25. 02 Feb, 2007 1 commit
  26. 30 Jan, 2007 1 commit
  27. 29 Jan, 2007 1 commit