aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_cgiirc.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Rename the cgiirc module to gateway.Gravatar Sadie Powell2021-04-111-534/+0
|
* Remove <cgiirc:opernotice>.Gravatar Sadie Powell2021-04-111-21/+4
| | | | This is no longer necessary now we have snomask privs.
* Merge branch 'insp3' into master.Gravatar Sadie Powell2021-04-111-8/+25
|\
| * Allow banning WebIRC users by their gateway name.Gravatar Sadie Powell2021-04-111-3/+15
| | | | | | | | Closes #1857.
* | 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-2/+2
| |
* | Pascalize Set in extension item classes.Gravatar Sadie Powell2021-03-171-5/+5
| |
* | Pascalize Get in extension item classes.Gravatar Sadie Powell2021-03-171-6/+6
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-02-281-52/+97
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2021-02-261-1/+1
| |
| * Add a command to the cgiirc module for encoding/decoding hex idents.Gravatar Sadie Powell2021-02-211-37/+81
| |
| * Rename the cmd variable to cmdwebirc in the cgiirc module.Gravatar Sadie Powell2021-02-211-12/+12
| |
| * Show the name of the WebIRC gateway in the IP changing notice.Gravatar Sadie Powell2021-02-051-2/+3
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-01-071-29/+41
|\|
| * Add support for multiple hostmasks in <cgiirc:mask>.Gravatar Sadie Powell2020-12-221-29/+41
| |
* | Convert FOREACH_MOD_CUSTOM to a variadic function.Gravatar Sadie Powell2020-11-101-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-11-031-1/+12
|\|
| * Make connect class debug logging more complete and consistent.Gravatar Sadie Powell2020-11-031-1/+12
| |
* | Move FilePosition to fileutils.h and use in ConfigTag.Gravatar Sadie Powell2020-11-031-4/+4
| |
* | Convert ConnectClass from reference<> to std::shared_ptr<>.Gravatar Sadie Powell2020-11-031-1/+1
| |
* | Add stdalgo::iterator_range and switch config tag reading to use it.Gravatar Sadie Powell2020-10-311-4/+1
| | | | | | | | | | This allows us to use range-based for loops which were not possible with the previous config tag system.
* | Convert CmdResult to an 8-bit strongly typed enum.Gravatar Sadie Powell2020-10-271-4/+4
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-05-051-1/+1
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2020-04-241-1/+1
| |
* | Alow modules to specify multiple syntax lines.Gravatar Sadie Powell2020-04-141-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-04-111-1/+1
|\|
| * Update the module descriptions using mkversion.Gravatar Sadie Powell2020-04-101-1/+1
| |
* | Improve storage of module description, flags, and link data.Gravatar Sadie Powell2020-04-111-6/+2
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-03-181-1/+8
|\|
| * Warn if the server config contains an unhashed password.Gravatar Sadie Powell2020-03-111-1/+8
| | | | | | | | This will be made a hard failure in v4.
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-01-171-5/+10
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2020-01-111-5/+10
| |
* | Rewrite and merge LocalStringExt, StringExtItem.Gravatar Sadie Powell2019-08-131-3/+3
| |
* | Move the Module parameter of ExtensionItem et al to the start.Gravatar Sadie Powell2019-08-131-3/+3
| | | | | | | | This matches what other ServiceProvider types do.
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-03-301-1/+1
|\|
| * Various text improvements: consistency, syntax, help and doc updates/fixes.Gravatar Robby2019-02-181-1/+1
| |
* | UserManager: remove fakederef.Gravatar Sadie Powell2019-02-071-2/+2
| |
* | SnomaskManager: remove fakederef.Gravatar Sadie Powell2019-02-071-2/+2
| |
* | LogManager: remove fakederef.Gravatar Sadie Powell2019-02-071-3/+3
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-02-051-2/+2
|\|
| * Remove trailing whitespace from various source files.Gravatar Peter Powell2019-01-241-2/+2
| |
* | Replace the override macro with the override keyword.Gravatar Sadie Powell2019-01-251-8/+8
|/
* Redo OnSetEndPoint logic to fix duplicate clones (#1549).Gravatar linuxdaemon2019-01-141-25/+2
|
* Fix detecting secure clients connecting through HAProxy/WEBIRC.Gravatar Peter Powell2018-12-011-4/+6
|
* Kill users that fail a WEBIRC auth instead of penalising them.Gravatar Peter Powell2018-11-211-2/+2
| | | | This behaviour is specified in the IRCv3 WebIRC specification.
* Only try to parse the WebIRC IP if the user matches a host.Gravatar Peter Powell2018-11-211-9/+9
|
* Fix an inverted condition in the cgiirc module.Gravatar Peter Powell2018-11-161-2/+2
|
* Implement support for WEBIRC attributes.Gravatar Peter Powell2018-11-041-3/+97
|
* Improvements and bugfixes to the cgiirc module.Gravatar Peter Powell2018-09-171-68/+109
| | | | | | | | | | - Allow the ident for ident type hosts to be set in the config. - Consistently check clone counts, connect classes, and xlines for all users regardless of their cgiirc host type. - Remove some obsolete code from when gateway clients had their IP changed in OnCheckReady. - Don't allow a gateway client to match both a WebIRC and an ident host.