Re: [twsocket] Minor bug in HttpCli latest beta

2006-02-21 Thread Guillaume MAISON
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

Re: [twsocket] Minor bug in HttpCli latest beta

2006-02-21 Thread Arno Garrels
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';

Re: [twsocket] Minor bug in HttpCli latest beta

2006-02-21 Thread Arno Garrels
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