[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: distributed simultaniously connecting clones



On Tue, 13 Jan 1998, Christophe Kalt wrote:

> the time you have to wait depends on how busy the port is
> (especially with SLOW_ACCEPT defined), but then it becomes
> truly variable depending on DNS and ident lookups speed.
> The global limits are checked after all this has been done.

Is it too dangerous to evaluate the global limit once in a while?
(People could throw you off, by spoofing your adress).

-- Robert Martin-Legène (RM59), Network Manager, DKnet (AS2109)

   main(){int a[2],b[2];pipe(a);pipe(b);if(fork()){dup2(a[0],0);dup2(b[1],1)
   ;}else{dup2(b[0],0);dup2(a[1],1);write(1,"R",1);}execlp("cat","cat",0);}