Branch: refs/heads/master
Home: https://github.com/ngircd/ngircd
Commit: 2056de82ae47a9128e857bb32313f9106b1c3f0f
https://github.com/ngircd/ngircd/commit/2056de82ae47a9128e857bb32313f9106b1…
Author: Alexander Barton <alex(a)barton.de>
Date: 2020-11-02 (Mon, 02 Nov 2020)
Changed paths:
M src/ngircd/irc-info.c
Log Message:
-----------
Revert "Show allowed channel types in ISUPPORT(005) numeric only"
The ISUPPORT(005) numeric lists only channel prefixes which are listed
in the "AllowedChannelTypes" configuration option. And if this is the
empty string ("") for example, this now results in IRC clients assuming
"oh, no channel prefix characters at all, so no channels at all, so no
PRIVMSG can go to any channel" -- which is not the case when there are
pre-defined channel set up or other servers still having channels!
So "allowed channel types" != "supported channel types", and we always
have to list all supported ones in the ISUPPORT(005) numeric!
This reverts commit 4b7e8db418340576c95f1edad8470b66d6fe886d.
Closes #285.
Branch: refs/heads/master
Home: https://github.com/ngircd/ngircd
Commit: 5cf0eabd841b644eef8022dad97fa96aa3661c6a
https://github.com/ngircd/ngircd/commit/5cf0eabd841b644eef8022dad97fa96aa36…
Author: Alexander Barton <alex(a)barton.de>
Date: 2020-11-01 (Sun, 01 Nov 2020)
Changed paths:
M src/testsuite/reload-server.sh
Log Message:
-----------
Test suite: Wait 2 seconds after reloading the daemon
On reload, all listening ports are closed, configuration updated, and
then opened again. Which leads to subsequent tests running while the
daemon isn't listening on any ports, and that's why the tests fail.
The "proper" way whould be to loop and check for open ports, but waiting
is what the start-server.sh script does right now, so stick with this in
reload-server.sh for now as well.
This fixes the issue, at least on my RaspberryPi ...
Closes #280.