Jump to content

anonymousaccount

Members
  • Content Count

    4
  • Joined

  • Last visited

Community Reputation

0 Neutral
  1. anonymousaccount

    ICS V8.68 announced

    Thanks for your work👍
  2. anonymousaccount

    ICS V8.68 announced

    Okay~I got it. Thank you very much.
  3. anonymousaccount

    ICS V8.68 announced

    Hi, thank you for your reply. In latest stable version v8.68, the sample ftp-ssl client project "OverbyteIcsSslFtpTst" works fine. I also try accessing server ics.ftptest.org:990, and it also works fine. The problem is on ftp-ssl server project "OverbyteIcsSslFtpServ", I testing with implicit ftp (delphi 7 and delphi 10.3.3), it's not work fine. Here is the output screenshot: I found the code in "OverbyteIcsFtpSrv.pas" after I checked: if GetIcsHosts = Nil then Client.SslEnable := ftpImplicitSsl in Client.FtpSslTypes; An I change the code to: if GetIcsHosts <> Nil then Client.SslEnable := ftpImplicitSsl in Client.FtpSslTypes; Then the ftp-ssl server project "OverbyteIcsSslFtpServ" works well, below is the output screenshot: Is this a bug? Or what I think is wrong? What's your opinion?
  4. anonymousaccount

    ICS V8.68 announced

    if GetIcsHosts = Nil then Client.SslEnable := ftpImplicitSsl in Client.FtpSslTypes; There maybe below? if GetIcsHosts <> Nil then Client.SslEnable := ftpImplicitSsl in Client.FtpSslTypes; Otherwise, implicit ftps will not work.
×