[squid-users] Info on redirector's pattern

2006-03-06 Thread Stefano Del Furia
Hi all, i'm trying to build an educational project, for a Squid's redirector and i would like to know what is the pattern to build it. I think that could be this: main { while true { read stdin perform analysis write to stdout

Re: [squid-users] Info on redirector's pattern

2006-03-06 Thread Mark Elsen
> Hi all, > i'm trying to build an educational project, for a Squid's redirector and i > would like to know what is the pattern to build it. > I think that could be this: > > main > { > while true > { > read stdin > perform analysis >

Re: [squid-users] Info on redirector's pattern

2006-03-07 Thread Stefano Del Furia
Thanks for the info. I have read and i think to understand the process. So i have build a simple redirector in C# under windows environment like this: string text = ""; while ( Console.In.Peek() != -1 ) {

Re: [squid-users] Info on redirector's pattern

2006-03-07 Thread Chris Robertson
Stefano Del Furia wrote: In data Mon, 06 Mar 2006 22:43:34 +0100, Mark Elsen <[EMAIL PROTECTED]> ha scritto: Hi all, i'm trying to build an educational project, for a Squid's redirector and i would like to know what is the pattern to build it. I think that could be this: main { w

Re: [squid-users] Info on redirector's pattern

2006-03-07 Thread Henrik Nordstrom
tis 2006-03-07 klockan 16:15 +0100 skrev Stefano Del Furia: > Thanks for the info. > I have read and i think to understand the process. > So i have build a simple redirector in C# under windows environment like > this: > > string text = ""; > while ( C