aboutsummaryrefslogtreecommitdiffstats
path: root/include
Commit message (Expand)AuthorAgeFilesLines
...
* | Add StreamSocket::SendQueue::moveall() for moving data between sendqsGravatar Attila Molnar2016-08-081-0/+7
* | Add support for multiple IOHooks per StreamSocketGravatar Attila Molnar2016-08-082-4/+85
* | Extract code that reads data into a recvq from StreamSocket::DoRead() into Re...Gravatar Attila Molnar2016-08-081-0/+6
* | Extract code that flushes the sendq from StreamSocket::DoWrite() into FlushSe...Gravatar Attila Molnar2016-08-081-0/+6
* | Add StreamSocket::GetModHook() for obtaining the IOHook belonging to a given ...•••Use it to simplify logic in all modules using or providing IOHooks Gravatar Attila Molnar2016-08-081-0/+6
* | Pass sendq to OnStreamSocketWriteGravatar Attila Molnar2016-08-081-1/+2
* | Predeclare IOHookProvider, remove iohook.h include from socket.hGravatar Attila Molnar2016-08-082-1/+1
* | Add a method which calculates the maximum mask length. (#1171)Gravatar Peter Powell2016-07-221-0/+3
* | Fix sending the wrong numeric when an empty new nick is received.Gravatar Peter Powell2016-06-221-0/+1
* | Export the GetCiphersuite() method from the SSL modulesGravatar Attila Molnar2016-04-281-0/+6
* | Add SSLIOHook::IsSSL() to determine whether a socket is using SSL or not•••Use it in a few places Gravatar Attila Molnar2016-04-281-3/+10
* | Refactor topic setting logic to go through Channel::SetTopic() in all cases•••- Pass topic set time and optionally the setter to SetTopic() - Don't do anything if the topic is changed by a local user to what it is currently Gravatar Attila Molnar2016-04-111-1/+4
* | Rename PURE_STATIC to INSPIRCD_STATIC.Gravatar Peter Powell2016-04-041-1/+1
* | Remove unused ProtocolInterface::SendTopic()Gravatar Attila Molnar2016-03-301-6/+0
* | Remove ProtocolInterface::PushToClient()Gravatar Attila Molnar2016-03-301-6/+0
* | Remove User::SendText() and overrides completelyGravatar Attila Molnar2016-03-301-12/+1
* | Make User::WriteRemoteNumeric() virtual, implement it in SpanningTree::Remote...Gravatar Attila Molnar2016-03-291-1/+1
* | Remove now unused overload of User::SendText()Gravatar Attila Molnar2016-03-221-6/+0
| |
| \
*-. \ Merge branches 'master+check' and 'master+namedmodes'Gravatar Attila Molnar2016-03-221-1/+84
|\ \ \
| | * | Add Numeric::ParamBuilder•••It builds numerics where the individual components are parameters of the numeric Gravatar Attila Molnar2016-03-221-1/+67
| |/ / |/| |
| * | m_check Refactor, move to the new RPL_CHECK numericGravatar Attila Molnar2016-03-191-0/+17
|/ /
* | Fix oversights in the WriteNumeric() parameter conversionGravatar Attila Molnar2016-03-191-1/+1
* | Add Channel::WriteNotice()Gravatar Attila Molnar2016-03-051-0/+5
* | Add User::WriteRemoteNotice()•••Sends a NOTICE from the local server to the user which can be local or remote Gravatar Attila Molnar2016-03-011-0/+11
* | Add RPL_WHOREPLY to the list of numerics•••Use it instead of the raw number Gravatar Attila Molnar2016-02-261-0/+1
* | Send WHO reply numerics with User::WriteNumeric(), pass Numeric::Numeric obje...Gravatar Attila Molnar2016-02-261-2/+2
* | Return ModResult from the OnSendWhoLine hookGravatar Attila Molnar2016-02-261-2/+3
* | Fix oversight in the last Stats::Context:AddRow() methodGravatar Attila Molnar2016-02-251-0/+1
* | Add RPL_ISON, RPL_USERIP and RPL_USERHOST to the list of numerics•••Use them instead of the raw numbers Gravatar Attila Molnar2016-02-251-1/+3
* | Introduce Stats::Context, pass it to the OnStats hook and switch all code to itGravatar Attila Molnar2016-02-255-9/+182
* | Add User::WriteRemoteNumeric() and switch code using SendText() to send numer...Gravatar Attila Molnar2016-02-251-0/+51
* | Make source server settable in Numeric::NumericGravatar Attila Molnar2016-02-251-0/+15
* | Convert WhoisContext::SendLine() calls to pass the parameters of the numeric ...Gravatar Attila Molnar2016-02-251-12/+42
* | Convert WriteNumeric() calls to pass the parameters of the numeric as method ...Gravatar Attila Molnar2016-02-254-22/+67
* | Add Numeric::NumericGravatar Attila Molnar2016-02-254-2/+91
* | Add no-op ConvToStr(const std::string&)Gravatar Attila Molnar2016-02-251-0/+5
* | Move implementation of ConvTo*() and related functions into convto.hGravatar Attila Molnar2016-02-252-82/+106
* | Include stdint.h from inspircd.hGravatar Attila Molnar2016-02-252-2/+1
* | Fix build errors on CentOS 6 and OpenBSD.Gravatar Peter Powell2016-02-201-1/+1
* | Add Numeric::BuilderGravatar Attila Molnar2015-12-302-0/+120
* | Return true from Channel::PartUser() if the user was on the channelGravatar Attila Molnar2015-12-281-1/+2
* | Fix some whitespace issuesGravatar Attila Molnar2015-12-284-43/+43
* | Strip all control codes except \001 in InspIRCd::StripColor()•••Fixes issue #1100 reported by @uecasm Gravatar Attila Molnar2015-12-081-1/+1
* | Add minimum channel rank and exception list parameters to the OnUserInvite hookGravatar Attila Molnar2015-12-061-1/+3
* | Remove <options:ircumsgprefix> entirelyGravatar Attila Molnar2015-12-061-5/+0
* | m_ircv3 Make WriteNeighborsWithCap() available for use in other modulesGravatar Attila Molnar2015-12-051-0/+45
* | m_cap Make Capability objects compatible with dynamic_references, add Cap::Re...Gravatar Attila Molnar2015-12-051-0/+28
* | m_cap Specialize extension itemGravatar Attila Molnar2015-12-051-1/+8
* | m_cap Provide the OnCapValueChange event and add Cap::Manager::NotifyValueCha...Gravatar Attila Molnar2015-12-051-0/+20
* | m_cap Provide the OnCapAddDel() eventGravatar Attila Molnar2015-12-051-0/+15