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

Re: O-lines, multiple clients



On Fri, 26 Sep 1997, Mikael Abrahamsson wrote:

> Is there a concious thought behind the fact that there can be only one
> opered client per O-line in ircd.conf, or is it a glitch?
> 
> I am using 2.9.2p3.

I have no problems (irc.dknet.dk: 2.9.3+Cr15+Fl4)

Could it be your Y that limits it to 1?

*** O robert@*.nisse.dk * Null 0 888
*** Y 888 90 -20 10 5000000

*** O *swmike@*.sparta.lu.se * SwedeMike 0 0 (from irc.dd.chalmers.se)
*** Y 0 120 600 1 30752 (from irc.dd.chalmers.se)

-- Robert Martin-Legène (RM59), Network Manager (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);}