summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-08-08Keep multiple IOHookProvider references in class ListenSocketAttila Molnar
This adds the <bind:hook> config option which works together with <bind:ssl>
2016-08-08Include <array> or <tr1/array> globallyAttila Molnar
2016-08-08Change return type of ListenSocket::ResetIOHookProvider() to voidAttila Molnar
No code was using the return value
2016-08-08Add StreamSocket::SendQueue::moveall() for moving data between sendqsAttila Molnar
2016-08-08Add support for multiple IOHooks per StreamSocketAttila Molnar
2016-08-08Call StreamSocket::OnDataReady() from only one placeAttila Molnar
Call it whenever the recvq gets bigger than it was before the read
2016-08-08Extract code that reads data into a recvq from StreamSocket::DoRead() into ↵Attila Molnar
ReadToRecvQ()
2016-08-08Extract code that flushes the sendq from StreamSocket::DoWrite() into ↵Attila Molnar
FlushSendQ()
2016-08-08Add StreamSocket::GetModHook() for obtaining the IOHook belonging to a given ↵Attila Molnar
module Use it to simplify logic in all modules using or providing IOHooks
2016-08-08Pass sendq to OnStreamSocketWriteAttila Molnar
2016-08-08Predeclare IOHookProvider, remove iohook.h include from socket.hAttila Molnar
2016-08-08Merge pull request #1196 from SaberUK/insp20+sha256Attila Molnar
[2.0] Fix challenge auth when using m_hash_gnutls instead of m_sha256.
2016-08-05Fix challenge auth when using m_hash_gnutls instead of m_sha256.Peter Powell
2016-08-02Merge pull request #1193 from Adam-/insp20+banburstAttila Molnar
Fix bursting channel bans
2016-08-01Fix bursting channel bansAdam
2016-08-01Merge pull request #1191 from SaberUK/insp20+travisAttila Molnar
[2.0] Force link sqlite3 on OS X when doing Travis builds.
2016-07-28Force link sqlite3 on OS X when doing Travis builds.Peter Powell
The system version of this library does not include support for pkg-config.
2016-07-22Add a method which calculates the maximum mask length. (#1171)Peter Powell
2016-07-22Tell git to store .bat files as CRLF (#1030)Christian Höltje
2016-07-22stripcolor now strips from part messages (#1175)0x277F
2016-07-22m_ssl_openssl Verify DH params being non-NULL before setting it on the contextAttila Molnar
Fixes issue reported by @m4rkw on IRC
2016-06-27Merge pull request #1181 from SaberUK/insp20+nullAttila Molnar
[2.0] GCC should never assume that this can not be null.
2016-06-27Merge pull request #1187 from SaberUK/master+431Attila Molnar
Fix a minor oversight in ERR_NONICKNAMEGIVEN.
2016-06-27Fix a minor oversight in ERR_NONICKNAMEGIVEN.Peter Powell
2016-06-27GCC should never assume that this can not be null.Peter Powell
2016-06-27Merge pull request #1186 from SaberUK/master+build-system-cleanupAttila Molnar
Pass INSPIRCD_VERBOSE through the environment to unit-cc.
2016-06-27Merge pull request #1182 from SaberUK/master+431Attila Molnar
Fix sending the wrong numeric when an empty new nick is received.
2016-06-27Pass INSPIRCD_VERBOSE through the environment to unit-cc.Peter Powell
2016-06-27Fix cleaning files generated by configure.Peter Powell
This is an oversight from f79a55616b5ff05d4f2e6b031a17be5668d1d3ea.
2016-06-22Fix sending the wrong numeric when an empty new nick is received.Peter Powell
2016-06-21m_ssl_gnutls, m_ssl_openssl After a read schedule another read if data ↵Attila Molnar
remains in the buffer of the SSL library
2016-06-17Don't exit on rehash if the pid file cannot be writtenAttila Molnar
2016-06-15Add mbedTLS SSL moduleAttila Molnar
2016-06-13Stop processing the new connection in UserManager::AddUser() when an ↵Attila Molnar
internal SocketEngine error happens and the user is quitted
2016-06-09Fix for GCC 6 rightfully optimizing out the NULL check of 'this' in ↵Attila Molnar
ConfigTag::readString() Checking is only necessary in ModuleSSLInfo::OnPostConnect() as oper types are not encountered in the other cases but check anyway to be sure
2016-05-30Merge pull request #1174 from SaberUK/insp20+hideoper-warningAttila Molnar
Fix a minor warning in m_hideoper on some systems.
2016-05-30Merge pull request #1179 from SaberUK/insp20+fix-buildprefixesAttila Molnar
[2.0] Fix 005 not showing some modes with the same rank as others.
2016-05-30Fix 005 not showing some modes with the same rank as others.Peter Powell
2016-05-03Fix a minor warning in m_hideoper on some systems.Peter Powell
2016-05-03Update .gitignore to reflect LDAP module changesAttila Molnar
2016-04-30Merge branch 'master+sslconnmsg'Attila Molnar
2016-04-28m_spanningtree Send snotice with the negotiated ciphersuite when connected ↵Attila Molnar
using SSL
2016-04-28Deduplicate code for on connect SSL ciphersuite NOTICE by moving it into ↵Attila Molnar
m_sslinfo
2016-04-28Export the GetCiphersuite() method from the SSL modulesAttila Molnar
2016-04-28Add SSLIOHook::IsSSL() to determine whether a socket is using SSL or notAttila Molnar
Use it in a few places
2016-04-26Merge branch 'master+sasloffline'Attila Molnar
2016-04-25m_sasl Advertise the sasl capability only if the target server is onlineAttila Molnar
Issue #812
2016-04-25m_sasl Add ServerTracker class for tracking sasl_targetAttila Molnar
2016-04-25m_spanningtree Call the OnServerLink hook from TreeServer constructorAttila Molnar
2016-04-25m_spanningtree Call the OnServerSplit hook from TreeServer::SQuitInternal() ↵Attila Molnar
so it runs for all lost servers