1. 10 Mar, 2007 1 commit
  2. 09 Mar, 2007 5 commits
  3. 08 Mar, 2007 1 commit
  4. 07 Mar, 2007 1 commit
  5. 02 Mar, 2007 1 commit
  6. 27 Feb, 2007 1 commit
    • 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
  7. 25 Feb, 2007 1 commit
  8. 23 Feb, 2007 1 commit
  9. 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
  10. 19 Feb, 2007 3 commits
  11. 18 Feb, 2007 1 commit
  12. 16 Feb, 2007 1 commit
  13. 14 Feb, 2007 1 commit
  14. 13 Feb, 2007 2 commits
  15. 12 Feb, 2007 4 commits
  16. 06 Feb, 2007 1 commit
  17. 05 Feb, 2007 1 commit
    • 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
  18. 03 Feb, 2007 1 commit
  19. 29 Jan, 2007 2 commits
  20. 28 Jan, 2007 1 commit
  21. 27 Jan, 2007 1 commit
  22. 25 Jan, 2007 2 commits
  23. 23 Jan, 2007 2 commits
    • Daniel Stenberg's avatar
      - David McCreedy did NTLM changes mainly for non-ASCII platforms: · 354c8dcd
      Daniel Stenberg authored
        #1
        There's a compilation error in http_ntlm.c if USE_NTLM2SESSION is NOT
        defined.  I noticed this while testing various configurations.  Line 867 of
        the current http_ntlm.c is a closing bracket for an if/else pair that only
        gets compiled in if USE_NTLM2SESSION is defined.  But this closing bracket
        wasn't in an #ifdef so the code fails to compile unless USE_NTLM2SESSION was
        defined.  Lines 198 and 140 of my patch wraps that closing bracket in an
        #ifdef USE_NTLM2SESSION.
      
        #2
        I noticed several picky compiler warnings when DEBUG_ME is defined.  I've
        fixed them with casting.  By the way, DEBUG_ME was a huge help in
        understanding this code.
      
        #3
        Hopefully the last non-ASCII conversion patch for libcurl in a while.  I
        changed the "NTLMSSP" literal to hex since this signature must always be in
        ASCII.
      
        Conversion code was strategically added where necessary.  And the
        Curl_base64_encode calls were changed so the binary "blobs" http_ntlm.c
        creates are NOT translated on non-ASCII platforms.
      354c8dcd
    • Dan Fandrich's avatar
      Convert (most of) the test data files into genuine XML. A handful still · 33bea767
      Dan Fandrich authored
      are not, due mainly to the lack of support for XML character entities
      (e.g. & => & ).  This will make it easier to validate test files using
      tools like xmllint, as well as edit and view them using XML tools.
      33bea767
  24. 16 Jan, 2007 2 commits
  25. 14 Jan, 2007 1 commit
  26. 13 Jan, 2007 1 commit