| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Merge the svshold module into the services module. | 2023-07-01 | 1 | -0/+2 | |
| | | |||||
| * | Retain the "real" username properly like we do for hostnames. | 2023-06-29 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | This introduces the concept of a real username. This value comes from either the initial USER message or from an ident lookup. Doing this allows us to use it for bans through vidents and cloaking web client users using their remote username. While changing this I also changed all of the uses of "ident" other than RFC 1413 lookups and some compatibility cases to refer to usernames as user(name) instead of ident. Our use of ident in these places was incorrect as that only refers to the RFC 1413 response and is not commonly used in the way we used it by any other IRC server implementations. | ||||
| * | Fix "auto" not being a valid options for <options:defaultbind>. | 2023-06-07 | 1 | -2/+4 | |
| | | | | | | This fell back to the correct value but created a spurious message in the server log. | ||||
| * | Allow customising the message shown when hiding an X-line ban. | 2023-04-18 | 1 | -1/+1 | |
| | | |||||
| * | Remove GetSID, rename sid to ServerId. | 2023-02-28 | 1 | -6/+6 | |
| | | |||||
| * | Load both help and helpmode if a user has helpop in their config. | 2023-02-27 | 1 | -0/+5 | |
| | | |||||
| * | Merge the servprotect module into the services module. | 2023-02-19 | 1 | -0/+2 | |
| | | |||||
| * | Make reading the core config less of a mess. | 2023-01-27 | 1 | -60/+66 | |
| | | |||||
| * | Replace getInt/getUInt/getFloat with type safe templated functions. | 2023-01-25 | 1 | -17/+17 | |
| | | |||||
| * | Convert log calls to use fmtlib format strings | 2023-01-24 | 1 | -4/+4 | |
| | | |||||
| * | Replace InspIRCd::Format with fmt::format. | 2023-01-23 | 1 | -6/+5 | |
| | | |||||
| * | Move NotifyRawIO to the Log namespace. | 2023-01-22 | 1 | -1/+1 | |
| | | |||||
| * | Convert various enums to strongly typed scoped enums. | 2023-01-22 | 1 | -1/+1 | |
| | | |||||
| * | Allow creating a FailedPort without a bindspec. | 2023-01-17 | 1 | -2/+4 | |
| | | |||||
| * | Store the actual error in FailedPort instead of an error code. | 2023-01-16 | 1 | -1/+1 | |
| | | |||||
| * | Merge branch 'insp3' into master. | 2023-01-13 | 1 | -3/+3 | |
| |\ | |||||
| * | | Convert the cloak_md5 module to the new cloak system. | 2023-01-13 | 1 | -0/+5 | |
| | | | |||||
| * | | Const correct various functions. | 2023-01-11 | 1 | -2/+2 | |
| | | | |||||
| * | | Qualify auto correctly in all cases. | 2023-01-10 | 1 | -3/+3 | |
| | | | |||||
| * | | Avoid copying shared_ptr<ConfigTag> when not necessary. | 2023-01-10 | 1 | -3/+3 | |
| | | | |||||
| * | | Deduplicate sending the raw I/O logging warning. | 2023-01-09 | 1 | -1/+1 | |
| | | | |||||
| * | | Rework how users are assigned to connect classes. | 2023-01-08 | 1 | -4/+3 | |
| | | | | | | | | | | | | | | | | | | | | | | | - Move core connect class checks and <performance:clonesonconnect> to the core_user module. - Add pre-change and post-change events for when a connect class changes. - Split explicit class changing out into its own method. - Remove the need to almost always call CheckClass after SetClass. - Add use counting to the connect class instead of relying on the shared_ptr use count. | ||||
| * | | Merge branch 'insp3' into master. | 2023-01-01 | 1 | -1/+0 | |
| |\| | |||||
| | * | Update copyright headers. | 2022-12-30 | 1 | -1/+0 | |
| | | | |||||
| * | | Rework the levels things are logged at to make more sense. | 2022-12-18 | 1 | -5/+6 | |
| | | | |||||
| * | | Load regex_pcre instead of regex_pcre2 for compat with v3. | 2022-12-05 | 1 | -0/+2 | |
| | | | |||||
| * | | Refactor the internals of the oper system. | 2022-11-28 | 1 | -32/+34 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | - Allow overriding privileges from the <class> blocks in the <type> and <oper> blocks. - Separate oper types from oper accounts in the code. This enables moving some core stuff out of the config tag later. - Merge the config tags together to make a synthetic tag that can have getXXX called on it instead of using getConfig and then converting it. - Move the details of Have*Permission into the oper type class. - Improve oper events to allow modules to easily hook into the oper system. | ||||
| * | | More const correctness. | 2022-10-23 | 1 | -4/+4 | |
| | | | |||||
| * | | Handle renamed modules when reading the modules to load. | 2022-10-18 | 1 | -10/+42 | |
| | | | |||||
| * | | Inline the one use of ServerNoticeAll and rm the function. | 2022-10-01 | 1 | -1/+4 | |
| | | | |||||
| * | | Use auto instead of type names where the type is obvious. | 2022-09-29 | 1 | -2/+2 | |
| | | | |||||
| * | | Fix various cases of the &* being next to the name instead of type. | 2022-09-29 | 1 | -2/+2 | |
| | | | |||||
| * | | Rework the snotices sent when a rehash loads/unloads a module. | 2022-09-13 | 1 | -15/+17 | |
| | | | | | | | | | | | | | - Fix sending a duplicate load/unload message when rehashed from the terminal. - Avoid formatting the log message twice. | ||||
| * | | Fix some warnings noticed by the readability-* clang-tidy checkers. | 2022-09-03 | 1 | -2/+2 | |
| | | | |||||
| * | | Move config xline reading and rehashing to core_xline. | 2022-06-26 | 1 | -32/+0 | |
| | | | |||||
| * | | Fix various bugs relating to platform-native module extensions. | 2022-06-26 | 1 | -4/+3 | |
| | | | |||||
| * | | Move unistd out of the global compat header. | 2022-05-07 | 1 | -0/+4 | |
| | | | |||||
| * | | Rewrite logging calls to use the new APIs. | 2022-05-01 | 1 | -5/+5 | |
| | | | |||||
| * | | Rewrite the entire logging system. | 2022-05-01 | 1 | -2/+11 | |
| | | | | | | | | | | | | | - Much cleaner API for writing to the log. - Adds support for stderr and stdout logging to the core. - Adds support for sql and syslog logging in modules. | ||||
| * | | Enable getting the local server hostname on Windows. | 2022-04-30 | 1 | -2/+0 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2022-04-29 | 1 | -1/+1 | |
| |\| | |||||
| | * | Update copyright headers. | 2022-04-28 | 1 | -1/+1 | |
| | | | |||||
| * | | Only write to the pid file on boot. | 2022-04-23 | 1 | -4/+0 | |
| | | | | | | | | | | | | | | | | | Being able to change this after first boot is error prone and does not work well on system-wide installs where the server needs root to write the file. Closes #566. | ||||
| * | | Add ConnectClass::Ptr as an alias for std::shared_ptr<ConnectClass>. | 2022-01-16 | 1 | -3/+3 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2022-01-16 | 1 | -1/+1 | |
| |\| | |||||
| | * | Fix updating connect classes when <connect:{allow, deny}> is set. | 2022-01-16 | 1 | -1/+1 | |
| | | | |||||
| * | | Replace uses of the FileSystem class with std::filesystem. | 2022-01-15 | 1 | -1/+20 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2021-12-11 | 1 | -1/+1 | |
| |\| | |||||
| | * | Fix the default server name on non-macOS. | 2021-11-26 | 1 | -1/+1 | |
| | | | |||||
| * | | Add a snomask flag for rehash messages. | 2021-11-28 | 1 | -8/+8 | |
| | | | |||||
