BUGS
上传用户:ig0539
上传日期:2022-05-21
资源大小:181k
文件大小:1k
源码类别:

Ftp客户端

开发平台:

C/C++

  1. BUGS
  2. ====
  3. This file, surprisingly enough, contains a list of known outstanding bugs
  4. in the program. Bugs that get documented here are typically not particularly
  5. serious, and may never get fixed. Serious bugs will get fixed immediately.
  6. - RFC compliance: if we get no PORT or PASV, looks like we're supposed to
  7. assume a PORT to the same IP as control connection, and port 20.
  8. - RFC compliance: shouldn't include directories in NLST. Note that wu-ftpd
  9. complies here, almost all other FTPd's don't
  10. - ls <existing but unreadable dir> should list nothing, but it lists the
  11. directory name itself
  12. - In ASCII mode, the SIZE command needs to take into account the size of
  13. the file _after_ ASCII linefeed mangling?
  14. - ASCII mode uploads: we're only supposed to remove r if they preceed n,
  15. but I rip them out unconditionally.
  16. - Security model: vsf_privop_get_ftp_port_sock() should probably do the
  17. connect() to the remote location itself.
  18. - If someone has one of the timeouts (command, data) setup, but not the other,
  19. then timeout will behave whackily.