| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Hide User#host and User#dhost and use accessors to modify them. | 2017-10-28 | 1 | -3/+3 | |
| | | | | | | This removes the need to invalidate the cache after changing a user's hostname. | ||||
| * | Add stdalgo::string::equalsci and use it instead of irc::string for ↵ | 2016-08-22 | 1 | -3/+3 | |
| | | | | | case-insensitive comparison | ||||
| * | Merge insp20 | 2016-08-17 | 1 | -12/+26 | |
| |\ | |||||
| | * | Fix dccallow to work with files with spaces in their names | 2016-02-18 | 1 | -12/+26 | |
| | | | |||||
| * | | Convert WriteNumeric() calls to pass the parameters of the numeric as method ↵ | 2016-02-25 | 1 | -15/+15 | |
| | | | | | | | | | parameters | ||||
| * | | m_dccallow Call WriteNumeric() in a loop when displaying help | 2016-02-24 | 1 | -19/+25 | |
| | | | |||||
| * | | Merge insp20 | 2016-02-22 | 1 | -0/+10 | |
| |\| | |||||
| | * | m_dccallow Add config option to control max entries on a list | 2016-02-12 | 1 | -1/+10 | |
| | | | | | | | | | Default to 20 | ||||
| * | | Remove some IS_SERVER() checks | 2015-12-07 | 1 | -1/+1 | |
| | | | | | | | | | | | - InspIRCd::FindUUID() and FindNick() no longer return FakeUsers so checking the user returned from those methods is needless - m_dccallow is calling FindNickOnly() so it had the check needlessly | ||||
| * | | Merge insp20 | 2015-04-20 | 1 | -0/+6 | |
| |\| | |||||
| | * | m_dccallow Validate tokens before use | 2015-04-16 | 1 | -0/+6 | |
| | | | |||||
| * | | Specify which Extensible subclass an ExtensionItem is valid for | 2015-01-18 | 1 | -1/+1 | |
| | | | |||||
| * | | Reduce std::string::substr() usage | 2015-01-10 | 1 | -1/+1 | |
| | | | | | | | | | substr() returns a new string while erase() and assign() modify the existing one | ||||
| * | | Add stdalgo::erase() and use it to simplify code | 2014-11-01 | 1 | -5/+1 | |
| | | | |||||
| * | | Merge insp20 | 2014-07-25 | 1 | -2/+2 | |
| |\| | |||||
| | * | Correct the syntax messages of a few modules. | 2014-04-12 | 1 | -2/+2 | |
| | | | |||||
| * | | Merge insp20 | 2014-01-21 | 1 | -0/+4 | |
| |\| | |||||
| | * | m_dccallow Increase penalty for /DCCALLOW help | 2014-01-19 | 1 | -0/+4 | |
| | | | |||||
| * | | Make various self contained methods static. | 2013-12-15 | 1 | -1/+1 | |
| | | | | | | | | | | | - InspIRCd::IsValidMask - InspIRCd::TimeString | ||||
| * | | Use WriteNumeric() everywhere we send numerics and include the user's nick ↵ | 2013-11-12 | 1 | -32/+32 | |
| | | | | | | | | | automatically | ||||
| * | | Change allocation of a few services to make use of auto registration | 2013-09-08 | 1 | -23/+17 | |
| | | | |||||
| * | | Automatically register ServiceProviders created by modules | 2013-09-08 | 1 | -1/+0 | |
| | | | |||||
| * | | Replace OnRehash() with ReadConfig() that is called on boot, on module load ↵ | 2013-08-30 | 1 | -7/+1 | |
| | | | | | | | | | | | | | and on rehash This eliminates the need for calling OnRehash() in init() | ||||
| * | | Automatically attach modules to events | 2013-08-04 | 1 | -2/+0 | |
| | | | |||||
| * | | Remove $Core and $Mod* comments apart from $ModDep. | 2013-07-04 | 1 | -2/+0 | |
| | | | |||||
| * | | Merge insp20 | 2013-06-06 | 1 | -1/+1 | |
| |\| | |||||
| | * | Remove unnecessary string copies and dead code | 2013-06-05 | 1 | -1/+1 | |
| | | | |||||
| * | | Remove OnUserPreNotice and OnUserNotice hooks, add MessageType argument to ↵ | 2013-05-20 | 1 | -7/+2 | |
| | | | | | | | | | | | | | OnUserMessage and OnUserPreMessage All modules (except m_nonotice) that perform filtering on messages have common logic for handling PRIVMSGs and NOTICEs and most of them run the exact same code in both cases | ||||
| * | | Tidy up keywords on module methods. | 2013-05-15 | 1 | -9/+9 | |
| | | | | | | | | | | | - Remove virtual keyword from a ton of methods which don't need it. - Add override keyword to a ton of methods which do need it. | ||||
| * | | Add method for writing server notices. | 2013-05-14 | 1 | -7/+7 | |
| | | | | | | | | | | | | | | | | | | | This allows us to send a server notice to a user without worrying about whether they are registered or not. If a user receives a server notice and they are not registered then the nickname field will contain an asterisk instead of their nick name. | ||||
| * | | Convert InspIRCd::Duration() to be static | 2013-04-03 | 1 | -3/+3 | |
| | | | |||||
| * | | Whitespace and empty destructor removal, minor coding style changes | 2013-04-01 | 1 | -1/+1 | |
| |/ | |||||
| * | Register all commands, modes and extensions using AddService() | 2012-12-02 | 1 | -2/+2 | |
| | | | | | AddService() throws an exception if an item cannot be registered, modules no longer need to worry about AddMode() etc. failing | ||||
| * | Dynamically determine the size of the eventlist[] passed to Attach() | 2012-12-02 | 1 | -1/+1 | |
| | | | | | m_sqlauth was attached to I_OnUserDisconnect but didn't provide a handler for it, remove | ||||
| * | Attach to events and register services in init() | 2012-12-02 | 1 | -1/+5 | |
| | | |||||
| * | Remove usage of the deprecated ConfigReader | 2012-11-12 | 1 | -12/+8 | |
| | | |||||
| * | Remove superfluous std::string()s | 2012-10-12 | 1 | -1/+1 | |
| | | |||||
| * | m_callerid, m_dccallow Use OnUserPostNick hook instead of OnUserPreNick | 2012-07-01 | 1 | -3/+2 | |
| | | |||||
| * | m_callerid, m_dccallow Fix crash caused by allowing unregistered users and ↵ | 2012-07-01 | 1 | -1/+1 | |
| | | | | | SIDs to be on callerid/dccallow lists | ||||
| * | m_dccallow Fix unsafe iteration | 2012-07-01 | 1 | -5/+9 | |
| | | |||||
| * | Module description updates | 2012-05-30 | 1 | -2/+2 | |
| | | |||||
| * | Replace copyright headers with headers granting specific authors copyright | 2012-04-19 | 1 | -8/+20 | |
| | | |||||
| * | Use FindNickOnly in a few commands to prevent enumerating users via UID walking | 2010-04-02 | 1 | -1/+1 | |
| | | |||||
| * | ...because every now and again, i have to do a massive commit. | 2010-01-11 | 1 | -1/+1 | |
| | | | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12248 e03df62e-2008-0410-955e-edbf42e46eb7 | ||||
| * | Remove VF_SERVICEPROVIDER, prevent heap allocation of ConfigReader | 2009-10-18 | 1 | -13/+9 | |
| | | | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11904 e03df62e-2008-0410-955e-edbf42e46eb7 | ||||
| * | Make classbase and refcountbase uncopyable; expand comments on their ↵ | 2009-10-17 | 1 | -2/+2 | |
| | | | | | | | indended uses git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11888 e03df62e-2008-0410-955e-edbf42e46eb7 | ||||
| * | Remove dummy API_VERSION from Version constructor | 2009-10-17 | 1 | -1/+1 | |
| | | | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11887 e03df62e-2008-0410-955e-edbf42e46eb7 | ||||
| * | Move static map of extensions into ServerInstance, add const-correctness | 2009-10-14 | 1 | -1/+1 | |
| | | | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11873 e03df62e-2008-0410-955e-edbf42e46eb7 | ||||
| * | Remove InspIRCd* parameters and fields | 2009-09-26 | 1 | -4/+4 | |
| | | | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11763 e03df62e-2008-0410-955e-edbf42e46eb7 | ||||
| * | Describe module purpose in /MODULES output | 2009-09-22 | 1 | -1/+1 | |
| | | | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11757 e03df62e-2008-0410-955e-edbf42e46eb7 | ||||
