aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_httpd_acl.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright headers.Gravatar InspIRCd Robot2024-06-071-3/+3
|
* Move TokenList back to its own header and move INSP_FORMAT to compat.Gravatar Sadie Powell2023-09-031-0/+1
| | | | | This allows making stringutils an optional header given that most of it is not used by most of the codebase.
* Update usages of stdalgo::string::equalsci to use insp::equalsci.Gravatar Sadie Powell2023-08-111-3/+4
|
* Convert log calls to use fmtlib format stringsGravatar Sadie Powell2023-01-241-11/+11
|
* Merge branch 'insp3' into master.Gravatar Sadie Powell2023-01-011-1/+1
|\
| * Update copyright headers.Gravatar InspIRCd Robot2022-12-301-1/+1
| |
* | Yet more stylistic fixes.Gravatar Sadie Powell2022-12-011-2/+7
| |
* | Fix various cases of the &* being next to the name instead of type.Gravatar Sadie Powell2022-09-291-3/+3
| |
* | Rewrite logging calls to use the new APIs.Gravatar Sadie Powell2022-05-011-12/+12
| |
* | Abolish the infernal space before accessibility keywords.Gravatar Sadie Powell2022-01-251-3/+3
| |
* | Refactor CoreException and ModuleException.Gravatar Sadie Powell2022-01-071-1/+1
| |
* | Apply the final keyword to all module classes where appropriate.Gravatar Sadie Powell2021-10-041-1/+1
| |
* | Mark all module classes as final.Gravatar Sadie Powell2021-10-011-1/+3
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-08-191-1/+1
|\|
| * Use timing safe comparisons for the httpd_acl username and password.Gravatar Sadie Powell2021-08-191-1/+2
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-05-141-1/+1
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2021-05-141-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-05-111-1/+1
|\|
| * Fix a bunch of weird indentation and spacing issues.Gravatar Sadie Powell2021-04-271-1/+1
| |
* | Refactor the Base64 encoding and decoding functions.Gravatar Sadie Powell2021-05-101-1/+1
| |
* | LogManager does not implement fakederef in v4.Gravatar Sadie Powell2021-04-171-4/+4
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-04-171-0/+10
|\|
| * Improve the debug logging for httpd_acl auth attempts.Gravatar Sadie Powell2021-04-171-0/+10
| |
* | Switch simple iterator loops to use range-based for loops.Gravatar Sadie Powell2021-04-071-11/+11
| |
* | Constify variables within loops.Gravatar Sadie Powell2021-04-011-1/+1
| |
* | Use emplace_back where possible.Gravatar Sadie Powell2021-03-301-1/+1
| |
* | Add stdalgo::iterator_range and switch config tag reading to use it.Gravatar Sadie Powell2020-10-311-3/+1
| | | | | | | | | | This allows us to use range-based for loops which were not possible with the previous config tag system.
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-05-051-1/+1
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2020-04-241-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-04-111-2/+1
|\|
| * Update the module descriptions using mkversion.Gravatar Sadie Powell2020-04-101-1/+1
| |
| * Remove an unused variable in the http_acl module.Gravatar Sadie Powell2020-04-101-1/+1
| |
* | Improve storage of module description, flags, and link data.Gravatar Sadie Powell2020-04-111-6/+3
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-02-191-1/+7
|\|
| * Marginally improve the error pages created by httpd and httpd_acl.Gravatar Sadie Powell2020-02-141-1/+7
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-01-171-1/+6
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2020-01-111-1/+6
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-05-151-1/+1
|\|
| * Textual improvements and fixes such as typos, casing, etc. (#1612)Gravatar Robby2019-04-281-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-02-151-4/+4
|\|
| * Expand searching in m_httpd_stats, add global handling of GET parameters (#1566)Gravatar linuxdaemon2019-02-061-4/+4
| |
* | LogManager: remove fakederef.Gravatar Sadie Powell2019-02-071-8/+8
| |
* | Replace the override macro with the override keyword.Gravatar Sadie Powell2019-01-251-3/+3
|/
* Make more modules rehash atomically (#1535)Gravatar linuxdaemon2018-12-191-2/+3
| | | | | Have each module validate the values it loads before setting them, so any errors don't result in partial application of the configs
* Make more config stuff case insensitive.Gravatar Peter Powell2018-07-241-3/+3
|
* Fix a ton of -Wsign-conversion warnings.Gravatar Peter Powell2017-11-171-2/+2
|
* Remove module file extensions from user-visible messages.Gravatar Peter Powell2017-08-271-1/+1
|
* Convert the HTTPd ACL event to use the new cross-module event systemGravatar Attila Molnar2015-02-111-9/+17
|
* Kill needless #includes in source filesGravatar Attila Molnar2014-06-141-1/+0
|
* Replace OnRehash() with ReadConfig() that is called on boot, on module load ↵Gravatar attilamolnar2013-08-301-6/+1
| | | | | | and on rehash This eliminates the need for calling OnRehash() in init()