Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-07-22 | Fix some regressions in sending tags between servers. | Peter Powell | |
2019-07-19 | Add an event for adding tags to S2S messages. | Peter Powell | |
2019-07-19 | Get rid of CommandBuilder::push_back. | Peter Powell | |
2019-07-19 | spanningtree: Never send a message to a raw UUID in CmdBuilder. | Peter Powell | |
2019-07-15 | Split ServerEventListener into {Broadcast,Link,Sync}EventListener. | Peter Powell | |
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 | |||
2019-07-04 | Fix building on Windows. | Peter Powell | |
This regression was introduced by #1659. This distinction is only relevant on Windows so this should not affect non-Windows platforms. | |||
2019-06-24 | Replace large if/else blocks for target.type with switches (#1668). | linuxdaemon | |
2019-06-22 | Fix msgid inconsistencies with TAGMSG | linuxdaemon | |
Also fixes accidentally copying incoming tags on TAGMSG when sending to other users | |||
2019-06-07 | Replace all abstract usages of his/he/her with they/their/it. | Peter Powell | |
2019-06-07 | CoreExport for CommandSave. fixes #1635 | Ben Harris | |
2019-05-29 | Add irc::sockets::isunix for checking if a file is a UNIX socket. | Peter Powell | |
2019-05-15 | Fix space separation for CAPAB module list | linuxdaemon | |
2019-05-14 | Add an enumeration for known protocol versions. | Peter Powell | |
2019-05-14 | If a parent server is hidden then also hide its child servers. | Peter Powell | |
This should fix #851. | |||
2019-05-14 | Fix an unnecessary string copy when reading the <link> tags. | Peter Powell | |
2019-05-14 | Replace ModuleSpanningTree::TimeToStr with InspIRCd::DurationStr. | Peter Powell | |
2019-05-09 | Delete some obsolete comments. | Peter Powell | |
2019-05-02 | Merge branch 'insp20' into insp3. | Peter Powell | |
2019-04-28 | Textual improvements and fixes such as typos, casing, etc. (#1612) | Robby | |
2019-04-28 | m_spanningtree: Parse and copy message tags for all cmds | linuxdaemon | |
Don't ignore message tags on ServerCommands, and avoid creating duplicate CommandBase::Params instances | |||
2019-04-28 | m_spanningtree: Ensure tags are sent in forwarded cmds | linuxdaemon | |
When a user (U1) sends a PRIVMSG to a server (S1), which sends it to S2, which finally sends it to S3 to send to U2, S2 doesn't send the tags it received on the command from S1 to S3. | |||
2019-04-26 | Update documentation links. | Peter Powell | |
2019-04-25 | Fix broken linking over IPv4 on IPv6 capable systems. | Peter Powell | |
If no bind address was specified then one would be created which had an incompatible address family to the address that the server was trying to connect to. | |||
2019-04-18 | Remove m_silence pending a complete rewrite. | Peter Powell | |
2019-04-15 | Fix linking servers with UNIX sockets. | Peter Powell | |
- Remove the address/port overloads of BeginConnect. - Change DoConnect to take a sockaddrs instead of an address/port. | |||
2019-03-20 | Strip message tags correctly in the 1202 spanningtree compat layer. | Peter Powell | |
2019-03-14 | Generate the ssl_cert metadata before bursting a connecting user. | Peter Powell | |
2019-02-19 | Implement support for IRCv3 client-to-client tags. | Peter Powell | |
2019-02-18 | Improve support for wildcards in <link:name>. | Peter Powell | |
Closes #1569. | |||
2019-02-18 | Start using DurationString() in X-line additions and | Matt Schatz | |
a few other modules where it fits better than just showing seconds. | |||
2019-02-18 | Various text improvements: consistency, syntax, help and doc updates/fixes. | Robby | |
2019-01-24 | Remove trailing whitespace from various source files. | Peter Powell | |
2019-01-24 | Add the reason to xline removal notices. (#1545) | Matt Schatz | |
Show the reason in manual xline removal SNOTICEs, just like expiry SNOTICEs do. This modifies XLineManager::DelLine() to require another string reference passed to it. Requested by @Robby-. | |||
2019-01-24 | Add translation for casemapping between 2.0/3.0 (#1544) | linuxdaemon | |
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-23 | Fix away broadcast logic (#1561) | linuxdaemon | |
2019-01-22 | Rename OnClientProtocolProcessTag to OnProcessTag. | Peter Powell | |
2019-01-19 | Fix sending the entire VERSION output as a single parameter. | Peter Powell | |
Closes #1560. | |||
2019-01-09 | Improve X-line text consistency. | Matt Schatz | |
- Change any "-Line", ":Line", or "*line" to "-line" throughout the X-line code, comments, and documentation. - Add periods to the end of some notices. - Correct a typo in the Q-line code comments. - Update the filter module documentation (shun addition). Co-authored-by: Robby <robby@chatbelgie.be> | |||
2019-01-03 | Improve the spanningtree "unknown command" error message. | Peter Powell | |
2019-01-02 | Fix a crash when trying to use ROUTE_TYPE_MESSAGE with no message. | Peter Powell | |
2019-01-02 | Fix message tags not being broadcast across the network. | Peter Powell | |
2019-01-02 | Strip message tags when talking with 1202 protocol servers. | Peter Powell | |
2019-01-02 | Remove spanningtree check for lines sent without a source. | Peter Powell | |
We don't send any of these anymore. | |||
2018-12-20 | Fix thinking that 1202 protocol servers have not finished bursting. | Peter Powell | |
A server introduction is only a burst if all of the parent servers of it are not bursting. Fixes #1527. | |||
2018-12-17 | Fix not propagating rehashes properly across the network. | Peter Powell | |
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. | |||
2018-12-13 | Store durations as unsigned long not long in XLine and m_filter. | Peter Powell | |
2018-12-12 | Fix conversion issues by replacing ConvToInt with ConvToNum<T>. | Peter Powell | |
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 | Fix a crash when the core_oper module is not loaded. | Peter Powell | |
2018-10-28 | Also synchronise the prefix rank between servers. | Peter Powell | |
2018-10-27 | Fix a shadowing warning in the spanningtree module. | Peter Powell | |