Re: [Coder-Com] PING PONG problem

2002-06-15 Thread Kurt Roeckx
On Sat, Jun 15, 2002 at 04:39:32AM -0700, Cosmin Marcu wrote: > char pong_str[] = "\nPONG :"; [...] > strcat(pong_str,token); That's just wrong. You didn't allocate enough memory for it and just screw up your stack. This really doesn't have anything to do with IRC or

Re: [Coder-Com] bug with notice ?

2002-04-24 Thread Kurt Roeckx
On Wed, Apr 24, 2002 at 06:20:57PM -0400, Hidden wrote: > Dear ircu coders, > > I think I found a very little bug and thought should let you know about it. > > /msg will say: no such nick. > /notice will return nothing. It's normal behaviour. You should *never* send an (automatic) reply in

Re: [Coder-Com] Non-printable characters in channel names

2002-03-21 Thread Kurt Roeckx
On Thu, Mar 21, 2002 at 12:39:21PM -0500, Brian A. Cline wrote: > Hi folks, > > Aside from the usual A-Za-z0-9, what characters are allowed in channel > names? All characters are allowed, except: '\r', '\n', '\0', ',', '\007' and ' '. Kurt

Re: [Coder-Com] FTP server

2002-02-05 Thread Kurt Roeckx
On Tue, Feb 05, 2002 at 10:17:47AM +, Mathew Meins wrote: > Hi > > Your FTP server at ftp.coder-com.undernet.org appears to be down, from the > two different networks I've tried accessing it from. Ftp.undernet.org and clients.undernet.org aren't working either. Kurt