aboutsummaryrefslogtreecommitdiff
path: root/src/configreader.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* | Avoid copying shared_ptr<ConfigTag> when not necessary.Gravatar Sadie Powell2023-01-101-3/+3
| |
* | Deduplicate sending the raw I/O logging warning.Gravatar Sadie Powell2023-01-091-1/+1
| |
* | Rework how users are assigned to connect classes.Gravatar Sadie Powell2023-01-081-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.Gravatar Sadie Powell2023-01-011-1/+0
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2022-12-301-1/+0
| |
* | Rework the levels things are logged at to make more sense.Gravatar Sadie Powell2022-12-181-5/+6
| |
* | Load regex_pcre instead of regex_pcre2 for compat with v3.Gravatar Sadie Powell2022-12-051-0/+2
| |
* | Refactor the internals of the oper system.Gravatar Sadie Powell2022-11-281-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.Gravatar Sadie Powell2022-10-231-4/+4
| |
* | Handle renamed modules when reading the modules to load.Gravatar Sadie Powell2022-10-181-10/+42
| |
* | Inline the one use of ServerNoticeAll and rm the function.Gravatar Sadie Powell2022-10-011-1/+4
| |
* | Use auto instead of type names where the type is obvious.Gravatar Sadie Powell2022-09-291-2/+2
| |
* | Fix various cases of the &* being next to the name instead of type.Gravatar Sadie Powell2022-09-291-2/+2
| |
* | Rework the snotices sent when a rehash loads/unloads a module.Gravatar Sadie Powell2022-09-131-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.Gravatar Sadie Powell2022-09-031-2/+2
| |
* | Move config xline reading and rehashing to core_xline.Gravatar Sadie Powell2022-06-261-32/+0
| |
* | Fix various bugs relating to platform-native module extensions.Gravatar Sadie Powell2022-06-261-4/+3
| |
* | Move unistd out of the global compat header.Gravatar Sadie Powell2022-05-071-0/+4
| |
* | Rewrite logging calls to use the new APIs.Gravatar Sadie Powell2022-05-011-5/+5
| |
* | Rewrite the entire logging system.Gravatar Sadie Powell2022-05-011-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.Gravatar Sadie Powell2022-04-301-2/+0
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-04-291-1/+1
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2022-04-281-1/+1
| |
* | Only write to the pid file on boot.Gravatar Sadie Powell2022-04-231-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>.Gravatar Sadie Powell2022-01-161-3/+3
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-01-161-1/+1
|\|
| * Fix updating connect classes when <connect:{allow, deny}> is set.Gravatar Sadie Powell2022-01-161-1/+1
| |
* | Replace uses of the FileSystem class with std::filesystem.Gravatar Sadie Powell2022-01-151-1/+20
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-12-111-1/+1
|\|
| * Fix the default server name on non-macOS.Gravatar Sadie Powell2021-11-261-1/+1
| |
* | Add a snomask flag for rehash messages.Gravatar Sadie Powell2021-11-281-8/+8
| |
* | Reject config files created using broken tutorials.Gravatar Sadie Powell2021-11-261-0/+9
| |
* | Move configuration of connect classes to the ConnectClass class.Gravatar Sadie Powell2021-11-241-33/+1
| |
* | Remove the legacy sendq to hardsendq/softsendq logic.Gravatar Sadie Powell2021-11-241-11/+0
| |
* | Refactor the ClassTypes enum and move into ConnectClass.Gravatar Sadie Powell2021-11-241-8/+8
| |
* | Add sensible defaults and limits to ConnectClass.Gravatar Sadie Powell2021-11-241-8/+8
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-11-241-0/+1
|\|
| * Add the <connect:uniqueusername> option.Gravatar Sadie Powell2021-11-231-0/+1
| |
* | Remove a bunch of unnecessary whitespace.Gravatar Sadie Powell2021-08-171-1/+0
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-07-241-5/+5
|\|
* | Require that hideserver is set to a valid hostname.Gravatar Sadie Powell2021-06-251-1/+1
| |
* | Added -Wshorten-64-to-32 and fixed all warnings.Gravatar Dominic Hamon2021-05-301-3/+3
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-05-111-2/+2
|\|
| * Fix a bunch of weird indentation and spacing issues.Gravatar Sadie Powell2021-04-271-2/+2
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-04-271-8/+8
|\|
| * Improve the messages sent when loading/unloading/reloading modules.Gravatar Sadie Powell2021-04-191-8/+8
| |
* | Migrate collections from insert to emplace.Gravatar Sadie Powell2021-04-181-1/+1
| |
* | Switch simple iterator loops to use range-based for loops.Gravatar Sadie Powell2021-04-071-28/+25
| |
* | Constify variables within loops.Gravatar Sadie Powell2021-04-011-8/+8
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-03-301-11/+11
|\|