about summary refs log tree commit diff
AgeCommit message (Collapse)Author
2008-01-13[Parser]: Fix minor sparse warningsFlorian Westphal
parse.c:56:9: warning: symbol 'My_Commands' was not declared. Should it be static? parse.c:107:9: warning: symbol 'My_Numerics' was not declared. Should it be static? Also move handling of numerics into a seperate helper function.
2008-01-07Updated ChangeLog to reflect changes in 0.10.x and 0.11.x branches.Alexander Barton
2008-01-07Updated Debian changelog [from 0.10.x; 0.11.x]Alexander Barton
2008-01-07Document NoDNS configuration option.Alexander Barton
2008-01-07IRC_PART could reference invalid memory.Florian Westphal
2008-01-02Remove entry about ngircd failing on Linux 2.4:Alexander Barton
ngircd can now fall back to select. [from 0.11.x]
2008-01-02Updated NEWS and ChangeLog files.Alexander Barton
2008-01-02[Resolver]: Use dotted-decimal IP address if hostname is >= 64Florian Westphal
2008-01-02io_event_disable: return if event-to-disable is already offFlorian Westphal
2007-12-27kqueue: check for EV_ERROR in .flagsFlorian Westphal
if kevent() returns events, check for EV_ERROR in event flags, too.
2007-12-13Fix format arg: ListenAddress was printed instead of Bind address.Florian Westphal
2007-12-13Fix format string in error path: didn't print strerror(errno)Florian Westphal
2007-12-11implement '/STAT u' (uptime)Florian Westphal
2007-12-07Fix fmt string: int, not longFlorian Westphal
2007-11-25include <arpa/inet.h> inside tool.hFlorian Westphal
In file included from hash.c:24: ../tool/tool.h:27: warning: `struct in_addr' declared inside parameter list
2007-11-23remove ip-string from Conf_Server structFlorian Westphal
struct Conf_Server stored the ip address to connect to in dotted-decimal notation; but we only need this for connect() so long-time storage isn't necessary.
2007-11-23document new "Bind" server config option in changelog.Florian Westphal
2007-11-23bind ListenAddress for outgoing connectionsFlorian Westphal
ngircd would always use INADDR_ANY for outgoing connections; which might not be desirable. Added new [Server] option "Bind" to set source ip.
2007-11-21Funktions to handle numerics sent to the server.Alexander Barton
2007-11-21Introduce option to configure the maximum nick name lenth in ngircd.confAlexander Barton
- New configuration option "MaxNickLength" to specify the allowed maximum length of user nick names. Note: must be unique in an IRC network! - Enhanced the IRC+ protocol to support an enhanced "server handshake" and enable server to recognice numeric 005 (ISUPPORT) and 376 (ENDOFMOTD). See doc/Protocol.txt for details.
2007-11-20Re-added doc/SSL.txt to distribution -- got lost somewhere!?Alexander Barton
2007-11-20Fixes the wrong logging output when nested servers are introducedAlexander Barton
to the network as well as the wrong output of the LINKS command.
2007-11-19Remove some bogus files from project ...Alexander Barton
2007-11-19Update Mac OS X Xcode project file for Xcode 3.Alexander Barton
Allow building of ngIRCd using Xcode 3 without running ./configure.
2007-11-18Adjust test suite to be usable on HP/UX 11.11 :-)Alexander Barton
2007-11-18Fix code to compile using K&R C compiler and ansi2kr again.Alexander Barton
2007-11-15add tiny note about ngircd using syslog(3) by default.Florian Westphal
2007-11-15if ngircd doesn't run chrooted, it tries to chdirFlorian Westphal
to the users working directory (as returned by getpwuid()). Failing to chdir to that directory isn't an error; so log with LOG_INFO and prefix the message with "Notice".
2007-10-25Document NoDNS Option in changelogFlorian Westphal
2007-10-25New config option NoDNS: disables all DNS queries.Florian Westphal
2007-10-24configtest would still print "-1" for MaxConnections, MaxConnectionsIP and ↵Florian Westphal
MaxJoins if any of those values was set to 0.
2007-10-14Updates NEWS to reflect changes in CVS HEADAlexander Barton
2007-10-14Fixed propagation of channel mode 'P' on server links.Alexander Barton
2007-10-14Xcode project: include manual page template files, not generated pages.Alexander Barton
2007-10-14Updated Mac OS X project file for Xcode.Alexander Barton
2007-10-13fix doc and manpage wrt. MaxConnections, MaxConnectionsIP and MaxJoins valuesFlorian Westphal
2007-10-13accoring to comments in the code, MaxConnections, MaxConnectionsIP and MaxJoinsFlorian Westphal
options allow setting values < 0 -- this isn't the case. Comments adjusted.
2007-10-07Updated preferred automake version to 1.9. Only set preferences if notAlexander Barton
already defined by some environment variables.
2007-10-04Made pointer to the mailing list more prominent.Alexander Barton
2007-10-04Numeric 317: implemented "signon time" (displayed in WHOIS result).Alexander Barton
2007-10-04Updated documentation ("Passive" option, for example).Alexander Barton
2007-08-02we now support /WALLOPSFlorian Westphal
2007-08-02implement /WALLOPS as described in RFC 2812, section 4.7.Florian Westphal
2007-07-31SECURITY: Fixed a severe bug in handling JOIN commands, which couldAlexander Barton
cause the server to crash. Thanks to Sebastian Vesper, <net@veoson.net>.
2007-07-21last fix accidentially broke reconnect timer.Florian Westphal
2007-06-28Don't connect to a server if a connection to another server within the same ↵Florian Westphal
group is in progress.
2007-06-28Add new server config option to disable automatic connect. (Tassilo Schweyer)Florian Westphal
2007-06-13Updated documentation to include changes of ngIRCd 0.10.2.Alexander Barton
2007-06-11fix compile /w gcc 2.95 (reported by Tassilo Schweyer)Florian Westphal
2007-05-26Updated config.guess and config.sub.Alexander Barton