sic is an extremely simple IRC client. It consists of lesser
than 250 lines of code. It is the little brother of irc/ii
WWW: http://www.suckless.org/programs/sic.html
PR: ports/129917
Submitted by: Dennis Herrmann <adox at mcx2.org>
Port changes:
o Removed patch on 'rsdb_sqlite3.c' that fixed ban.db path code in previous release.
Software changes included in this release:
o Call rb_helper_close on bandb errors to kill off old bandb processes.
o Report correct files/line numbers for spoof warnings.
o SID in the serverinfo struct should be 4 bytes, not 3.
o Rebuild the included ircd_lexer.c.
o Fix ports and /dev/poll for solaris.
o Report libratbox version on -version and /info.
o libratbox version info includes SSL info.
o Fix installing when using install-sh.
o Re-enable ziplinks + SSL server connections.
o Fix a gnutls related core dump.
o Add support for a serverinfo::bandb setting in ircd.conf for the ban database.
o Report adding throttles when an oper is set umode +r.
o Report throttle stats in /stats T.
PR: ports/129725
Submitted by: Lewis <moggie@elasticmind.net> (maintainer)
IRC protocol. It is designed to be small, fast, portable and compatible to RFC
standards, and most IRC clients.
libircclient features include:
* Full multi-threading support.
* Single threads handles all the IRC processing.
* Support for single-threaded applications, and socket-based applications,
which use select()
* Synchronous and asynchronous interfaces.
* CTCP support with optional build-in reply code.
* Flexible DCC support, including both DCC chat, and DCC file transfer.
* Can both initiate and react to initiated DCC.
* Can accept or decline DCC sessions asynchronously.
* Plain C interface and implementation
(possible to use from C++ code, obviously)
* Compatible with RFC 1459 and most IRC clients.
* Free, licensed under LGPL license.
* Good documentation and examples available.
WWW: http://libircclient.sourceforge.net/
PR: ports/129278
Submitted by: Julien Laffaye <kimelto at gmail.com>
Port changes:
o Adjusted WITHOUT_IPV6 port option to compensate for
ratbox enabling IPv6 by default.
o Updated patches for diff index changes and added new
patch on 'rsdb_sqlite3.c' to fix ban.db path code.
Software changes included in this release:
o Fix a crash with the the global CIDR code.
o Fix a core dump in bantool if bantool cannot open the database.
o Report failure to open logfiles in a more useful way.
o Check to see if we have both read and write access to the ban database.
o Fix a build error on OS X Leopard.
PR: 128890
Submitted by: Lewis <moggie@elasticmind.net> (maintainer)
Note:
Fix a crash bug when modperl was loaded on some arches
PERL_SYS_INIT3 was added to modperl in r1155-1158 to fix modperl on arches like
hppa. This added an invalid cast which caused a segfault.
If you have:
const char *pArgv[];
Then pArgv will point to the same memory location as &pArgv. This pointer was
then casted to (char ***) which is one level of pointers too much for this
pointer.
Thanks to an anonymous reporter who pointed out the crash.
Thanks to pippijin for helping me understand the C++ magic.
Reported by: Elvis Stansvik <elvstone@gmail.com>
- Software changes include: ircd-ratbox-3.0.0rc2
o Log ERROR commands to file regardless of hide_error_messages setting.
o Restrict JOIN 0 to only allow 0 by itself, no multiple zeros or zeros before or after commas.
o Honor -logfile command line option.
o Fix timerfd_create check.
- Updates in: ircd-ratbox-3.0.0rc1
o Fix a bug in comment parsing in the config file.
o Have bandb honor -basedir option.
o Fix ssld to work on win32 should you ever desire such a thing and a few other minor win32 fixes.
o Fix up a few things so that the source code builds with gcc -pedantic.
o Do not abort configure if the AC_CHECK_SQLITE3 check fails.
o Drop configure option for ssl only channels, this is now controlled by a channel {} use_sslonly option.
o Attempt to override FD_SETSIZE when using select, and if this cannot be overriden, lower maxconnections.
o Fix signalfd code on 32bit platforms.
o Add support for timerfd_create event handling on linux systems with new enough kernels and glibc.
o Fix our fake rb_sockaddr_storage so that it actually compiles.
o Add some work arounds to avoid OPENSSL_applink on some platforms.
PR: ports/127925
Submitted by: Lewis <moggie@elasticmind.net> (maintainer)