Re: [twsocket] Full URL decode (unescape)

2010-01-11 Thread Stanislav
As I wrote, there is no a method to provide the reverse functionality for TextToHtmlText and RemoveHtmlSpecialChars, i.e. unescaping html entities, such as & etc., into single characters. By the way, both names of the functions seems to be misleading, IMHO. TextToHtmlText should read something li

Re: [twsocket] Full URL decode (unescape)

2010-01-11 Thread Francois PIETTE
UrlDecode ? If this doesn't fit your need, please give an example of what you need. -- francois.pie...@overbyte.be The author of the freeware multi-tier middleware MidWare The author of the freeware Internet Component Suite (ICS) http://www.overbyte.be - Original Message - From: "Stanis

Re: [twsocket] Concatenate multiple UDP packets

2010-01-11 Thread wilfried Mestdagh
Hi Dave, In addition of the reply of Francois. If your receiver has no time receiving an UDP packet (for example when it arrives when your application is busy displaying it in the TRichEdit) then it will be trown away. That is nature of UDP and probably the reason that you only receive 1 packet.

[twsocket] Possible Integer overflow in WSocketIsDottedIP function

2010-01-11 Thread JOHN WILD
Hi, If a numeric domain name > integer (i.e. 99.com) is input into WSocketIsDottedIP function (all versions) then Numval will overflow. I suggest replacing the following:- [OverbyteIcsWSocket]     else if AnsiChar(S[I]) in ['0'..'9'] then     NumVal := NumVal * 10 + Ord(S[I])

Re: [twsocket] Full URL decode (unescape)

2010-01-11 Thread Stanislav
I've looked at the module before writing the initial post. What do you mean exactly? There is no a function for unescaping. - Original Message - From: "Francois PIETTE" To: "ICS support mailing" Sent: Sunday, January 10, 2010 7:05 PM Subject: Re: [twsocket] Full URL decode (unescape)