aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | Fix m_geoip warning about the use of C++11 features.Gravatar Peter Powell2016-09-151-0/+7
| | | | |
* | | | | Merge pull request #1219 from SaberUK/master+directiveGravatar Attila Molnar2016-09-1612-38/+64
|\ \ \ \ \ | | | | | | | | | | | | Rewrite the build system directive parser.
| * | | | | Rewrite the build system directive parser.Gravatar Peter Powell2016-09-1612-38/+64
| |/ / / /
* | | | | Merge pull request #1176 from SaberUK/master+formatGravatar Attila Molnar2016-09-162-8/+4
|\ \ \ \ \ | |/ / / / |/| | | | Replace snprintf usage with InspIRCd::Format.
| * | | | Replace snprintf usage with InspIRCd::Format.Gravatar Peter Powell2016-09-092-8/+4
| | | | |
* | | | | m_shun Add support for shunning CIDR masksGravatar Attila Molnar2016-09-121-0/+3
| | | | | | | | | | | | | | | | | | | | Issue #1195
* | | | | Change type of log messages to MODNAME in several modulesGravatar Attila Molnar2016-09-122-4/+4
|/ / / /
* | | | Bump version to 3.0 in comments and messagesGravatar Attila Molnar2016-09-024-5/+5
| | | |
* | | | Merge insp20Gravatar Attila Molnar2016-09-022-2/+4
|\| | |
| * | | m_jumpserver Prevent OnUserRegister from running in other modules for users ↵Gravatar Attila Molnar2016-09-021-1/+1
| | | | | | | | | | | | | | | | we quit
| * | | m_sqlite3 Fix possible memory leak when opening a database failsGravatar Attila Molnar2016-08-171-1/+3
| | | |
* | | | m_dnsbl Use FindAnswerOfTypeGravatar Adam2016-09-021-2/+4
| | | |
* | | | m_spanningtree Allow multiple valid ips for link blocks as a result of ↵Gravatar Adam2016-09-021-3/+6
| | | | | | | | | | | | | | | | SecurityIPResolver
* | | | Fix Windows build and most MSVC warningsGravatar Attila Molnar2016-09-022-2/+3
| | | |
* | | | m_spanningtree Add workaround to make SVS* commands work when using ENCAPGravatar Attila Molnar2016-09-021-0/+11
| | | |
* | | | m_spanningtree Refuse topic changes that would result in desyncGravatar Attila Molnar2016-09-022-0/+14
| | | | | | | | | | | | | | | | This is a workaround until the protocol is updated
* | | | Fix whitespace issuesGravatar Attila Molnar2016-09-021-1/+1
| | | |
* | | | Return std::string from Membership::GetAllPrefixChars()Gravatar Attila Molnar2016-08-301-1/+1
| | | |
* | | | m_deaf Remove pointless member prefix checkGravatar Attila Molnar2016-08-301-3/+0
| | | | | | | | | | | | | | | | Inserting members who lack the required status into the except list makes no difference, they won't get the message either way
* | | | 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()Gravatar Attila Molnar2016-08-301-2/+2
| | | | | | | | | | | | | | | | Mark the method as const
* | | | 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 ↵Gravatar Attila Molnar2016-08-263-4/+4
| | | | | | | | | | | | | | | | methods expecting std::string
* | | | 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 ↵Gravatar Adam2016-08-251-2/+7
| | | | | | | | | | | | | | | | be a member of query
* | | | Check for errors after calling IOHookProvider::OnAccept()Gravatar Attila Molnar2016-08-242-4/+20
| | | |
* | | | m_messageflood Improve kick messageGravatar Attila Molnar2016-08-241-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | Fixes issue #1019 reported by @B00mX0r Also add back a missing word caused by an oversight in #531
* | | | Remove broken mssql moduleGravatar Attila Molnar2016-08-231-857/+0
| | | | | | | | | | | | | | | | Issue #1006
* | | | m_censor Pass irc::string as C string to WriteNumeric()Gravatar Attila Molnar2016-08-221-1/+1
| | | | | | | | | | | | | | | | Avoids a call to the templated ConvToStr() which uses std::stringstream for conversion
* | | | 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::stringGravatar Attila Molnar2016-08-225-14/+13
| | | | | | | | | | | | | | | | Switch to stdalgo::string::equalsci()
* | | | 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 ↵Gravatar Attila Molnar2016-08-225-19/+15
| | | | | | | | | | | | | | | | comparing names of IRC objects
* | | | Add stdalgo::string::equalsci and use it instead of irc::string for ↵Gravatar Attila Molnar2016-08-223-14/+10
| | | | | | | | | | | | | | | | case-insensitive comparison
* | | | m_services_account Detect nickname case changes by using FindNickOnly()Gravatar Attila Molnar2016-08-221-1/+1
| | | | | | | | | | | | | | | | Gets rid of assign()
* | | | 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.Gravatar Peter Powell2016-08-191-2/+6
| | | | | | | | | | | | | | | | NO_CLIENT_LONG_LONG was removed in a recent version of MySQL.
* | | | 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 ↵Gravatar Attila Molnar2016-08-193-18/+33
| | | | | | | | | | | | | | | | | | | | | | | | commands into the SpanningTree namespace This fixes issues in static builds
* | | | m_monitor Add inline keyword to ↵Gravatar Attila Molnar2016-08-191-1/+2
| | | | | | | | | | | | | | | | IRCv3::Monitor::Manager::ExtItem::unserialize to fix static builds
* | | | 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
| | | |