aboutsummaryrefslogtreecommitdiffstats
path: root/src/inspircd.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
| * Extract config file finding code to a function.Gravatar Peter Powell2019-12-081-17/+23
| |
| * Extract performance stat code to a function.Gravatar Peter Powell2019-12-081-20/+27
| |
| * Move XLine garbage collection to core_xline.Gravatar Peter Powell2019-12-081-7/+0
| |
| * Increase the core dump size earlier in the process lifetime.Gravatar Peter Powell2019-12-081-2/+1
| | | | | | | | | | According to `man 2 getrlimit` resource limits are inherited by the child when a process forks.
| * Call RecoverFromFork from ForkIntoBackground.Gravatar Peter Powell2019-12-081-1/+1
| |
| * Convert InspIRCd::SetSignals to a static function.Gravatar Peter Powell2019-12-081-16/+19
| |
| * Move forking code into a function and remove DaemonSeed.Gravatar Peter Powell2019-12-081-41/+41
| |
| * Extract the core dump size increasing code to a function.Gravatar Peter Powell2019-12-081-12/+19
| |
| * Make the UpdateTime function easier to read.Gravatar Peter Powell2019-12-081-9/+8
| |
| * Extract root dropping code to a function.Gravatar Peter Powell2019-12-081-48/+53
| |
| * Extract rng initialisation code to a function.Gravatar Peter Powell2019-12-081-4/+11
| |
| * Move various static functions into an anonymous namespace.Gravatar Peter Powell2019-12-081-10/+15
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-12-081-24/+15
|\|
| * Clean up the initialisation of the InspIRCd class.Gravatar Peter Powell2019-12-081-24/+15
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-11-131-1/+4
|\|
| * Add an event which is fired when the server shuts down.Gravatar Peter Powell2019-10-171-1/+4
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-07-161-6/+4
|\|
| * Fix not expanding <pid:file> correctly.Gravatar Peter Powell2019-07-031-3/+1
| |
| * Deduplicate dirent.h inclusion.Gravatar Peter Powell2019-06-201-1/+0
| |
| * Ignore SIGUSR1 and SIGUSR2 by default.Gravatar Peter Powell2019-05-301-2/+3
| | | | | | | | | | This stops users from accidentally killing their IRC server if they forget to load the sslrehashsignal module.
* | Replace socketengine_{pthread,win32} with C++11 threads.Gravatar Sadie Powell2019-05-151-7/+3
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-02-151-26/+6
|\|
| * Quit users during cleanup instead of when /DIE is executed.Gravatar Peter Powell2019-02-051-0/+6
| |
| * Delete the old broken test suite.Gravatar Peter Powell2019-02-051-26/+0
| | | | | | | | | | | | This doesn't work properly and is disabled in both debug & release builds. It will be resurrected with a proper unit testing framework in the future.
* | UserManager: remove fakederef.Gravatar Sadie Powell2019-02-071-1/+1
| |
* | SnomaskManager: remove fakederef.Gravatar Sadie Powell2019-02-071-3/+3
| |
* | ModuleManager: remove fakederef.Gravatar Sadie Powell2019-02-071-2/+2
| |
* | LogManager: remove fakederef.Gravatar Sadie Powell2019-02-071-21/+21
| |
* | Remove support for the deprecated rfc1459 casemapping,Gravatar Sadie Powell2019-01-251-1/+1
|/ | | | Closes #1017.
* Move the <disabled> tag out of the core to a new module.Gravatar Peter Powell2019-01-241-1/+0
|
* Add an option for changing the allowed server clock drift.Gravatar Peter Powell2018-12-041-7/+8
|
* Implement IRCv3 message tag support.Gravatar Peter Powell2018-08-131-0/+10
| | | | Co-authored-by: Attila Molnar <attilamolnar@hush.com>
* Remove the 'debug' snotice character.Gravatar Peter Powell2018-08-071-2/+2
|
* Allow relative paths to be passed in --config on boot.Gravatar Peter Powell2018-06-251-1/+10
| | | | Closes #1115.
* Add --nopid command line option (#1497).Gravatar Chris Novakovic2018-06-041-2/+10
| | | | | | Add a --nopid command line option, which causes a PID file not to be written to the file system regardless of the presence of the <pid> tag in the configuration file or the value of its "file" variable if it is present.
* Get rid of InspIRCd::QuickExit.Gravatar Peter Powell2017-12-231-13/+8
| | | | | | | | This is just a thin wrapper around exit(). I don't think we really need it. While we are changing this code the setgroup/setuser code should be using EXIT_STATUS_CONFIG too.
* Extract RFC modes from the core to core_channel and core_user.Gravatar Peter Powell2017-12-101-1/+0
|
* Assume that RUSAGE_SELF is always defined.Gravatar Peter Powell2017-11-271-6/+0
| | | | | This was added for Red Hat 7 which was released in 2000(!) which nobody should be using anymore.
* Convert GenRandom to std::function.Gravatar Peter Powell2017-11-251-1/+1
|
* Convert IsChannel to std::function.Gravatar Peter Powell2017-11-251-1/+1
|
* Convert IsIdent to std::function.Gravatar Peter Powell2017-11-251-1/+1
|
* Convert IsNick to std::function.Gravatar Peter Powell2017-11-251-1/+1
|
* Fix a ton of -Wsign-conversion warnings.Gravatar Peter Powell2017-11-171-1/+1
|
* Convert GetMaxFds() to size_t and deduplicate setting code.Gravatar Peter Powell2017-10-221-1/+1
|
* Clean up the command disabling logic.Gravatar Peter Powell2017-10-171-1/+1
| | | | | | | - Read the disabled command list in ApplyDisabledCommands() instead of storing it in a global which is only accessed on rehash. - Write debug messages to the log when disabling commands. - Use irc::spacesepstream instead of std::stringstream.
* Merge the latest changes from insp20 into master.Gravatar Peter Powell2017-10-121-0/+7
|\
| * Fix killing elined clients on [gkz]line in some cases.Gravatar Peter Powell2017-09-111-0/+5
| |
* | Change FailedPortList to store a sockaddrs/int instead of string.Gravatar Peter Powell2017-09-121-1/+1
| |
* | Clean up the <security:runas{user,group}> code.Gravatar Peter Powell2017-09-121-27/+12
| | | | | | | | | | | | | | - Get rid of unnecessary temporary values. - Remove an erroneous usage comment. - Reset errno before the call to setgroups. - Unify the two stage initialisation of g/u.
* | Move operquit out of the core and into core_user.Gravatar Peter Powell2017-09-111-3/+0
| |