summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-03-29Ensure server names passed to some commands are really server namesAttila Molnar
2016-03-29core_info Deduplicate code by inheriting some commands from ServerTargetCommandAttila Molnar
2016-03-29core_info Add class ServerTargetCommandAttila Molnar
2016-03-24Merge pull request #1149 from SaberUK/master+saslAttila Molnar
Add support for SASL reauthentication.
2016-03-24Add support for SASL reauthentication.Peter Powell
2016-03-24Merge pull request #1159 from SaberUK/master+configureAttila Molnar
Improvements to ./configure file generation.
2016-03-23Don't prepend ":<nick>" to raw input logAttila Molnar
2016-03-22Simplify the configure cache file format.Peter Powell
This prevents the need to implement escaping of values which was a bug in the previous format.
2016-03-22Move the configure cache to the .configure directory too.Peter Powell
2016-03-22Write generated templates to the .configure directory.Peter Powell
2016-03-22Fix a typo in parse_templates.Peter Powell
2016-03-22Extract directory creation code to its own subroutine.Peter Powell
2016-03-22Remove now unused overload of User::SendText()Attila Molnar
2016-03-22Merge branches 'master+check' and 'master+namedmodes'Attila Molnar
2016-03-22m_namedmodes Switch to Numeric::ParamBuilderAttila Molnar
2016-03-22m_namedmodes Inherit command handler from SplitCommandAttila Molnar
Pass a LocalUser pointer to DisplayList()
2016-03-22Add Numeric::ParamBuilderAttila Molnar
It builds numerics where the individual components are parameters of the numeric
2016-03-19m_check Move DumpExt() into CheckContextAttila Molnar
2016-03-19m_check Move DumpListMode() into CheckContextAttila Molnar
2016-03-19m_check Refactor, move to the new RPL_CHECK numericAttila Molnar
2016-03-19Fix oversights in the WriteNumeric() parameter conversionAttila Molnar
2016-03-05Merge branch 'master+chanwritenotice'Attila Molnar
2016-03-05Send NOTICEs to local channel members with Channel::WriteNotice()Attila Molnar
2016-03-05Add Channel::WriteNotice()Attila Molnar
2016-03-04Merge pull request #1150 from johanna-a/conname_extbanAttila Molnar
Adds classban module providing extban 'n' for connect class ban.
2016-03-04Adds classban module providing extban 'n' for connect class ban.Johanna A
2016-03-02Merge branch 'master+writeremotenotice'Attila Molnar
2016-03-01m_spanningtree Remove ModuleSpanningTree::RemoteMessage()Attila Molnar
This method is no longer used, replacement is User::WriteRemoteNotice()
2016-03-01Send NOTICEs that can go to both local and remote users with ↵Attila Molnar
User::WriteRemoteNotice()
2016-03-01Add User::WriteRemoteNotice()Attila Molnar
Sends a NOTICE from the local server to the user which can be local or remote
2016-02-26Merge branch 'master+writenumeric-who'Attila Molnar
2016-02-26Add RPL_WHOREPLY to the list of numericsAttila Molnar
Use it instead of the raw number
2016-02-26Send WHO reply numerics with User::WriteNumeric(), pass Numeric::Numeric ↵Attila Molnar
objects to the OnSendWhoLine hook
2016-02-26m_hideoper Reorder checks in OnSendWhoLine()Attila Molnar
Check if the entire line should be hidden first
2016-02-26Return ModResult from the OnSendWhoLine hookAttila Molnar
2016-02-25Remove unnecessary std::string::c_str() callsAttila Molnar
2016-02-25Fix oversight in the last Stats::Context:AddRow() methodAttila Molnar
2016-02-25Add RPL_ISON, RPL_USERIP and RPL_USERHOST to the list of numericsAttila Molnar
Use them instead of the raw numbers
2016-02-25m_clones Send numeric with User::WriteNumeric()Attila Molnar
2016-02-25m_userip Send numeric with User::WriteNumeric()Attila Molnar
2016-02-25core_userhost Send numeric with User::WriteNumeric()Attila Molnar
2016-02-25cmd_commands Send the RPL_COMMANDS numeric with User::WriteNumeric()Attila Molnar
2016-02-25Merge branch 'master+writenumeric'Attila Molnar
2016-02-25Introduce Stats::Context, pass it to the OnStats hook and switch all code to itAttila Molnar
2016-02-25Add User::WriteRemoteNumeric() and switch code using SendText() to send ↵Attila Molnar
numerics to it
2016-02-25Make source server settable in Numeric::NumericAttila Molnar
2016-02-25Convert WhoisContext::SendLine() calls to pass the parameters of the numeric ↵Attila Molnar
as method parameters
2016-02-25Convert WriteNumeric() calls to pass the parameters of the numeric as method ↵Attila Molnar
parameters
2016-02-25Add Numeric::NumericAttila Molnar
2016-02-25Add no-op ConvToStr(const std::string&)Attila Molnar