Hi!
In TCustomSocksWSocket.Connect:
procedure TCustomSocksWSocket.Connect;
begin
[..]
if LowerCase(FProtoStr) <> 'tcp' then begin
RaiseException('tcp is the only protocol supported thru socks server');
Exit;
end;
[..]
Let's say that someone has entered 6 in place of TCP
>> In fact, their AS400 program launch "RETR ." command and they get all
>> files which in the current directory. and with IIS, it's OK
>
> This behaviour is not defined in the FTP standard.
> To get all files, you must first use the list function to get the file
> list and then iterate thru the li
> In fact, their AS400 program launch "RETR ." command and they get
> all files which in the current directory. and with IIS, it's OK
This behaviour is not defined in the FTP standard.
To get all files, you must first use the list function to get the file list and
then iterate thru
the list. This
In fact, their AS400 program launch "RETR ." command and they get all files
which in the current directory. and with IIS, it's OK but it's not with my
program. I receive NLST command and then I receive "RETR ." command. It's
really curious because it's the same client program. But I will know more