Page 2 of 2

Re: Connectionless Loop - Looking/Found Hostname

Posted: Mon Dec 06, 2010 12:45 pm
by Syzop
Two issues here.

First, the name of your class ('default'), you should pick another name. This bug was fixed in CVS a while ago:

Code: Select all

- class name 'default' is reserved. Using it caused the ircd to crash
  on-boot, reported by Dragon_Legion (#0003864).
Then,

Code: Select all

sendq <send-queue>;
You should enter a value instead of <send-queue>, for example 200000 for clients, or 1000000 for servers.
Apparently the string you use is treated as a sendq of 0 (zero), and the IRCd incorrectly does not warn or error on this. I'll fix that.
EDIT: done:

Code: Select all

- Error on zero sendq in class::sendq, reported by jonbeard.

Re: Connectionless Loop - Looking/Found Hostname

Posted: Mon Dec 06, 2010 11:05 pm
by jonbeard
Syzop wrote:Two issues here.

First, the name of your class ('default'), you should pick another name. This bug was fixed in CVS a while ago:

Code: Select all

- class name 'default' is reserved. Using it caused the ircd to crash
  on-boot, reported by Dragon_Legion (#0003864).
Then,

Code: Select all

sendq <send-queue>;
You should enter a value instead of <send-queue>, for example 200000 for clients, or 1000000 for servers.
Apparently the string you use is treated as a sendq of 0 (zero), and the IRCd incorrectly does not warn or error on this. I'll fix that.
EDIT: done:

Code: Select all

- Error on zero sendq in class::sendq, reported by jonbeard.
Thanks!!! This has fixed my issues, I am up and running now. I appreciate it!