| Commit message (Expand) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| | * | Improve behaviour when running as root.•••- Only give the annoying message about root if --runasroot is not specified. - If --runasroot is specified then assume the user knows what they are doing. - Move CheckRoot to a static function in inspircd.cpp. | 2019-12-08 | 1 | -18/+20 | ||
| | * | Show the header before checking if the config file exists. | 2019-12-08 | 1 | -5/+4 | ||
| | * | Initialise Winsock from inside the socket engine. | 2019-12-08 | 1 | -6/+2 | ||
| | * | Extract config file finding code to a function. | 2019-12-08 | 1 | -17/+23 | ||
| | * | Extract performance stat code to a function. | 2019-12-08 | 1 | -20/+27 | ||
| | * | Move XLine garbage collection to core_xline. | 2019-12-08 | 1 | -7/+0 | ||
| | * | Increase the core dump size earlier in the process lifetime.•••According to `man 2 getrlimit` resource limits are inherited by the child when a process forks. | 2019-12-08 | 1 | -2/+1 | ||
| | * | Call RecoverFromFork from ForkIntoBackground. | 2019-12-08 | 1 | -1/+1 | ||
| | * | Convert InspIRCd::SetSignals to a static function. | 2019-12-08 | 1 | -16/+19 | ||
| | * | Move forking code into a function and remove DaemonSeed. | 2019-12-08 | 1 | -41/+41 | ||
| | * | Extract the core dump size increasing code to a function. | 2019-12-08 | 1 | -12/+19 | ||
| | * | Make the UpdateTime function easier to read. | 2019-12-08 | 1 | -9/+8 | ||
| | * | Extract root dropping code to a function. | 2019-12-08 | 1 | -48/+53 | ||
| | * | Extract rng initialisation code to a function. | 2019-12-08 | 1 | -4/+11 | ||
| | * | Move various static functions into an anonymous namespace. | 2019-12-08 | 1 | -10/+15 | ||
| * | | Merge branch 'insp3' into master. | 2019-12-08 | 1 | -24/+15 | ||
| |\| | ||||||
| | * | Clean up the initialisation of the InspIRCd class. | 2019-12-08 | 1 | -24/+15 | ||
| * | | Merge branch 'insp3' into master. | 2019-11-13 | 1 | -1/+4 | ||
| |\| | ||||||
| | * | Add an event which is fired when the server shuts down. | 2019-10-17 | 1 | -1/+4 | ||
| * | | Merge branch 'insp3' into master. | 2019-07-16 | 1 | -6/+4 | ||
| |\| | ||||||
| | * | Fix not expanding <pid:file> correctly. | 2019-07-03 | 1 | -3/+1 | ||
| | * | Deduplicate dirent.h inclusion. | 2019-06-20 | 1 | -1/+0 | ||
| | * | Ignore SIGUSR1 and SIGUSR2 by default.•••This stops users from accidentally killing their IRC server if they forget to load the sslrehashsignal module. | 2019-05-30 | 1 | -2/+3 | ||
| * | | Replace socketengine_{pthread,win32} with C++11 threads. | 2019-05-15 | 1 | -7/+3 | ||
| * | | Merge branch 'insp3' into master. | 2019-02-15 | 1 | -26/+6 | ||
| |\| | ||||||
| | * | Quit users during cleanup instead of when /DIE is executed. | 2019-02-05 | 1 | -0/+6 | ||
| | * | Delete the old broken test suite.•••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. | 2019-02-05 | 1 | -26/+0 | ||
| * | | UserManager: remove fakederef. | 2019-02-07 | 1 | -1/+1 | ||
| * | | SnomaskManager: remove fakederef. | 2019-02-07 | 1 | -3/+3 | ||
| * | | ModuleManager: remove fakederef. | 2019-02-07 | 1 | -2/+2 | ||
| * | | LogManager: remove fakederef. | 2019-02-07 | 1 | -21/+21 | ||
| * | | Remove support for the deprecated rfc1459 casemapping,•••Closes #1017. | 2019-01-25 | 1 | -1/+1 | ||
| |/ | ||||||
| * | Move the <disabled> tag out of the core to a new module. | 2019-01-24 | 1 | -1/+0 | ||
| * | Add an option for changing the allowed server clock drift. | 2018-12-04 | 1 | -7/+8 | ||
| * | Implement IRCv3 message tag support.•••Co-authored-by: Attila Molnar <attilamolnar@hush.com> | 2018-08-13 | 1 | -0/+10 | ||
| * | Remove the 'debug' snotice character. | 2018-08-07 | 1 | -2/+2 | ||
| * | Allow relative paths to be passed in --config on boot.•••Closes #1115. | 2018-06-25 | 1 | -1/+10 | ||
| * | Add --nopid command line option (#1497).•••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. | 2018-06-04 | 1 | -2/+10 | ||
| * | Get rid of InspIRCd::QuickExit.•••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. | 2017-12-23 | 1 | -13/+8 | ||
| * | Extract RFC modes from the core to core_channel and core_user. | 2017-12-10 | 1 | -1/+0 | ||
| * | Assume that RUSAGE_SELF is always defined.•••This was added for Red Hat 7 which was released in 2000(!) which nobody should be using anymore. | 2017-11-27 | 1 | -6/+0 | ||
| * | Convert GenRandom to std::function. | 2017-11-25 | 1 | -1/+1 | ||
| * | Convert IsChannel to std::function. | 2017-11-25 | 1 | -1/+1 | ||
| * | Convert IsIdent to std::function. | 2017-11-25 | 1 | -1/+1 | ||
| * | Convert IsNick to std::function. | 2017-11-25 | 1 | -1/+1 | ||
| * | Fix a ton of -Wsign-conversion warnings. | 2017-11-17 | 1 | -1/+1 | ||
| * | Convert GetMaxFds() to size_t and deduplicate setting code. | 2017-10-22 | 1 | -1/+1 | ||
| * | Clean up the command disabling logic.•••- 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. | 2017-10-17 | 1 | -1/+1 | ||
| * | Merge the latest changes from insp20 into master. | 2017-10-12 | 1 | -0/+7 | ||
| |\ | ||||||
| | * | Fix killing elined clients on [gkz]line in some cases. | 2017-09-11 | 1 | -0/+5 | ||
