| Commit message (Expand) | Author | Age | Files | Lines |
| * | Remove some useless getter methods and make the members public.•••This isn't part of a public API so we don't need to care about
exposing implementation details.
| Sadie Powell | 2021-04-14 | 1 | -17/+3 |
| * | Refer to encryption as TLS instead of SSL in all messages. | Sadie Powell | 2021-04-08 | 1 | -1/+1 |
| * | Fix a ton of pedantic compiler warnings. | Sadie Powell | 2021-04-04 | 1 | -1/+1 |
| * | Add the ~ server tag prefix.•••This is used for sending arbitrarily tagged messages between servers.
| Sadie Powell | 2021-03-30 | 1 | -0/+3 |
| * | Refactor classbase/CullResult into Cullable/Cullable::Result. | Sadie Powell | 2021-03-02 | 1 | -1/+1 |
| * | Add support for the 1206 spanningtree protocol.•••For now this is identical to 1205 but changes will be happening soon.
| Sadie Powell | 2020-12-04 | 1 | -2/+5 |
| * | Rip out compatibility code for the 2.0 protocol. | Sadie Powell | 2020-05-20 | 1 | -10/+1 |
| * | Merge branch 'insp3' into master. | Sadie Powell | 2020-05-05 | 1 | -1/+1 |
| |\ |
|
| | * | Fixes by misspell-fixer | InspIRCd Robot | 2020-04-21 | 1 | -1/+1 |
| * | | Switch the spanningtree module from reference<> to std::shared_ptr<>. | Sadie Powell | 2020-04-13 | 1 | -2/+2 |
| * | | Improve storage of module description, flags, and link data. | Sadie Powell | 2020-04-11 | 1 | -1/+0 |
| * | | Use C++11 inline initialisation for class members. | Sadie Powell | 2020-02-06 | 1 | -2/+2 |
| * | | Merge branch 'insp3' into master. | Sadie Powell | 2020-01-17 | 1 | -5/+10 |
| |\| |
|
| | * | Update copyright headers. | InspIRCd Robot | 2020-01-11 | 1 | -4/+9 |
| | * | Add an event provider class for the event/messagetag event. | Sadie Powell | 2020-01-03 | 1 | -1/+1 |
| * | | Merge branch 'insp3' into master. | Sadie Powell | 2020-01-01 | 1 | -0/+4 |
| |\| |
|
| | * | Mark messages from ulined clients with the inspircd.org/service tag. | Peter Powell | 2019-12-29 | 1 | -0/+4 |
| * | | Merge branch 'insp3' into master. | Sadie Powell | 2019-11-13 | 1 | -0/+1 |
| |\| |
|
| | * | SQuit all servers when a shutdown happens. | Peter Powell | 2019-10-17 | 1 | -0/+1 |
| * | | Merge branch 'insp3' into master. | Sadie Powell | 2019-07-27 | 1 | -0/+7 |
| |\| |
|
| | * | Add an event for adding tags to S2S messages. | Peter Powell | 2019-07-19 | 1 | -0/+7 |
| * | | Merge branch 'insp3' into master. | Sadie Powell | 2019-07-16 | 1 | -4/+19 |
| |\| |
|
| | * | Split ServerEventListener into {Broadcast,Link,Sync}EventListener.•••There is no reason to have these events in one big handler and it
causes unnecessary event hooks to be created by having them like
this.
The ServerEventListener class still exists for compatibility
| Peter Powell | 2019-07-15 | 1 | -4/+16 |
| | * | Fix msgid inconsistencies with TAGMSG•••Also fixes accidentally copying incoming tags on TAGMSG when sending to
other users
| linuxdaemon | 2019-06-22 | 1 | -0/+3 |
| * | | Merge branch 'insp3' into master. | Sadie Powell | 2019-05-15 | 1 | -13/+23 |
| |\| |
|
| | * | Add an enumeration for known protocol versions. | Peter Powell | 2019-05-14 | 1 | -9/+23 |
| | * | Replace ModuleSpanningTree::TimeToStr with InspIRCd::DurationStr. | Peter Powell | 2019-05-14 | 1 | -4/+0 |
| | * | Merge branch 'insp20' into insp3. | Peter Powell | 2019-05-02 | 1 | -1/+1 |
| | |\ |
|
| | | * | Update documentation links. | Peter Powell | 2019-04-26 | 1 | -1/+1 |
| * | | | Merge branch 'insp3' into master. | Sadie Powell | 2019-03-30 | 1 | -0/+4 |
| |\| | |
|
| | * | | Generate the ssl_cert metadata before bursting a connecting user. | Peter Powell | 2019-03-14 | 1 | -0/+4 |
| * | | | Replace the override macro with the override keyword. | Sadie Powell | 2019-01-25 | 1 | -32/+32 |
| |/ / |
|
| * | | Fix message tags not being broadcast across the network. | Peter Powell | 2019-01-02 | 1 | -0/+3 |
| * | | 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.
| Peter Powell | 2018-12-12 | 1 | -2/+2 |
| * | | Amend OnPostCommand to specify whether the command is loopcalled.•••This restores previous behaviour which was lost when the original
line parameter was removed.
| Peter Powell | 2018-09-11 | 1 | -1/+1 |
| * | | Implement IRCv3 message tag support.•••Co-authored-by: Attila Molnar <attilamolnar@hush.com>
| Peter Powell | 2018-08-13 | 1 | -1/+1 |
| * | | Convert AWAY to use cross-module events and clean up slightly.•••OnSetAway has been replaced with four events. OnUserPreAway and
OnUserPreBack can be used to deny an away state change and/or
change the away message of a local user. OnUserAway and OnUserBack
allow modules to be notified that a user's away state has changed.
| Peter Powell | 2018-08-12 | 1 | -2/+6 |
| * | | Remove the original line parameter of On{Pre,Post}Command.•••In the brave new world of message tags and alternate wire formats
this is no longer something that is appropriate to expose.
In reality it was only ever used by m_alias which now reconstitutes
the command name and parameters into a RFC 1459-style message for
whatever it needs to do.
| Peter Powell | 2018-08-10 | 1 | -2/+2 |
| * | | Replace most usages of "name" with "real" or "real name". | Peter Powell | 2018-07-30 | 1 | -1/+1 |
| * | | Replace most usages of "GECOS" with "real" or "real name". | Peter Powell | 2018-07-30 | 1 | -1/+1 |
| * | | Use CommandBase::Params instead of std::vector<std::string>.•••This is presently a typedef but will soon be replaced with a class
that encapsulates both tags and parameters.
| Peter Powell | 2018-07-26 | 1 | -7/+7 |
| * | | Move OnStats from the core to a cross-module event.•••Some core code still exists in the XLine system but this will be
replaced when the XLine system is replaced later.
| Peter Powell | 2018-04-08 | 1 | -1/+2 |
| * | | Rework message handling.•••- Move all message-related types to their own header to make moving
them to a cross-module events easier.
- Rename OnUserMessage to OnUserPostMessage.
- Rename OnText to OnUserMessage.
- Replace the dest, target_type, and status parameters with the
MessageTarget class.
- Replace the text, exempt_list, and msgtype parameters with the
MessageDetails struct.
- Add echooriginal and originaltext to the MessageDetails struct
to allow spam filtering to not be broken by cap echo-message.
| Peter Powell | 2018-01-06 | 1 | -1/+1 |
| * | | Merge tag 'v2.0.25' into master. | Peter Powell | 2017-11-12 | 1 | -1/+1 |
| |\| |
|
| | * | Update wiki links to use HTTPS and point to the correct pages.•••When we release 3.0 these links will break as they will point to
the pages for 3.0 rather than 2.0.
| Peter Powell | 2017-10-15 | 1 | -1/+1 |
| | * | m_spanningtree Rebuild serverlist and sidlist when receiving a specific Request•••Issue #923
| Attila Molnar | 2014-10-13 | 1 | -0/+1 |
| * | | Add CXX11_OVERRIDE to overridden members that lack it.•••This fixes a ton of warnings when building on compilers that
default to C++11 or newer.
| Peter Powell | 2017-07-12 | 1 | -2/+2 |
| * | | m_spanningtree Refuse topic changes that would result in desync•••This is a workaround until the protocol is updated
| Attila Molnar | 2016-09-02 | 1 | -0/+1 |
| * | | m_spanningtree Remove ModuleSpanningTree::RemoteMessage()•••This method is no longer used, replacement is User::WriteRemoteNotice()
| Attila Molnar | 2016-03-01 | 1 | -4/+0 |
| * | | Introduce Stats::Context, pass it to the OnStats hook and switch all code to it | Attila Molnar | 2016-02-25 | 1 | -1/+1 |