[twsocket] OK to Receiving >2GB ?

2005-10-29 Thread Kei
Hi! I'm new to ICS! I am designing a simple protocol that will be mainly used locally (as a database server backend)..so I'm guessing I could send up to 2GB of stuff without hassle (BLOBs, for example). Right now I'm just experimenting with the facility for two parties to effectively "talk" to eac

Re: [twsocket] OK to Receiving >2GB ?

2005-10-29 Thread Wilfried Mestdagh
Hello David, > Hi! I'm new to ICS! Welcome to the group :) > A->>B: msg hello > B->>A: msg yo! how's it going? Yes that's the way to go. Design a user made proto for what you intend to do. > If A is larger than the default buffer size (256 chars) then the A > (sender) will warn B in advance Y

Re: [twsocket] Downloading a webpage, including its pictures. How??

2005-10-29 Thread Public
Do you have any examples of how to use THttpCli for tasks like this? /Perry Arno Garrels wrote: >Public wrote: > > >>Hello, >> >>I would like to download a webpage, including all its pictures, to my >>local harddrive. >>I will later use the local file and display this in a Twebbrowser. >> >>Ho

Re: [twsocket] Downloading a webpage, including its pictures. How??

2005-10-29 Thread Jack
It actually takes more than one THttpCli.Get(). My understanding is that once you get the initial html, you have to parse it, get all the links, and request them, until you exhaust the links. Jack > Do you have any examples of how to use THttpCli for tasks like this? > /Perry > Arno Garrels wro

Re: [twsocket] Downloading a webpage, including itspictures.How??

2005-10-29 Thread Bruce Christensen
True. Would this be called a web-spider? >It actually takes more than one THttpCli.Get(). >My understanding is that once you get the initial html, you have >to parse it, get all the links, and request them, until you exhaust >the links. > >Jack -- To unsubscribe or change your settings for TWSo

Re: [twsocket] OK to Receiving >2GB ?

2005-10-29 Thread Kei
Hi! I think I'm going to accept the reality that... TCP packets are splitted into arbitrary sizes.. but!!! How do I know the maximum size possible? What is the maximum size that a packet can be? I certainly don't want to malloc 100KB for a TCP packet... Thanks! David Wilfried Mestdagh wrote:

Re: [twsocket] OK to Receiving >2GB ?

2005-10-29 Thread zayin
http://www.faqs.org/rfcs/rfc879.html -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kei Sent: Saturday, October 29, 2005 2:26 PM To: ICS support mailing Subject: Re: [twsocket] OK to Receiving >2GB ? Hi! I think I'm going to accept the reality that

Re: [twsocket] OK to Receiving >2GB ?

2005-10-29 Thread Darin McGee
About 1500 bytes give or take a few over ethernet -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kei Sent: Saturday, October 29, 2005 3:26 PM To: ICS support mailing Subject: Re: [twsocket] OK to Receiving >2GB ? Hi! I think I'm going to accept the rea