| Commit message (Expand) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Make the protocol version enum entries slightly less verbose. | 2021-08-28 | 1 | -4/+4 | |
| * | Merge branch 'insp3' into master. | 2021-05-14 | 1 | -1/+1 | |
| |\ | |||||
| | * | Update copyright headers. | 2021-05-14 | 1 | -1/+1 | |
| | * | Send the max line length to remote servers on link. | 2021-04-25 | 1 | -0/+1 | |
| * | | Fix building the link data string. | 2021-05-11 | 1 | -2/+2 | |
| * | | Use CompareLinkData for comparing v4 link data & make errors cleaner. | 2021-05-11 | 1 | -16/+123 | |
| * | | Use the contents of the link data map when using the 1206 protocol.•••Still to do: - Extract URL encoding to inspstring. - Use CompareLinkData when using the 1206 protocol. - Show friendlier messages when a link compatibility is encountered. | 2021-05-10 | 1 | -2/+1 | |
| * | | Add a new map-based method for building link data.•••The new link data is not currently used but will be in the near future. | 2021-05-10 | 1 | -1/+2 | |
| * | | Switch simple iterator loops to use range-based for loops. | 2021-04-07 | 1 | -5/+3 | |
| * | | Constify variables within loops. | 2021-04-01 | 1 | -1/+1 | |
| * | | Merge branch 'insp3' into master. | 2021-02-28 | 1 | -1/+1 | |
| |\| | |||||
| | * | Update copyright headers. | 2021-02-26 | 1 | -1/+1 | |
| * | | Fix comparing optional module lists. | 2020-12-21 | 1 | -1/+1 | |
| * | | Rewrite CAPAB MODULES/MODSUPPORT parsing/generation logic. | 2020-12-07 | 1 | -91/+117 | |
| * | | Omit module prefixes/suffixes when linking using the 1206 protocol. | 2020-12-05 | 1 | -4/+13 | |
| * | | Match CAPAB subcommands using the IRC casemapping. | 2020-12-05 | 1 | -8/+8 | |
| * | | Refactor CAPAB CAPABILITIES code to use a map. | 2020-12-04 | 1 | -32/+45 | |
| * | | Only send CAPAB EXTBANS if using the 1206 protocol. | 2020-12-04 | 1 | -4/+6 | |
| * | | Add support for the 1206 spanningtree protocol.•••For now this is identical to 1205 but changes will be happening soon. | 2020-12-04 | 1 | -1/+1 | |
| * | | Merge branch 'insp3' into master. | 2020-12-04 | 1 | -0/+15 | |
| |\| | |||||
| | * | Advertise the available extbans for services. | 2020-12-03 | 1 | -0/+8 | |
| * | | Rename ChanMax to MaxChannel for consistency with the other limits. | 2020-11-27 | 1 | -1/+1 | |
| * | | Rename NickMax to MaxNick for consistency with the other limits. | 2020-11-27 | 1 | -1/+1 | |
| * | | Rename IdentMax to MaxUser for consistency with the other limits. | 2020-11-27 | 1 | -1/+1 | |
| * | | Cleanup CAPAB MODULES/MODLIST now we don't need 1202 compatibility. | 2020-11-27 | 1 | -37/+6 | |
| * | | Initial support for platform-specific module file extensions. | 2020-11-04 | 1 | -1/+5 | |
| * | | Rip out compatibility code for the 2.0 protocol. | 2020-05-20 | 1 | -66/+16 | |
| * | | Add first class support for extbans.•••This replaces the previous support which was pretty much a giant hack and was not synchronised between servers. | 2020-05-07 | 1 | -0/+70 | |
| * | | Merge branch 'insp3' into master. | 2020-05-05 | 1 | -1/+1 | |
| |\| | |||||
| | * | Fixes by misspell-fixer | 2020-04-21 | 1 | -1/+1 | |
| * | | Rename Module::flags to Module::properties.•••This name is more descriptive and should create less warnings about shadowing in existing modules. | 2020-04-11 | 1 | -1/+1 | |
| * | | Improve storage of module description, flags, and link data. | 2020-04-11 | 1 | -5/+6 | |
| * | | Merge branch 'insp3' into master. | 2020-01-17 | 1 | -1/+7 | |
| |\| | |||||
| | * | Update copyright headers. | 2020-01-11 | 1 | -1/+7 | |
| | * | Fix space separation for CAPAB module list | 2019-05-15 | 1 | -7/+6 | |
| * | | Merge branch 'insp3' into master. | 2019-05-15 | 1 | -43/+15 | |
| |\| | |||||
| | * | Add an enumeration for known protocol versions. | 2019-05-14 | 1 | -16/+17 | |
| | * | Add translation for casemapping between 2.0/3.0 (#1544)•••If the casemapping is set to ascii, advertise the m_ascii module to 2.0 to allow use of the m_ascii extras module for 2.0 | 2019-01-24 | 1 | -0/+9 | |
| * | | SnomaskManager: remove fakederef. | 2019-02-07 | 1 | -1/+1 | |
| * | | ModuleManager: remove fakederef. | 2019-02-07 | 1 | -4/+4 | |
| * | | ModeParser: remove fakederef. | 2019-02-07 | 1 | -6/+6 | |
| * | | Remove support for the deprecated rfc1459 casemapping,•••Closes #1017. | 2019-01-25 | 1 | -8/+0 | |
| * | | Add translation for casemapping between 2.0/3.0 (#1544)•••If the casemapping is set to ascii, advertise the m_ascii module to 2.0 to allow use of the m_ascii extras module for 2.0 | 2019-01-24 | 1 | -0/+9 | |
| |/ | |||||
| * | Fix conversion issues by replacing ConvToInt with ConvToNum<T>.•••The former was a thin wrapper around atol and brought with it all of the weird parsing logic of atol which is almost never what is actually wanted. It also almost never returned the numeric type which is actually wanted which can cause weird issues when casting. | 2018-12-12 | 1 | -1/+1 | |
| * | Also synchronise the prefix rank between servers. | 2018-10-28 | 1 | -3/+3 | |
| * | Fix a shadowing warning in the spanningtree module. | 2018-10-27 | 1 | -2/+2 | |
| * | Improve CAPAB negotiation in the spanningtree module.•••- Remove the CHANMODES, USERMODES, and PREFIX tokens in the 1205 protocol. These have entirely been superceded by the CHANMODES and USERMODES CAPAB commands. - Only compare the 1202 PREFIX tokens if the remote server did not send CAPAB CHANMODES. This replicates the existing behaviour used for the CHANMODES token. - Fix checking whether the remote server has an appropriate case mapping. If it is not sent we assume it is the same as the local server as always. This should prevent issues with people using services packages that do not send this token yet. - Fix checking if the user modes are mismatched and then promptly overwriting the error message with mismatched channel modes. - Fix servers not being able to tell whether a mode on the remote server is a prefixless prefix mode. Requires the 1205 protocol. - Fix servers that receive CAPAB CHANMODES or CAPAB USERMODES not checking the type of those modes. Requires the 1205 protocol. | 2018-10-27 | 1 | -30/+50 | |
| * | Parse CAPAB CAPABILITIES and FJOIN messages with spacesepstream.•••Special tokenisation rules are not necessary here. | 2018-08-10 | 1 | -1/+1 | |
| * | Replace most usages of "GECOS" with "real" or "real name". | 2018-07-30 | 1 | -2/+5 | |
| * | Replace irc::stringjoiner with a generic stdalgo::string::join.•••This can also be used with different types of collection containing values which are not a string. | 2018-07-26 | 1 | -1/+1 | |
