[twsocket] [TWSocket] Code proposals

2009-11-23 Thread Anton Sviridov
Having looked at the OverbyteIcsWSocket unit, I've noticed many IFDEF CLR which probably might be removed. First of all, I think it's better to turn all buffers from PAnsiChar / array of AnsiChar to TBytes, as it is recommended by Embarcadero (though one would declare this type for compilers

[twsocket] Slightly OT: Future of web: Google pespective (SPDY)

2009-11-23 Thread Fastream Technologies
Hello, http://dev.chromium.org/spdy/ http://dev.chromium.org/spdy/indicates future of web with some improvements over HTTP(S) such as header compression. I believe this could well improve the web and ICS as well. Best Regards, SZ -- To unsubscribe or change your settings for TWSocket mailing

Re: [twsocket] Slightly OT: Future of web: Google pespective (SPDY)

2009-11-23 Thread Paul
Https over SCTP would be a huge improvement .. Paul - Original Message - From: Fastream Technologies ga...@fastream.com To: ICS support mailing twsocket@elists.org Sent: Monday, November 23, 2009 1:19 PM Subject: [twsocket] Slightly OT: Future of web: Google pespective (SPDY)

Re: [twsocket] [TWSocket] Code proposals

2009-11-23 Thread Anton Sviridov
And even more: 1) procedure TCustomSocksWSocket.SetSocksServer(sServer : String); begin ... if Length(FSocksServer) = 0 then begin FSocksServerAssigned := FALSE; Exit; end; FSocksServerAssigned := TRUE; end; = FSocksServerAssigned := Length(FSocksServer) 0;