Re: Connectionless Loop - Looking/Found Hostname
Posted: Mon Dec 06, 2010 12:45 pm
Two issues here.
First, the name of your class ('default'), you should pick another name. This bug was fixed in CVS a while ago:
Then,
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:
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).Code: Select all
sendq <send-queue>;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.