summaryrefslogtreecommitdiff
path: root/include/modules.h
Commit message (Collapse)AuthorAgeFilesLines
* Replace remaining Request users with dynamic_referenceGravatar Daniel De Graaf2010-08-211-44/+0
|
* Remove ConfigReader (deprecated interface)Gravatar Daniel De Graaf2010-08-211-86/+0
|
* Change config reading hook for better error reportingGravatar Daniel De Graaf2010-08-211-12/+14
| | | | | This eliminates the OnRehash hook, and replaces it with ReadConfig which is called on boot, module load, and rehash.
* Change ModeHandler::AccessCheck to use PermissionDataGravatar Daniel De Graaf2010-08-181-1/+1
|
* Fix up invite checking code and add m_inviteextbanGravatar Jackmcbarn2010-08-161-1/+3
|
* Handle a null extensible in IS_USER/IS_CHANNELGravatar Daniel De Graaf2010-08-151-2/+2
|
* Replace dynamic_cast with faster explicit type markingGravatar Daniel De Graaf2010-08-141-1/+11
|
* Add m_opmoderated - channel mode +UGravatar Daniel De Graaf2010-08-131-2/+2
|
* Untagle the #include tree a bitGravatar Daniel De Graaf2010-08-081-7/+0
|
* Save umodes in addition to channel modesGravatar Daniel De Graaf2010-08-051-1/+2
|
* Persist metadata and modes across module reloadsGravatar Daniel De Graaf2010-08-051-2/+24
|
* Allow OnParameterMissing to fill in the missing parameterGravatar Daniel De Graaf2010-08-051-1/+1
|
* Add some comments, fix an uninitialized variableGravatar Daniel De Graaf2010-08-041-2/+17
|
* Set target user for a join to the joining userGravatar Daniel De Graaf2010-08-041-1/+1
|
* Change to use a permission-based OnCheckJoin hook instead of OnUserPreJoinGravatar Daniel De Graaf2010-08-041-57/+20
|
* Allow module init to be prioritized to allow dependency checkingGravatar Daniel De Graaf2010-08-031-1/+1
|
* Get rid of char* argument for channel nameGravatar Daniel De Graaf2010-08-031-1/+1
|
* Drop ConfigReader::EnumerateGravatar Daniel De Graaf2010-08-031-8/+0
|
* Change UserChanList to an intrusive-style linked listGravatar Daniel De Graaf2010-08-031-1/+1
|
* Split up API_VERSION numberGravatar Daniel De Graaf2010-08-031-19/+17
| | | | | | Since we can make API changes in multiple branches at the same time, a single sequence number is insufficient. Use two numbers to indicate the major version and API increment.
* Remove channel argument from OnSendWhoLineGravatar danieldg2010-08-031-2/+1
|
* Allow static initialization of dynamic_reference objectsGravatar Daniel De Graaf2010-08-031-3/+1
|
* PURE_STATIC fixes to use normal <module> tagsGravatar Daniel De Graaf2010-08-031-1/+4
|
* Remove some unused duplicate hooksGravatar Daniel De Graaf2010-08-031-28/+7
|
* SQL API v3Gravatar danieldg2010-08-031-0/+3
|
* Funnel access checks through the OnPermissionCheck hookGravatar Daniel De Graaf2010-08-031-9/+19
|
* Fix ModuleManager::SetPriority algorithm which did not handle ↵Gravatar Daniel De Graaf2010-08-031-10/+11
| | | | PRIORITY_BEFORE correctly
* Create OnChannelPermissionCheck hookGravatar Daniel De Graaf2010-08-031-55/+61
|
* Change protcol sync to not use opaque pointersGravatar Daniel De Graaf2010-08-031-25/+6
|
* dynamic_reference does not need a Creator pointerGravatar Daniel De Graaf2010-08-031-4/+9
|
* Restore <options:exemptchanops> with long namesGravatar Daniel De Graaf2010-08-031-7/+1
|
* New I/O hook APIGravatar Daniel De Graaf2010-08-031-51/+2
| | | | | | | | | This removes some pointless Module:: entries, uses the ServiceProvider lookup API for bind tags, and allows GnuTLS to use custom certificates per bind or link block using: <bind ssl="gnutls" ssl_cert="signed" ...> <ssl_cert name="signed" certfile="my.cert.pem" keyfile="my.key.pem">
* Remove useless return value from OnUserRegisterGravatar Daniel De Graaf2010-08-031-2/+1
|
* Change irc::modestacker to carry mode changes by IDGravatar Daniel De Graaf2010-08-031-32/+10
|
* Introduce ModeIDGravatar Daniel De Graaf2010-08-031-1/+1
|
* Kill m_spy, which was replaced by channels/auspex in 1.2 but kept alive for ↵Gravatar danieldg2010-02-191-11/+2
| | | | | | nostalgia git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12497 e03df62e-2008-0410-955e-edbf42e46eb7
* Defer module init on initial load for easier dependency checkingGravatar danieldg2010-02-161-1/+2
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12477 e03df62e-2008-0410-955e-edbf42e46eb7
* m_dnsbl updatesGravatar danieldg2010-02-141-2/+7
| | | | | | | Prevent user registration until dnsbl lookups are complete Allow DNSBLs to be checked using <connect:dnsbl> (MARK type) git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12454 e03df62e-2008-0410-955e-edbf42e46eb7
* Add random number generation functions to InspIRCd class.Gravatar danieldg2010-02-091-1/+1
| | | | | | | Default implementation uses libc random(), which can be better than rand(). If gnutls is loaded, gcrypt will be used to provide random numbers. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12404 e03df62e-2008-0410-955e-edbf42e46eb7
* Add OnSetConnectClass hook for use in adding requirements to connect classes ↵Gravatar danieldg2010-02-021-2/+8
| | | | | | (such as requiressl) git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12352 e03df62e-2008-0410-955e-edbf42e46eb7
* Add parameters to OnSendWhoLine hook, fixes "/who * o" returning opers with +HGravatar danieldg2010-02-011-1/+2
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12345 e03df62e-2008-0410-955e-edbf42e46eb7
* PreCommand/PostCommand are local-only hooksGravatar danieldg2010-01-181-2/+2
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12291 e03df62e-2008-0410-955e-edbf42e46eb7
* Add Module::init() for correct exception handling during hook registrationGravatar danieldg2010-01-171-3/+7
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12278 e03df62e-2008-0410-955e-edbf42e46eb7
* Verify cloak keys match during CAPAB negotiationGravatar danieldg2010-01-141-2/+4
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12258 e03df62e-2008-0410-955e-edbf42e46eb7
* Move revision information from Version object to a static symbolGravatar danieldg2010-01-141-5/+11
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12256 e03df62e-2008-0410-955e-edbf42e46eb7
* ...because every now and again, i have to do a massive commit.Gravatar brain2010-01-111-1/+1
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12248 e03df62e-2008-0410-955e-edbf42e46eb7
* Use ServiceProvider for inter-module dependenciesGravatar danieldg2009-11-161-114/+58
| | | | | | | | | | | 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
* Allow static build of inspircd without module supportGravatar danieldg2009-11-111-0/+24
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12083 e03df62e-2008-0410-955e-edbf42e46eb7
* Move MODENOTICE command to a command moduleGravatar danieldg2009-11-031-7/+0
| | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11991 e03df62e-2008-0410-955e-edbf42e46eb7
* Force heap allocation of refcountbase, create usecountbase for ↵Gravatar danieldg2009-10-251-3/+1
| | | | | | non-allocation reference counting git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11978 e03df62e-2008-0410-955e-edbf42e46eb7