aboutsummaryrefslogtreecommitdiff
path: root/include/extensible.h
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright headers.Gravatar InspIRCd Robot2020-04-241-1/+1
|
* Fixes by misspell-fixerGravatar InspIRCd Robot2020-04-211-1/+1
|
* Fix various documentation and formatting issues.Gravatar Sadie Powell2020-03-301-3/+3
|
* Update copyright headers.Gravatar InspIRCd Robot2020-01-111-0/+3
|
* Implement serialisation of users.Gravatar Peter Powell2019-10-141-1/+9
| | | | | | This allows for various things which will be coming in the future. e.g. Transferring users to another server on upgrade.
* Free StringExtItem and SimpleExtItem values correctly.Gravatar Peter Powell2019-08-131-6/+3
|
* Convert LocalExtItem to a typedef and deprecate it.Gravatar Peter Powell2019-08-131-11/+5
|
* Convert all core ExtensionItem code away from {un,}serialize.Gravatar Peter Powell2019-08-071-8/+6
|
* Add {To,From}{Human,Internal,Network} to ExtensionItem.Gravatar Peter Powell2019-08-071-15/+35
| | | | Also, deprecate the old SerializeFormat/serialize/unserialise API.
* Document ExtensionItem better.Gravatar Peter Powell2019-08-071-12/+38
|
* Pass the Extensible container to ExtensionItem::free().Gravatar Peter Powell2018-08-121-5/+5
|
* Add the override keyword in places that it is missing.Gravatar Peter Powell2017-11-211-13/+13
| | | | GCCs warnings for this are much better than Clangs.
* Add CXX11_OVERRIDE to overridden members that lack it.Gravatar Peter Powell2017-07-121-1/+1
| | | | | This fixes a ton of warnings when building on compilers that default to C++11 or newer.
* Include stdint.h from inspircd.hGravatar Attila Molnar2016-02-251-2/+0
|
* Fix some whitespace issuesGravatar Attila Molnar2015-12-281-2/+2
|
* Merge branch 'master+serviceinit'Gravatar Attila Molnar2015-12-021-0/+4
|\
| * Implement ExtensionItem::RegisterService()Gravatar Attila Molnar2015-11-231-0/+4
| |
* | Add LocalIntExt and LocalStringExt::unserialize() for non-FORMAT_NETWORKGravatar Attila Molnar2015-11-261-0/+2
| |
* | Add ExtensionManager::GetExts()Gravatar Attila Molnar2015-11-261-0/+5
| |
* | Add typedef ExtensionManager::ExtMapGravatar Attila Molnar2015-11-261-1/+5
|/
* Specify which Extensible subclass an ExtensionItem is valid forGravatar Attila Molnar2015-01-181-6/+20
|
* Change type of some associative containers to their flat versions, including ↵Gravatar Attila Molnar2014-12-151-1/+1
| | | | Extensible storage
* Make it possible to customize how SimpleExtItem should delete itemsGravatar Attila Molnar2014-03-241-5/+9
|
* Add ParamModeBase and ParamMode, change all parameter modes to inherit from ↵Gravatar Attila Molnar2014-02-151-0/+1
| | | | | | | | | | ParamMode - Type of the extension used to store data is a template parameter - The extension is automatically unset when the mode is unset - Handlers inheriting from ParamMode have to provide OnSet() and SerializeParam(); may optionally provide OnUnset() - Transparently handle the case when OnSet() modifies the mode parameter - Remove Channel::custom_mode_params map; ask the mode handlers to serialize their parameters instead
* Replace DummyExtItem with a flag in ExtensibleGravatar Attila Molnar2014-02-101-0/+5
|
* Unset all extensions and the topic when lowering TS on a channelGravatar Attila Molnar2014-01-061-0/+5
|
* Tidy up source files:Gravatar Peter Powell2013-04-121-4/+1
| | | | | | - Use #pragma once instead of include guards. - Move header files in src/modules to include/modules. - Fixed various spacing issues.
* Throw an exception when attempting to register an extension with a name that ↵Gravatar attilamolnar2012-12-021-1/+1
| | | | | | already exists Previously this silently failed
* #include <stdint.h>, add header guard to extensible.hGravatar attilamolnar2012-07-061-0/+7
| | | | Fixes #102 reported by @kshade
* Replace copyright headers with headers granting specific authors copyrightGravatar Robby-2012-04-191-0/+19
|
* Use ServiceProvider for inter-module dependenciesGravatar danieldg2009-11-161-1/+1
| | | | | | | | | | | This will stop dependency chains from preventing module reloads when it is not actually needed; however, it removes some failsafes that will need to be reimplemented in order to avoid unmapped vtables. This deprecates Request as an inter-module signaling mechanism, although SQL still uses it. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12140 e03df62e-2008-0410-955e-edbf42e46eb7
* Add Inspircd::AddServicesGravatar danieldg2009-11-151-3/+1
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12135 e03df62e-2008-0410-955e-edbf42e46eb7
* Force heap allocation of refcountbase, create usecountbase for ↵Gravatar danieldg2009-10-251-1/+1
| | | | | | non-allocation reference counting git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11978 e03df62e-2008-0410-955e-edbf42e46eb7
* Move forward declarations to typedefs.hGravatar danieldg2009-10-241-3/+0
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11967 e03df62e-2008-0410-955e-edbf42e46eb7
* Maintain refcount of Module objects to complain about leaked pointersGravatar danieldg2009-10-191-1/+1
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11925 e03df62e-2008-0410-955e-edbf42e46eb7
* Fix implementation of reference to const, use reference counting for ↵Gravatar danieldg2009-10-191-5/+5
| | | | | | ExtensibleItem git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11924 e03df62e-2008-0410-955e-edbf42e46eb7
* Cull channels, warn when Extensible objects are not culled as they must beGravatar danieldg2009-10-181-0/+1
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11901 e03df62e-2008-0410-955e-edbf42e46eb7
* Some windows compile fixesGravatar danieldg2009-10-171-11/+0
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11891 e03df62e-2008-0410-955e-edbf42e46eb7
* Make classbase and refcountbase uncopyable; expand comments on their ↵Gravatar danieldg2009-10-171-0/+1
| | | | | | indended uses git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11888 e03df62e-2008-0410-955e-edbf42e46eb7
* Move static map of extensions into ServerInstance, add const-correctnessGravatar danieldg2009-10-141-28/+24
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11873 e03df62e-2008-0410-955e-edbf42e46eb7
* CoreExport changes, clean up DoHostCycle when users are exemptedGravatar danieldg2009-10-121-4/+4
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11856 e03df62e-2008-0410-955e-edbf42e46eb7
* Less CoreExport.. Too much of a good thing..Gravatar peavey2009-10-111-5/+5
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11847 e03df62e-2008-0410-955e-edbf42e46eb7
* More CoreExport.Gravatar peavey2009-10-111-1/+1
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11843 e03df62e-2008-0410-955e-edbf42e46eb7
* Fix warnings from BSD build and work around the failures of BSD makeGravatar danieldg2009-09-281-1/+10
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11771 e03df62e-2008-0410-955e-edbf42e46eb7
* Remove Extensible items from user, channel, and Membership on module unloadGravatar danieldg2009-09-151-1/+2
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11730 e03df62e-2008-0410-955e-edbf42e46eb7
* Add SerializeFormat for easier metadata formattingGravatar danieldg2009-09-131-10/+36
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11704 e03df62e-2008-0410-955e-edbf42e46eb7
* Change Extensible to use strongly typed entriesGravatar danieldg2009-09-131-0/+150
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11696 e03df62e-2008-0410-955e-edbf42e46eb7