Arno Garrels a écrit :
> Or we change TCustomSocksWSocket.SetSocksLevel?
>
> procedure TCustomSocksWSocket.SetSocksLevel(newValue : String);
> begin
> if State <> wsClosed then begin
> RaiseException('Can''t change socks level if not closed');
> Exit;
> end;
> if newVal
Or we change TCustomSocksWSocket.SetSocksLevel?
procedure TCustomSocksWSocket.SetSocksLevel(newValue : String);
begin
if State <> wsClosed then begin
RaiseException('Can''t change socks level if not closed');
Exit;
end;
if newValue = '' then <==
newValue := '5';
Guillaume MAISON wrote:
>
> And, this is the strangest part, i have the ProcHttpSocketError which is
> triggered, due to an exception which is in WSocket :
>
> procedure TCustomSocksWSocket.SetSocksLevel(newValue : String);
> begin
> if State <> wsClosed then begin
> RaiseException