about summary refs log tree commit diff
AgeCommit message (Collapse)Author
2010-10-11ngIRCd release 17~rc1 rel-17-rc1Alexander Barton
2010-10-11New configuration option "NoZeroConf" to disable ZeroConf registrationAlexander Barton
If ngIRCd is compiled to register its services using ZeroConf (e.g. using Howl, Avahi or on Mac OS X) this parameter can be used to disable service registration at runtime.
2010-10-09Xcode: only build current architecture in "Debug" targetAlexander Barton
2010-10-07doc/Platforms.txt: added NetBSD 5.0.2Alexander Barton
2010-10-05Updated doc/Platforms.txtAlexander Barton
2010-10-05Make sure sighandlers.h is listed in noinst_HEADERSAlexander Barton
... because it must be included in the distribution archive :-)
2010-10-05const'ify ngt_SyslogFacilityName() functionAlexander Barton
This fixes the following gcc compiler warning: tool.c: In function 'ngt_SyslogFacilityName': tool.c:195: warning: return discards qualifiers from pointer target type
2010-10-03Debian packages: build "-full" and "-full-dbg" with support for PAMAlexander Barton
2010-09-24New configuration option "SyslogFacility"Alexander Barton
The new option "SyslogFacility" deines the syslog "facility" to which ngIRCd should send log messages. Possible values are system dependant, but most probably "auth", "daemon", "user" and "local1" through "local7" are possible values; see syslog(3). Default is "local5" for historical reasons.
2010-09-24New functions ngt_SyslogFacilityName() and ngt_SyslogFacilityID()Alexander Barton
These both functions translate syslog facility names to ID numbers and vice versa. On systems that don't define the facilitynames[] array in syslog.h, we try to build one ourself.
2010-09-22Explicitly cast return value of read(2) to "int"Alexander Barton
This fixes the following gcc warning, emitted by Xcode: src/ngircd/sighandlers.c: In function 'Signal_Callback': src/ngircd/sighandlers.c:239: warning: implicit conversion shortens 64-bit value into a 32-bit value
2010-09-22Add sighandlers.{c|h} to Xcode projectAlexander Barton
And update static Mac OS X config.h used by the Xcode project.
2010-09-22Don't call sigaction() if it is not available on the systemAlexander Barton
2010-09-14Fix signalpipe file descriptor leak on RESTARTFlorian Westphal
Signals_Init() must only be called once. This does not affect any ngircd release version. Earlier version of this patch moved the io and sighandler initialization before the while() loop, but as Alexander Barton noticed that broke all systems without builtin select support in io.c...
2010-09-14sighandlers.{c|h}: Code cleanupAlexander Barton
- declare signals_catch[] array not between the function implementations. - rename now local function NGIRCd_Rehash() to Rehash(). - remove empty and therefore not used "catch SIGHUP; break;".
2010-09-14Make sighandlers.{c|h} compatible with ansi2knrAlexander Barton
2010-09-14Updated ChangeLog to include signal handler changesAlexander Barton
2010-09-14Bump version number to "17-dev"Alexander Barton
2010-09-14Update ChangeLog and NEWS: include SIGUSR1/SIGUSR2 changesAlexander Barton
2010-09-14Output connection status when dumping the internal server stateAlexander Barton
2010-09-14Reformat "server state" debug messages a little bitAlexander Barton
2010-09-14Enable the daemon to dump its internal state in debug-mode.Alexander Barton
This patch allows ngIRCd to dump its internal state (connected clients, actual configuration) when compiled with --enable-debug. The daemon catches two more signals: - SIGUSR1: toggle debug mode (on/off), - SIGUSR2: dump internal state to console/syslog.
2010-09-11signalhandlers: add fallback to deprecated sysv APIFlorian Westphal
2010-09-11remove NGIRCd_SignalRehashFlorian Westphal
now that the main signal handling is done from the dispatcher loop we can call NGIRCD_Rehash() directly. the /REHASH handler can queue the Rehash() function for execution by sending a SIGHUP. It will be run when we return back to the dispatch loop.
2010-09-11Add new 'delayed' signal handlers.Florian Westphal
Allows to defer/queue signal processing for execution on the next event dispatch call, i.e. we can perform any signal action in normal, non-signal context. Example uses: - Reload everything on HUP without writing a global "SIGHUP_received" variable - Dump status of internal Lists on SIGUSR1, etc.
2010-09-11io: add io_cloexec to set close-on-exec flag.Florian Westphal
2010-09-11ng_ipaddr.h: include assert.hFlorian Westphal
We use assert() in this header, so we should include assert.h.
2010-09-08Conn_SyncServerStruct(): test all connections; and work case insensitiveAlexander Barton
Fix synchronization of established connections and configured server structures after a configuration update: - Not only test servers that already have a connection, but also check and update configured servers to which a new connection is beeing established (SERVER_WAIT state). - And do the server name comparision case-insensitive.
2010-09-08Check_Servers(): skip servers already beeing connectedAlexander Barton
Let CheckServers() not only skip servers that already have a connection, but also skip servers to which a new connection is already beeing established (SERVER_WAIT state).
2010-09-08Check_Servers(): Code cleanupAlexander Barton
2010-08-29Update ChangeLog and NEWS in preparation for the next release ...Alexander Barton
2010-08-29Fix linebreak in INSTALL text to fit in 80 columnsAlexander Barton
2010-08-25configure: correctly indent IPv6 yes/no summary outputAlexander Barton
2010-08-19Don't reset My_Connections[Idx].lastping when reading dataAlexander Barton
This fixes PING-PONG lag calculation (which resulted in "0" before). The "lastping" time is still reset it if a time shift backwards has been detected to prevent the daemon from miscalculating ping timeouts.
2010-08-18write_whoreply(): respect hostname cloakingAlexander Barton
2010-08-17IRC_USERHOST(): respect hostname cloakingAlexander Barton
2010-08-17IRC_USERHOST(): Code cleanup & some documentationAlexander Barton
2010-08-17Send_Message(): respect hostname cloakingAlexander Barton
2010-08-17IRC_WriteStrClientPrefix() / Get_Prefix(): respect hostname cloakingAlexander Barton
2010-08-17Refactor IRC_WriteStr{Channel|Related}Prefix(); support cloakingAlexander Barton
Move common code to new local function Send_Marked_Connections() and respect hostname cloaking.
2010-08-17Implement user mode "x": hostname cloaking (closes: #102)Alexander Barton
When a client has user mode "x" set, its real hostname is cloaked by substituting it with the server name (as configured in ngircd.conf). Restricted clients (user mode "r") aren't allowed to change mode "x". Please note that hostname cloaking is only in effect in server-client communication! The server still uses the real hostname for its own logging and for all server-server communication -- therefore all servers in the network must support user mode "x" to prevent older servers from leaking the real hostname of a cloaked client!
2010-08-17WHOWAS: respect hostname cloakingAlexander Barton
Store cloaked hostname if user mode "x" is set when the client disconnects from the server.
2010-08-17WHOIS: respect hostname cloakingAlexander Barton
2010-08-17Implement Client_HostnameCloaked() and Client_MaskCloaked()Alexander Barton
These two functions return the cloaked hostname, if the client has enabled hostname cloaking indicated by the -- still to implement -- user mode "x". See furter patches :-)
2010-08-17Clean up an document Client_Hostname() and Client_Mask()Alexander Barton
2010-08-17Make configure switch "--docdir" work (closes: #108)Alexander Barton
2010-08-13Reformat and update FAQ.txt a little bitAlexander Barton
2010-08-12INSTALL: mention SSL and IPv6Florian Westphal
2010-08-12INSTALL: mention changed handling of MotdFile.Florian Westphal
2010-08-12ngircd: change MOTD file handlingFlorian Westphal
previously, the given MotdFile file was read whenever a client requested it. Change handling to read the MotdFile contents into memory once during config file parsing. Two side effects: - changes to the MOTD file do not have any effect until ngircds configuration is reloaded - MOTD file does no longer have to reside in the chroot directory (the MOTD contents will then not be re-read on reload in that case)