1. 07 Mar, 2016 1 commit
  2. 04 Mar, 2016 1 commit
  3. 02 Feb, 2016 1 commit
  4. 04 Dec, 2015 1 commit
  5. 20 Aug, 2015 1 commit
  6. 19 Aug, 2015 1 commit
  7. 18 Aug, 2015 1 commit
  8. 13 Aug, 2015 1 commit
  9. 10 Aug, 2015 3 commits
  10. 02 Apr, 2015 2 commits
  11. 25 Aug, 2014 1 commit
  12. 16 Aug, 2014 1 commit
  13. 03 Jul, 2014 3 commits
  14. 19 May, 2014 1 commit
  15. 27 Feb, 2014 1 commit
  16. 21 Jan, 2014 1 commit
  17. 12 Oct, 2013 2 commits
  18. 28 Aug, 2013 1 commit
  19. 27 Aug, 2013 1 commit
  20. 17 Jul, 2013 4 commits
  21. 08 Jun, 2013 7 commits
  22. 04 Jun, 2013 1 commit
  23. 31 May, 2013 3 commits
    • Lukasz Marek's avatar
      ftp: enhanced error handling · ddbcc48b
      Lukasz Marek authored
      Add error codes to expected codes to make responses faster.
      Success of a command is validated by comparing code to a success code.
      ddbcc48b
    • Lukasz Marek's avatar
      ftp: reconnect on seek · 34c42389
      Lukasz Marek authored
      ABOR command usually takes long (FTP server implementation dependent).
      It also produces different response codes from different servers.
      
      It is save for ffmpeg to reconnect both connection during seek for two reasons:
      1. Alreay mentioned heavy manner of ABOR command.
      2. Server may disconnected due to no transfer (seek after a long pause in ffmpeg client)
      34c42389
    • Lukasz Marek's avatar
      ftp: move common commands code to function · d99beeb7
      Lukasz Marek authored
      Each send command routine requires the same steps.
      This commit moves repeated code into one function.
      d99beeb7