Skip to content
Snippets Groups Projects
  1. Mar 09, 2008
    • Daniel Stenberg's avatar
      - Brian Ulm reported a crash when doing a second SFTP transfer on a re-used · 82e095a2
      Daniel Stenberg authored
        easy handle if curl_easy_reset() was used between them. I fixed it and Brian
        verified that it cured his problem.
      
      - Brian Ulm reported that if you first tried to download a non-existing SFTP
        file and then fetched an existing one and re-used the handle, libcurl would
        still report the second one as non-existing as well! I fixed it abd Brian
        verified that it cured his problem.
      82e095a2
  2. Mar 04, 2008
  3. Feb 19, 2008
  4. Feb 18, 2008
    • Yang Tse's avatar
      fix compiler warnings: · ab0de23d
      Yang Tse authored
        'enumerated type mixed with another type'
      
      and
      
        'variable was set but never used'
      ab0de23d
  5. Feb 15, 2008
  6. Jan 22, 2008
  7. Jan 15, 2008
  8. Nov 29, 2007
  9. 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
  10. Nov 12, 2007
  11. Nov 08, 2007
  12. Nov 07, 2007
  13. Nov 05, 2007
    • Daniel Stenberg's avatar
      Move connection-oriented variables from the SessionHandle struct to the · b9a7f4e5
      Daniel Stenberg authored
      connectdata struct. This will in theory enable us to do persistent connections
      with SCP+SFTP, but currently the state machine always (and wrongly) cleanup
      everything in the 'done' action instead of in 'disconnect'. Also did a bunch
      of indent fixes, if () => if() and a few other source cleanups like added
      comments etc.
      b9a7f4e5
  14. Oct 22, 2007
    • Daniel Stenberg's avatar
      Michal Marek forwarded the bug report · 5b358603
      Daniel Stenberg authored
      https://bugzilla.novell.com/show_bug.cgi?id=332917 about a HTTP redirect to
      FTP that caused memory havoc. His work together with my efforts created two
      fixes:
      
      #1 - FTP::file was moved to struct ftp_conn, because is has to be dealt with
           at connection cleanup, at which time the struct HandleData could be
           used by another connection.
           Also, the unused char *urlpath member is removed from struct FTP.
      
      #2 - provide a Curl_reset_reqproto() function that frees
           data->reqdata.proto.* on connection setup if needed (that is if the
           SessionHandle was used by a different connection).
      5b358603
  15. Oct 17, 2007
  16. Oct 12, 2007
  17. Oct 03, 2007
  18. Sep 29, 2007
  19. Sep 28, 2007
  20. Sep 18, 2007
  21. Aug 30, 2007
  22. Aug 03, 2007
  23. Aug 01, 2007
  24. Jul 21, 2007
  25. Jul 20, 2007
  26. Jul 18, 2007
  27. Jul 14, 2007
  28. Jul 10, 2007
  29. Jul 05, 2007
  30. Jul 04, 2007
  31. Jun 27, 2007
Loading