about summary refs log tree commit diff
path: root/src
AgeCommit message (Collapse)Author
2005-01-17Raised the maximum length of passwords to 20 characters.Alexander Barton
2005-01-17Fixed a memory leak when resizing the connection pool and realloc() failed.Alexander Barton
Now we don't fall back to malloc(), which should be sane anyway. Patch from Florian Westphal, <westphal@foo.fh-furtwangen.de>.
2004-12-26Don't use a POSIX thread for the Howl "run loop".Alexander Barton
2004-12-26Added support for the Howl (http://www.porchdogsoft.com/products/howl/)Alexander Barton
Rendezvous API, in addition to the API of Apple (Mac OS X).
2004-12-22Fixed indentation and added some more debug code.Alexander Barton
2004-10-20Made ngIRCd compile on HP/UX 10.20 with native HP pre-ANSI C compiler andAlexander Barton
most probably other older C compilers on other systems.
2004-10-04Changed "read buffer" to "receive buffer" as suggested by Goetz.Alexander Barton
2004-10-04Added some missing words: "address" :-)Alexander Barton
2004-09-24Fixed wrong variable names in output of "ngircd --configtest".Alexander Barton
2004-09-08Added functions.inc to EXTRA_DIST files.Alexander Barton
2004-09-06Fixed echo without newline for systems not understanding "echo -n"; addedAlexander Barton
new file "functions.inc" for functions usable by all test scripts.
2004-09-06Reverted extension of the "make all" target in the test-suite.Alexander Barton
2004-09-06Fixed wrong exit code check of "kill -0".Alexander Barton
2004-09-04If ServerUID is defined change the working directory to the home directoryAlexander Barton
of this user.
2004-09-04Enhanced messages and exit codes.Alexander Barton
2004-09-04Added all test scripts to target "all".Alexander Barton
2004-09-04Changed text "test scripts" to "processes": some versions of expect(1)Alexander Barton
fork child processes ...
2004-09-04Removed counting of test processes; don't check running processes by default.Alexander Barton
2004-09-04Added detection of flags for ps(1).Alexander Barton
2004-09-04Added README, test-loop.sh and wait-tests.sh to EXTRA_DIST files.Alexander Barton
2004-09-04Made stress-server.sh to use wait-tests.sh to limit number of parallel tests.Alexander Barton
2004-09-04Two new scripts: test-loop.sh and wait-tests.shAlexander Barton
2004-09-04Added support for looping and other enhancements.Alexander Barton
2004-09-04Set $srcdir if not already set by make.Alexander Barton
2004-09-04If nick name is already in use, interpret this as "clienst still connected".Alexander Barton
2004-09-04Added preliminary README text.Alexander Barton
2004-06-26Added cast to integer for Solaris.Alexander Barton
2004-05-30Fixed wrong buffer size calculation for resolver results.Alexander Barton
2004-05-11Fixed a warning message of the compiler when not using IDENT lookups.Alexander Barton
2004-05-11Fixed resolver when using IDENT lookups, cleaned up code.Alexander Barton
2004-05-10Added PID to all log messages on the console; enhanced logging ofAlexander Barton
resolver sub-processes in debug mode.
2004-05-09Enhanced output of "make lint".Alexander Barton
2004-05-07New "chroot" feature (from Benjamin Pineau), introducing new configurationAlexander Barton
variables "ChrootDir" and "MotdPhrase".
2004-04-25Add flag "L" to default IRC+ server flags: synchronize INVITE-Alexander Barton
and BAN-lists.
2004-04-25Synchronize INVITE- and BAN-lists if the peer requests it:Alexander Barton
server flag "L". And better debug logging.
2004-04-25Don't send MODE changes when origin is a server andAlexander Barton
mask is already known.
2004-04-25New functions: Lists_SendInvites(), Lists_IsInviteEntry(),Alexander Barton
2004-04-25Fixed a wrong assert() which could cause the daemon to exit spuriouslyAlexander Barton
when closing down connections.
2004-04-25Better logging of decompression errors returned by zlib.Alexander Barton
2004-04-09Fixed handling of already existent entries in invite and ban lists:Alexander Barton
the attempt to add an already existent entry is no error, it must be propagated across servers (but not added to the list!).
2004-04-09Servers other than the destination server didn't clean up the inviteAlexander Barton
list of an "invite-only" channel properly when an INVITE'd user joined.
2004-03-15Fixed detection of GNU C version and usability of __attribute__.Alexander Barton
2004-03-11Fixed some warnings of non-gcc-compilers (e. g. original Apple compiler onAlexander Barton
A/UX): "warning: illegal pointer combination, op =".
2004-03-10Updated tests to reflect last changes to MODE behaviour.Alexander Barton
2004-02-29Changed the reply of the MODE command to match the syntax of the originalAlexander Barton
ircd exactly: the unnecessary but missing ":" before the last parameter has been added.
2004-02-28Fixed TRACE: don't output "Serv" lines for ourself; display more info.Alexander Barton
2004-02-28Better logging while establishing and shutting down connections.Alexander Barton
Results of the resolver are now discarded after the client is registered.
2004-02-04The info text ("real name") of users is set to "-" if none has beenAlexander Barton
specified using the USER command (e. g. "USER user * * :"). Reason: the original ircd doesn't like empty ones and would KILL such users.
2004-02-03Fixed (optional) TCP Wrapper test which was broken and could result inAlexander Barton
false results. Thanks to Fuminori Tanizaki <tany@mcnet.ad.jp>!
2004-01-25The type of service (TOS) of all sockets is set to "interactive" now.Alexander Barton