Commit Briefs

9e7360e5fa Alexander Barton

ngIRCd release 19 (tags/rel-19)


273d4bdd32 Alexander Barton

Merge branch 'master' of /srv/git/ngircd

* 'master' of /srv/git/ngircd: Update doc/Platforms.txt for ngIRCd 19 doc/README-Interix.txt: note that GNU make should be used


27d244dfae Alexander Barton

Update doc/Platforms.txt for ngIRCd 19


ef392e7d37 Alexander Barton

Update config.guess and config.sub to recent versions


a39a1a5273 Alexander Barton

doc/README-Interix.txt: note that GNU make should be used



5cbdcf4f0d Alexander Barton

Fix C syntax: duplicate ";;" should be ";"

Using gcc 2.7.2, this fixes: irc-channel.c: In function `join_allowed': irc-channel.c:86: parse error before `const'


3641e51109 Alexander Barton

Correctly re-open syslog logging after reading of configuration

Syslog logging has been initialized before reading the configuraton file, so ngIRCd always used the default facility and ignored the "SyslogFacility" configuration option. Thanks to Patrik Schindler for reporting this issue!


3f46e93ccc Alexander Barton

Logging: remove "Activating ..." info message


8e3c56e5b2 Alexander Barton

ngIRCd release 19~rc1 (tags/rel-19-rc1)



f7bdee5f13 Alexander Barton

Update NEWS and ChangeLog files


391aa8d1f7 Alexander Barton

Fix forwarding of LIST commands

Bug reported by Cahata, thanks!


89d99e2ff9 Alexander Barton

Update preliminary ngIRCd protocol module for Anope 1.9.6


c16133c5ee Alexander Barton

New_Connection(): don't set the client hostname twice

Setting the hostname twice doesn't do much harm a lot, but isn't elegant. And for IPv6 addresses, it isn't correct the first time (missing []) ...


4888984429 Alexander Barton

Client_SetHostname(): Code cleanup, more debug logging


44bb22d23e Florian Westphal

io: use define for number of possible events


c7dd5ea0ba Florian Westphal

io: remove outer do {} while loops for epoll/kqueue/devpoll backends

simplifies things a bit. io_dispatch() is called repeatedly from the main loop.


871760583c Alexander Barton

Enhance server command limits

This patch updates the limits for handling commands from a remote server: - "<user count> / 5 + <min>" using "<min>=10" during normal operation, - the above count multiplied with 5 while servers are syncing. The intention is to a) make the limit dependent of the number of users in the network (the more users, the more commands required to sync) and b) to significantly rise this limit while servers are joining the network to make the login and synchronization faster.


bc20f9ec10 Alexander Barton

Send a PING at the end of the server sync to detect it

At the end of sending all "state" to the remote server, a PING command is sent to request a PONG reply. Until then, no "regual" PING was sent, so Conn_LastPing(<connection>) is null and now becomes non-null in the PONG command handler. So the servers are still synchronizing when Conn_LastPing(<connection>) is 0, which could easily be tested.


5a200e1543 Alexander Barton

New function Conn_UpdatePing() to update the "ping timestamp"


d2df7396a8 Alexander Barton

Conn_UpdateIdle(): Code cleanup


3d27073d61 Alexander Barton

RPL_ISUPPORT_MSG(005): add "EXCEPTS=e INVEX=I"

Thanks to Cahata for the idea!


b6f19ea8fe Alexander Barton

Fix "MAXLIST=beI:50": the limit is the sum of all lists

"Modes which are specified in the same pair share the same maximum size", so "beI:50" means a total of 50 entries, regardless of the list. See <http://www.irc.org/tech_docs/draft-brocklesby-irc-isupport-03.txt>, thanks to Cahata for reporting this!


8c46067b34 Alexander Barton

Update NEWS and ChangeLog files