| Commit message (Expand) | Author | Age | Files | Lines |
| * | Remove the original line parameter of On{Pre,Post}Command.•••In the brave new world of message tags and alternate wire formats
this is no longer something that is appropriate to expose.
In reality it was only ever used by m_alias which now reconstitutes
the command name and parameters into a RFC 1459-style message for
whatever it needs to do.
| Peter Powell | 2018-08-10 | 1 | -1/+1 |
| * | 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 | -3/+3 |
| * | Merge tag 'v2.0.26' into master. | Peter Powell | 2018-04-22 | 1 | -1/+1 |
| |\ |
|
| | * | Fix blank instead of empty PART message when a user is shunned | B00mX0r | 2018-04-11 | 1 | -1/+1 |
| * | | Move OnStats from the core to a cross-module event.•••Some core code still exists in the XLine system but this will be
replaced when the XLine system is replaced later.
| Peter Powell | 2018-04-08 | 1 | -2/+5 |
| * | | Add SHUN as a /filter action•••This resolves #483
| B00mX0r | 2017-12-21 | 1 | -39/+1 |
| * | | Add the override keyword in places that it is missing.•••GCCs warnings for this are much better than Clangs.
| Peter Powell | 2017-11-21 | 1 | -7/+7 |
| * | | Merge tag 'v2.0.25' into master. | Peter Powell | 2017-11-12 | 1 | -3/+7 |
| |\| |
|
| | * | Work around removing shuns on nicks when the nick is online. | Peter Powell | 2017-11-09 | 1 | -2/+6 |
| * | | Switch from std::stringstream to irc::spacesepstream.•••The latter is more suited to the things we have previously been
using std::stringstream for.
| Peter Powell | 2017-10-19 | 1 | -2/+2 |
| * | | Add CXX11_OVERRIDE to overridden members that lack it.•••This fixes a ton of warnings when building on compilers that
default to C++11 or newer.
| Peter Powell | 2017-07-12 | 1 | -1/+1 |
| * | | m_shun Add support for shunning CIDR masks•••Issue #1195
| Attila Molnar | 2016-09-12 | 1 | -0/+3 |
| * | | Introduce Stats::Context, pass it to the OnStats hook and switch all code to it | Attila Molnar | 2016-02-25 | 1 | -3/+3 |
| * | | Convert mods calling the old compat wrapper of ModuleManager::SetPriority() t... | Attila Molnar | 2015-02-15 | 1 | -1/+1 |
| * | | Change type of some associative containers to their flat versions, including ... | Attila Molnar | 2014-12-15 | 1 | -4/+2 |
| * | | Make various self contained methods static.•••- InspIRCd::IsValidMask
- InspIRCd::TimeString
| Peter Powell | 2013-12-15 | 1 | -1/+1 |
| * | | Automatically register ServiceProviders created by modules | attilamolnar | 2013-09-08 | 1 | -1/+0 |
| * | | Replace OnRehash() with ReadConfig() that is called on boot, on module load a...•••This eliminates the need for calling OnRehash() in init()
| attilamolnar | 2013-08-30 | 1 | -3/+1 |
| * | | Automatically attach modules to events | attilamolnar | 2013-08-04 | 1 | -2/+0 |
| * | | Remove $Core and $Mod* comments apart from $ModDep. | Peter Powell | 2013-07-04 | 1 | -2/+0 |
| * | | Merge insp20 | attilamolnar | 2013-06-06 | 1 | -2/+2 |
| |\| |
|
| | * | Remove unnecessary string copies and dead code | attilamolnar | 2013-06-05 | 1 | -2/+2 |
| * | | Convert XLine::Displayable to return a std::string. | Peter Powell | 2013-05-21 | 1 | -2/+2 |
| * | | Tidy up keywords on module methods.•••- 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.
| Peter Powell | 2013-05-15 | 1 | -6/+6 |
| * | | Add method for writing server notices.•••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.
| Peter Powell | 2013-05-14 | 1 | -3/+3 |
| * | | Replace IS_AWAY() and IS_OPER() macros with User::IsAway() and User::IsOper() | attilamolnar | 2013-04-10 | 1 | -1/+1 |
| * | | XLine: Provide a default implementation for DisplayExpiry() | attilamolnar | 2013-04-09 | 1 | -6/+0 |
| * | | Convert InspIRCd::Duration() to be static | attilamolnar | 2013-04-03 | 1 | -2/+2 |
| * | | Whitespace and empty destructor removal, minor coding style changes | attilamolnar | 2013-04-01 | 1 | -5/+0 |
| * | | Move member variables from User to LocalUser•••- idle_lastmsg
- dns_done
- quitting_sendq
- exempt
- lastping
| attilamolnar | 2013-04-01 | 1 | -2/+3 |
| |/ |
|
| * | Add IS_SERVER() and REG_ALL checks to (mostly oper only) commands taking a ta...•••If a SID was passed as the target user parameter or when it's an unregistered user reply with the "no such nick" (or the moral equivalent) message
| attilamolnar | 2012-12-15 | 1 | -2/+2 |
| * | m_cban, m_rline, m_shun Don't broadcast when user is a local user•••spanningtree sends an ADDLINE in this case
| attilamolnar | 2012-12-05 | 1 | -0/+3 |
| * | Register all commands, modes and extensions using AddService()•••AddService() throws an exception if an item cannot be registered, modules no longer need to worry about AddMode() etc. failing
| attilamolnar | 2012-12-02 | 1 | -1/+1 |
| * | Dynamically determine the size of the eventlist[] passed to Attach()•••m_sqlauth was attached to I_OnUserDisconnect but didn't provide a handler for it, remove
| attilamolnar | 2012-12-02 | 1 | -1/+1 |
| * | Attach to events and register services in init() | attilamolnar | 2012-12-02 | 1 | -0/+4 |
| * | Remove usage of the deprecated ConfigReader | attilamolnar | 2012-11-12 | 1 | -4/+4 |
| * | m_cban, m_rline, m_shun Broadcast these commands as some services implementat... | attilamolnar | 2012-10-04 | 1 | -1/+1 |
| * | Fix more undefined behavior caused by referencing the returned buffer by std:...•••See 83c7cc45daf6fb1f8c36f15297a4657e45a34e88
| attilamolnar | 2012-09-30 | 1 | -1/+2 |
| * | m_shun Convert enabled commands to uppercase so they match correctly even if ... | attilamolnar | 2012-09-13 | 1 | -0/+1 |
| * | m_shun Display shun target correctly in the error message when adding a new s... | attilamolnar | 2012-07-07 | 1 | -1/+1 |
| * | m_shun Fix out of bounds vector access leading to crashes when hiding part re... | attilamolnar | 2012-06-17 | 1 | -2/+2 |
| * | m_shun Fix a couple of things, namely•••- remove OnUserConnect hook as it was completly a no-op
- remove call to XLineManager::ApplyLines() as it iterates the local userlist and made no sense
- return CMD_SUCCESS when /SHUN succeeded, CMD_FAILURE otherwise
- remove unused exception handler
- don't route SHUN commands at all, spanningtree adds and removes the lines automatically
| attilamolnar | 2012-06-17 | 1 | -57/+25 |
| * | Module description updates | Robby- | 2012-05-30 | 1 | -2/+2 |
| * | Replace copyright headers with headers granting specific authors copyright | Robby- | 2012-04-19 | 1 | -8/+17 |
| * | Make m_shun work on aliases | Jens Voss | 2012-01-21 | 1 | -0/+6 |
| * | Fix stats letter for shuns | Jackmcbarn | 2011-08-27 | 1 | -2/+1 |
| * | Resolve /STATS S conflict between SVSHOLD and SHUN | Daniel De Graaf | 2011-06-23 | 1 | -1/+1 |
| * | PreCommand/PostCommand are local-only hooks•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12291 e03df62e-2008-0410-955e-edbf42e46eb7
| danieldg | 2010-01-18 | 1 | -1/+1 |
| * | ...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 |
| * | Change module API to use LocalUser* where correct•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11943 e03df62e-2008-0410-955e-edbf42e46eb7
| danieldg | 2009-10-21 | 1 | -1/+1 |