Newsgroups : Borland : borland.public.delphi.internet.winsock : 2005 Jun : FTPClient, OpenSSL and Log
| Subject: | FTPClient, OpenSSL and Log |
| Posted by: | "Dice" (webmast..@dott.lir.dk) |
| Date: | Wed, 22 Jun 2005 10:42:47 |
Hi there.
I am making a ftp client, which use the OpenSSL.
My problem is: How can i log the "connection" like a normal ftp client do?
If I use the following code it somehow disable the SSL:
Debug:=TIdLogFile.Create(Owner);
Debug.Filename:= 'c:\temp\FTP_test_debug.log';
Debug.Active:= true;
DebugIOHandler:= TIdIOHandlerStack.Create(Owner);
DebugIOHandler.Intercept:= Debug;
//Samuel