我需要使用 go 语言封装一下 ftp 的上传下载功能,使用 https://github.com/jlaffaye/ftp 这个包,但是遇到了一个棘手的问题。
ftp 服务器使用的是 filezilla server,并且开启了“require TLS session resumption on data connection when using PROT P“ 选项。
因此就出现了一个错误,450 TLS session of data connection has not resumed or the session does not match the control connection 。
如果将 filezilla server 的那个选项取消勾选就可以正常连接,但是同事说不能取消勾选,需要这个选项。而且即使这个选项开着,python 也是可以正常连接的,只是 go 语言不行。
哎,网上搜遍了也找不到解决这个问题的方法,v2 藏龙卧虎,发出来看看会不会有奇迹发生。
1
catcn 2021-07-24 08:51:26 +08:00
|
2
input2output 2021-07-24 10:00:51 +08:00
|