aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules
Commit message (Expand)AuthorAgeFilesLines
...
* | | | m_deaf Fix inverted checkGravatar Attila Molnar2016-08-301-1/+1
* | | | Change Membership:hasMode() to accept a PrefixModeGravatar Attila Molnar2016-08-305-6/+10
* | | | Replace loop over alphabet with loop over mode list in several placesGravatar Attila Molnar2016-08-302-24/+26
* | | | Pass the ModeHandler to User::HasModePermission()•••Mark the method as const Gravatar Attila Molnar2016-08-301-2/+2
* | | | Convert ModeHandler::GetNumParams() to NeedsParam() that returns a boolGravatar Attila Molnar2016-08-294-6/+6
* | | | m_spanningtree Drop unnecessary c_str() call when passing Link::Name to metho...Gravatar Attila Molnar2016-08-263-4/+4
* | | | m_spanningtree Handle unload in resolversGravatar Attila Molnar2016-08-251-1/+7
* | | | spanningtree: use bindip aftype as a hint for dns lookup typeGravatar Adam2016-08-251-1/+9
* | | | core_dns Make question a member of request, move common FindAnswerOfType to b...Gravatar Adam2016-08-251-2/+7
* | | | Check for errors after calling IOHookProvider::OnAccept()Gravatar Attila Molnar2016-08-242-4/+20
* | | | m_messageflood Improve kick message•••Fixes issue #1019 reported by @B00mX0r Also add back a missing word caused by an oversight in #531 Gravatar Attila Molnar2016-08-241-2/+2
* | | | Remove broken mssql module•••Issue #1006 Gravatar Attila Molnar2016-08-231-857/+0
* | | | m_censor Pass irc::string as C string to WriteNumeric()•••Avoids a call to the templated ConvToStr() which uses std::stringstream for conversion Gravatar Attila Molnar2016-08-221-1/+1
* | | | m_censor Switch to stdalgo::string::replace_all()Gravatar Attila Molnar2016-08-221-1/+1
* | | | m_spanningtree Use ASCII case insensitive map for matching server namesGravatar Attila Molnar2016-08-222-4/+4
* | | | m_spanningtree Change type of Link::Name to std::string•••Switch to stdalgo::string::equalsci() Gravatar Attila Molnar2016-08-225-14/+13
* | | | m_timedbans Remove TimedBan::channelGravatar Attila Molnar2016-08-221-7/+2
* | | | m_cban Remove now unnecessary field CBan::displaytextGravatar Attila Molnar2016-08-221-3/+1
* | | | Switch to irc::equals() from irc::string in modules that use it for comparing...Gravatar Attila Molnar2016-08-225-19/+15
* | | | Add stdalgo::string::equalsci and use it instead of irc::string for case-inse...Gravatar Attila Molnar2016-08-223-14/+10
* | | | m_services_account Detect nickname case changes by using FindNickOnly()•••Gets rid of assign() Gravatar Attila Molnar2016-08-221-1/+1
* | | | m_timedbans Remove one irc::string usageGravatar Attila Molnar2016-08-221-3/+4
* | | | Fix m_mysql warning about use of C++11 features on C++03.•••NO_CLIENT_LONG_LONG was removed in a recent version of MySQL. Gravatar Peter Powell2016-08-191-2/+6
* | | | Fix m_ldap not linking to liblber on UNIX systems.Gravatar Peter Powell2016-08-191-1/+1
* | | | m_spanningtree Put command handlers with class names that collide with core c...•••This fixes issues in static builds Gravatar Attila Molnar2016-08-193-18/+33
* | | | m_monitor Add inline keyword to IRCv3::Monitor::Manager::ExtItem::unserialize...Gravatar Attila Molnar2016-08-191-1/+2
* | | | m_ldap Remove unused LDAPService::last_timeout_checkGravatar Attila Molnar2016-08-191-2/+1
* | | | Merge insp20Gravatar Attila Molnar2016-08-177-17/+40
|\| | |
| * | | m_censor Fix possible incorrect cast of destGravatar Attila Molnar2016-08-131-1/+1
| * | | Fix more incorrect std::string::operator[] usageGravatar Attila Molnar2016-08-131-1/+1
| * | | Fix challenge auth when using m_hash_gnutls instead of m_sha256.Gravatar Peter Powell2016-08-051-2/+3
| * | | Fix bursting channel bansGravatar Adam2016-08-012-11/+16
| * | | m_ssl_openssl Verify DH params being non-NULL before setting it on the context•••Fixes issue reported by @m4rkw on IRC Gravatar Attila Molnar2016-07-221-4/+11
| * | | m_ssl_gnutls, m_ssl_openssl After a read schedule another read if data remain...Gravatar Attila Molnar2016-06-212-1/+11
| * | | Fix for GCC 6 rightfully optimizing out the NULL check of 'this' in ConfigTag...•••Checking is only necessary in ModuleSSLInfo::OnPostConnect() as oper types are not encountered in the other cases but check anyway to be sure Gravatar Attila Molnar2016-06-091-0/+6
| * | | Fix a minor warning in m_hideoper on some systems.Gravatar Peter Powell2016-05-031-1/+1
| * | | Remove embarrassing negative comments about some clients from the codeGravatar Attila Molnar2016-02-291-1/+1
| * | | Minor spelling errors in m_spanningtree.soGravatar Guillaume Delacour2016-02-282-2/+2
| * | | Fix dccallow to work with files with spaces in their namesGravatar Adam2016-02-181-12/+26
* | | | m_ssl_mbedtls Apply dummy CA workaround for client contextGravatar Attila Molnar2016-08-101-0/+1
* | | | m_ssl_* Add option to sslprofile controlling whether to request client certif...Gravatar Attila Molnar2016-08-083-9/+39
* | | | Add WebSocket moduleGravatar Attila Molnar2016-08-081-0/+405
* | | | Add SHA1 moduleGravatar Attila Molnar2016-08-081-0/+199
* | | | Keep multiple IOHookProvider references in class ListenSocket•••This adds the <bind:hook> config option which works together with <bind:ssl> Gravatar Attila Molnar2016-08-082-4/+9
* | | | 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-085-31/+22
* | | | Pass sendq to OnStreamSocketWriteGravatar Attila Molnar2016-08-083-6/+3
* | | | stripcolor now strips from part messages (#1175)Gravatar 0x277F2016-07-221-0/+17
* | | | Add mbedTLS SSL moduleGravatar Attila Molnar2016-06-151-0/+924
* | | | m_spanningtree Send snotice with the negotiated ciphersuite when connected us...Gravatar Attila Molnar2016-04-281-0/+10
* | | | Deduplicate code for on connect SSL ciphersuite NOTICE by moving it into m_ss...Gravatar Attila Molnar2016-04-283-45/+20