| Commit message (Expand) | Author | Age | Files | Lines |
| * | Update copyright headers. | InspIRCd Robot | 2020-04-24 | 1 | -0/+1 |
| * | Fixes by misspell-fixer | InspIRCd Robot | 2020-04-21 | 1 | -1/+1 |
| * | Update the module descriptions using mkversion. | Sadie Powell | 2020-04-10 | 1 | -1/+1 |
| * | Add back the prefix on a server target message.•••The prefix is dropped when building the message. We add it back here
so that the remote servers can recognize it as a server target.
| Matt Schatz | 2020-03-31 | 1 | -2/+2 |
| * | Fix various documentation and formatting issues. | Sadie Powell | 2020-03-30 | 1 | -1/+1 |
| * | Add HasFd to EventHandler and switch code to use it. | Sadie Powell | 2020-02-15 | 1 | -5/+1 |
| * | Update copyright headers. | InspIRCd Robot | 2020-01-11 | 1 | -4/+8 |
| * | Add an event provider class for the event/messagetag event. | Sadie Powell | 2020-01-03 | 1 | -1/+1 |
| * | Mark messages from ulined clients with the inspircd.org/service tag. | Peter Powell | 2019-12-29 | 1 | -0/+1 |
| * | SQuit all servers when a shutdown happens. | Peter Powell | 2019-10-17 | 1 | -0/+7 |
| * | Add whether the server split with an error to OnServerSplit. | Peter Powell | 2019-09-23 | 1 | -1/+1 |
| * | Add the server id to the Server class. | Peter Powell | 2019-09-23 | 1 | -1/+1 |
| * | Add {To,From}{Human,Internal,Network} to ExtensionItem.•••Also, deprecate the old SerializeFormat/serialize/unserialise API.
| Peter Powell | 2019-08-07 | 1 | -1/+1 |
| * | Add an event for adding tags to S2S messages. | Peter Powell | 2019-07-19 | 1 | -1/+1 |
| * | Get rid of CommandBuilder::push_back. | Peter Powell | 2019-07-19 | 1 | -18/+18 |
| * | spanningtree: Never send a message to a raw UUID in CmdBuilder. | Peter Powell | 2019-07-19 | 1 | -3/+3 |
| * | 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 | -2/+4 |
| * | Replace large if/else blocks for target.type with switches (#1668). | linuxdaemon | 2019-06-24 | 1 | -21/+27 |
| * | Fix msgid inconsistencies with TAGMSG•••Also fixes accidentally copying incoming tags on TAGMSG when sending to
other users
| linuxdaemon | 2019-06-22 | 1 | -0/+37 |
| * | Add irc::sockets::isunix for checking if a file is a UNIX socket. | Peter Powell | 2019-05-29 | 1 | -4/+1 |
| * | Replace ModuleSpanningTree::TimeToStr with InspIRCd::DurationStr. | Peter Powell | 2019-05-14 | 1 | -14/+0 |
| * | Fix linking servers with UNIX sockets.•••- Remove the address/port overloads of BeginConnect.
- Change DoConnect to take a sockaddrs instead of an address/port.
| Peter Powell | 2019-04-15 | 1 | -17/+15 |
| * | Generate the ssl_cert metadata before bursting a connecting user. | Peter Powell | 2019-03-14 | 1 | -0/+5 |
| * | Fix sending the entire VERSION output as a single parameter.•••Closes #1560.
| Peter Powell | 2019-01-19 | 1 | -2/+6 |
| * | Fix message tags not being broadcast across the network. | Peter Powell | 2019-01-02 | 1 | -1/+4 |
| * | Fix not propagating rehashes properly across the network.•••The REHASH command is not routed like a normal command. When a
rehash that needs to be forwarded is received the local server
forwards it indirectly by calling the local REHASH handler which
then calls the OnPreRehash hook. This results in the OnPreRehash
hook being called whilst loopCall is true.
The bug which this check was added to fix seems to no longer be
present so no alternate fix for that seems necessary.
Closes #1537.
| Peter Powell | 2018-12-17 | 1 | -3/+0 |
| * | Implement IRCv3 message tag support.•••Co-authored-by: Attila Molnar <attilamolnar@hush.com>
| Peter Powell | 2018-08-13 | 1 | -3/+3 |
| * | 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 | -4/+9 |
| * | 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 | -2/+2 |
| * | 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 | -3/+3 |
| * | Fix building on Windows. | Peter Powell | 2018-07-24 | 1 | -0/+2 |
| * | Initial support for listening on UNIX socket endpoints. | Peter Powell | 2018-07-18 | 1 | -1/+7 |
| * | Add the family() member to the sockaddrs union. | Peter Powell | 2018-07-18 | 1 | -1/+1 |
| * | 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/+4 |
| * | 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 | -11/+11 |
| * | Rename the spanningtree module header to server.•••In the future we will have server linking modules that are not the
spanningtree module.
| Peter Powell | 2017-12-03 | 1 | -3/+3 |
| * | Fix a ton of -Wsign-conversion warnings. | Peter Powell | 2017-11-17 | 1 | -4/+4 |
| * | Remove module file extensions from user-visible messages. | Peter Powell | 2017-08-27 | 1 | -1/+1 |
| * | Purge code for Windows XP and MSVC pre-2015. | Peter Powell | 2017-08-06 | 1 | -1/+1 |
| * | 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/+13 |
| * | m_spanningtree Drop unnecessary c_str() call when passing Link::Name to metho... | Attila Molnar | 2016-08-26 | 1 | -1/+1 |
| * | spanningtree: use bindip aftype as a hint for dns lookup type | Adam | 2016-08-25 | 1 | -1/+9 |
| * | m_spanningtree Use ASCII case insensitive map for matching server names | Attila Molnar | 2016-08-22 | 1 | -3/+3 |
| * | m_spanningtree Change type of Link::Name to std::string•••Switch to stdalgo::string::equalsci()
| Attila Molnar | 2016-08-22 | 1 | -2/+2 |
| * | Add StreamSocket::GetModHook() for obtaining the IOHook belonging to a given ...•••Use it to simplify logic in all modules using or providing IOHooks
| Attila Molnar | 2016-08-08 | 1 | -2/+2 |
| * | m_spanningtree Call the OnServerSplit hook from the OnUnloadModule() handler ... | Attila Molnar | 2016-04-25 | 1 | -0/+16 |
| * | m_spanningtree Remove PUSH handler | Attila Molnar | 2016-03-30 | 1 | -1/+1 |
| * | m_spanningtree Add NUM command handler | Attila Molnar | 2016-03-29 | 1 | -1/+1 |
| * | m_spanningtree Remove ModuleSpanningTree::RemoteMessage()•••This method is no longer used, replacement is User::WriteRemoteNotice()
| Attila Molnar | 2016-03-01 | 1 | -13/+0 |