| Commit message (Expand) | Author | Age | Files | Lines |
| * | Merge branch 'insp4' into master. | Sadie Powell | 2024-08-04 | 1 | -1/+1 |
| |\ |
|
| | * | Update copyright headers. | InspIRCd Robot | 2024-08-03 | 1 | -1/+1 |
| * | | Merge branch 'insp4' into master. | Sadie Powell | 2024-07-24 | 1 | -12/+0 |
| |\| |
|
| | * | Update all usages of ProtocolServer to use Server. | Sadie Powell | 2024-07-24 | 1 | -9/+3 |
| |/ |
|
| * | Update copyright headers. | InspIRCd Robot | 2024-06-07 | 1 | -1/+2 |
| * | Fix casing of metadata in function and event names.•••Metadata is one word not two so it shouldn't be capitalised like this.
| Sadie Powell | 2023-05-30 | 1 | -3/+3 |
| * | Convert various enums to strongly typed scoped enums. | Sadie Powell | 2023-01-22 | 1 | -4/+4 |
| * | Merge branch 'insp3' into master. | Sadie Powell | 2023-01-01 | 1 | -1/+1 |
| |\ |
|
| | * | Update copyright headers. | InspIRCd Robot | 2022-12-30 | 1 | -1/+1 |
| * | | More const correctness work. | Sadie Powell | 2022-12-08 | 1 | -4/+4 |
| * | | Fix some types which were missed when making stuff final. | Sadie Powell | 2022-10-30 | 1 | -1/+1 |
| * | | Switch from NULL to nullptr. | Sadie Powell | 2022-07-22 | 1 | -2/+2 |
| * | | Slim down the protocol interface for sending metadata. | Sadie Powell | 2022-01-31 | 1 | -17/+3 |
| * | | Abolish the infernal space before accessibility keywords. | Sadie Powell | 2022-01-25 | 1 | -3/+3 |
| * | | Added -Wshorten-64-to-32 and fixed all warnings. | Dominic Hamon | 2021-05-30 | 1 | -3/+3 |
| * | | Fix a ton of pedantic compiler warnings. | Sadie Powell | 2021-04-04 | 1 | -3/+3 |
| * | | Add support for syncing metadata set on memberships.•••No compat logic is required here as existing servers will just drop
the unknown METADATA message when they can't find the target.
| Sadie Powell | 2021-04-01 | 1 | -0/+7 |
| * | | Merge branch 'insp3' into master. | Sadie Powell | 2021-03-05 | 1 | -2/+0 |
| |\| |
|
| | * | Fix a bunch of really obvious unnecessary includes. | Sadie Powell | 2021-03-05 | 1 | -2/+0 |
| * | | Clean up a bunch of contructors and destructors. | Sadie Powell | 2020-11-01 | 1 | -1/+1 |
| * | | Merge branch 'insp3' into master. | Sadie Powell | 2020-05-05 | 1 | -2/+2 |
| |\| |
|
| | * | Fixes by misspell-fixer | InspIRCd Robot | 2020-04-21 | 1 | -2/+2 |
| * | | Merge branch 'insp3' into master. | Sadie Powell | 2020-01-17 | 1 | -1/+5 |
| |\| |
|
| | * | Update copyright headers. | InspIRCd Robot | 2020-01-11 | 1 | -1/+5 |
| * | | Merge branch 'insp3' into master. | Sadie Powell | 2019-12-08 | 1 | -20/+0 |
| |\| |
|
| | * | Deprecate Send{Channel,User}Notice; use SendMessage instead. | Peter Powell | 2019-11-17 | 1 | -2/+2 |
| |/ |
|
| * | Textual improvements and fixes such as typos, casing, etc. (#1612) | Robby | 2019-04-28 | 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 | -4/+2 |
| * | Change ServerInfo::gecos to description | genius3000 | 2018-04-11 | 1 | -1/+1 |
| * | Remove unused ProtocolInterface::SendTopic() | Attila Molnar | 2016-03-30 | 1 | -6/+0 |
| * | Remove ProtocolInterface::PushToClient() | Attila Molnar | 2016-03-30 | 1 | -6/+0 |
| * | Remove ProtocolInterface::SendMode() | Attila Molnar | 2014-09-03 | 1 | -9/+0 |
| * | Add ProtocolInterface::BroadcastEncap() and infrastructure for manually forwa... | Attila Molnar | 2014-01-26 | 1 | -0/+10 |
| * | ProtocolInterface::SendEncapsulatedData() changes•••- Pass command name and destination as real parameters
- Allow callers to specify the command source
- Send a SID instead of a server name if the target is a single server
| Attila Molnar | 2014-01-26 | 1 | -5/+8 |
| * | Change type of snomask parameter to char in ProtocolInterface::SendSNONotice() | Attila Molnar | 2014-01-04 | 1 | -1/+1 |
| * | Pass an interface to the OnSync hooks•••Remove Module::ProtoSendMetaData()
| attilamolnar | 2013-09-13 | 1 | -0/+12 |
| * | Split ProtocolInterface::SendMetaData() into multiple functions | attilamolnar | 2013-09-13 | 1 | -3/+16 |
| * | Hide all symbols that aren't exported explicitly•••In addition to reducing the sizes of all binaries this also helps the optimizer
| attilamolnar | 2013-09-08 | 1 | -1/+1 |
| * | Clean up the protocol interface | attilamolnar | 2013-08-25 | 1 | -23/+30 |
| * | Introduce ModeProcessFlags, can be passed to ModeParser::Process() to indicat...•••Change ProtocolInterface::SendMode() to take source and destination parameters, and call it from the mode parser whenever the mode change is global
This deprecates the ambiguous InspIRCd::SendMode() and InspIRCd::SendGlobalMode() interface (the latter sent mode changes originating from local users twice, etc.)
| attilamolnar | 2013-06-13 | 1 | -18/+4 |
| * | Tidy up source files:•••- Use #pragma once instead of include guards.
- Move header files in src/modules to include/modules.
- Fixed various spacing issues.
| Peter Powell | 2013-04-12 | 1 | -5/+1 |
| * | Fix Doxygen syntax errors. | Peter Powell | 2012-07-05 | 1 | -1/+2 |
| * | Replace copyright headers with headers granting specific authors copyright | Robby- | 2012-04-19 | 1 | -8/+15 |
| * | Fixes for bug #12 | Justin Crawford | 2012-04-14 | 1 | -2/+2 |
| * | Allow SASL messages to be targeted at the services server•••<sasl target="services.example.net"> will avoid broadcasting all
authentication messages across the network, which improves security.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12494 e03df62e-2008-0410-955e-edbf42e46eb7
| danieldg | 2010-02-18 | 1 | -1/+2 |
| * | ...because every now and again, i have to do a massive commit.•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12248 e03df62e-2008-0410-955e-edbf42e46eb7
| brain | 2010-01-11 | 1 | -1/+1 |
| * | Move MODENOTICE command to a command module•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11991 e03df62e-2008-0410-955e-edbf42e46eb7
| danieldg | 2009-11-03 | 1 | -6/+0 |
| * | Remove more classbase•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11905 e03df62e-2008-0410-955e-edbf42e46eb7
| danieldg | 2009-10-18 | 1 | -1/+1 |
| * | Less CoreExport.. Too much of a good thing..•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11847 e03df62e-2008-0410-955e-edbf42e46eb7
| peavey | 2009-10-11 | 1 | -4/+4 |
| * | More CoreExport, brought the errors down, but some still persist.•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11846 e03df62e-2008-0410-955e-edbf42e46eb7
| peavey | 2009-10-11 | 1 | -4/+4 |